From a42edbd82943a30b6fddddbf8bacf812ffe6975d Mon Sep 17 00:00:00 2001 From: llibarona Date: Wed, 3 May 2023 12:13:10 -0300 Subject: [PATCH 1/7] expose workspace folders from languageServerImpl --- .../als/server/lsp4j/LanguageServerImpl.scala | 13 ++++++++++--- .../mulesoft/als/server/AlsWorkspaceService.scala | 1 + .../mulesoft/als/server/LanguageServerImpl.scala | 2 ++ .../als/server/protocol/LanguageServer.scala | 2 ++ .../als/server/workspace/WorkspaceManager.scala | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/LanguageServerImpl.scala b/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/LanguageServerImpl.scala index 7f34c2f2a9..5fe59e50b3 100644 --- a/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/LanguageServerImpl.scala +++ b/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/LanguageServerImpl.scala @@ -1,10 +1,8 @@ package org.mulesoft.als.server.lsp4j -import java.util.concurrent.CompletableFuture -import java.util.concurrent.CompletableFuture.completedFuture - import org.eclipse.lsp4j import org.eclipse.lsp4j.jsonrpc.services.JsonDelegate +import org.mulesoft.als.server.ALSConverters.ClientList import org.mulesoft.als.server.custom.CustomTextDocumentService import org.mulesoft.als.server.lsp4j.AlsJConversions._ import org.mulesoft.als.server.lsp4j.LspConversions._ @@ -17,9 +15,18 @@ import org.mulesoft.als.server.lsp4j.extension.{ import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.lsp.Lsp4JConversions._ +import java.util +import java.util.concurrent.CompletableFuture +import java.util.concurrent.CompletableFuture.completedFuture import scala.concurrent.ExecutionContext.Implicits.global class LanguageServerImpl(private val inner: LanguageServer) extends ExtendedLanguageServer { + def workspaceFolders(): ClientList[String] = { + val workspaces = new util.ArrayList[String]() + inner.workspaceFolders().foreach(workspaces.add) + workspaces + } + private val textDocumentService = new TextDocumentServiceImpl(inner) private val workspaceService = new WorkspaceServiceImpl(inner) diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/AlsWorkspaceService.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/AlsWorkspaceService.scala index 841d83602d..53c05f0578 100644 --- a/als-server/shared/src/main/scala/org/mulesoft/als/server/AlsWorkspaceService.scala +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/AlsWorkspaceService.scala @@ -7,4 +7,5 @@ import scala.concurrent.Future trait AlsWorkspaceService extends WorkspaceService { def initialize(workspaceFolders: List[WorkspaceFolder]): Future[Unit] + def getWorkspaceFolders: Seq[String] } diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/LanguageServerImpl.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/LanguageServerImpl.scala index a6b7d950f5..61c1104604 100644 --- a/als-server/shared/src/main/scala/org/mulesoft/als/server/LanguageServerImpl.scala +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/LanguageServerImpl.scala @@ -95,4 +95,6 @@ class LanguageServerImpl( override def updateConfiguration(params: UpdateConfigurationParams): Unit = { configuration.update(params) } + + override def workspaceFolders(): Seq[String] = workspaceService.getWorkspaceFolders } diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/protocol/LanguageServer.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/protocol/LanguageServer.scala index 4d33ee0d59..a53db32815 100644 --- a/als-server/shared/src/main/scala/org/mulesoft/als/server/protocol/LanguageServer.scala +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/protocol/LanguageServer.scala @@ -9,6 +9,8 @@ import org.mulesoft.lsp.workspace.WorkspaceService import scala.concurrent.Future trait LanguageServer { + def workspaceFolders(): Seq[String] + def initialize(params: AlsInitializeParams): Future[AlsInitializeResult] def initialized(): Unit diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/workspace/WorkspaceManager.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/workspace/WorkspaceManager.scala index 0e99f9235e..4019666279 100644 --- a/als-server/shared/src/main/scala/org/mulesoft/als/server/workspace/WorkspaceManager.scala +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/workspace/WorkspaceManager.scala @@ -118,7 +118,7 @@ class WorkspaceManager protected ( def changeWorkspaceFolders(params: DidChangeWorkspaceFoldersParams): Future[Unit] = workspaces.changeWorkspaces(params.event.added.flatMap(_.uri), params.event.deleted.flatMap(_.uri)) - def getWorkspaceFolders: Seq[String] = workspaces.allWorkspaces().map(_.folderUri) + override def getWorkspaceFolders: Seq[String] = workspaces.allWorkspaces().map(_.folderUri) override def getDocumentLinks(uri: String, uuid: String): Future[Seq[DocumentLink]] = getWorkspace(uri.toAmfUri).flatMap(_.getRelationships(uri.toAmfUri)).map(_.getDocumentLinks(uri.toAmfUri)) From ebad01cc8c19405bf912e3108b337628eee10313 Mon Sep 17 00:00:00 2001 From: llibarona Date: Fri, 19 May 2023 12:56:54 -0300 Subject: [PATCH 2/7] W-13024152: create request for getting virtual FileSystem --- .../feature/telemetry/TelemetryProvider.scala | 2 + .../typescript/als-node-client.d.ts | 12 ++- .../node-package/typescript/als-server.d.ts | 12 ++- .../server/AlsLanguageServerProtocol.scala | 10 ++ .../als/server/ProtocolConnectionBinder.scala | 18 ++++ .../convert/LspConvertersSharedToClient.scala | 6 ++ .../ClientFileContentsResponse.scala | 24 +++++ .../custom/CustomTextDocumentService.java | 5 + .../als/server/lsp4j/AlsJConversions.scala | 4 + .../lsp4j/TextDocumentServiceImpl.scala | 5 + .../lsp4j/extension/FileContentsResponse.java | 13 +++ .../FileContentsRequestType.scala | 6 ++ .../filecontents/FileContentsResponse.scala | 3 + .../fileusage/FindFileUsageManager.scala | 4 +- .../filecontents/FileContentsHandler.scala | 41 +++++++++ .../workspace/WorkspaceParserRepository.scala | 7 ++ .../server/workspace/WorkspaceManager.scala | 2 + .../fileusage/FileContentsTest.scala | 17 ++++ .../workspace/fileusage/FileUsageTest.scala | 90 +----------------- .../fileusage/ServerFileUsageTest.scala | 23 ++++- .../workspace/fileusage/TestEntries.scala | 92 +++++++++++++++++++ 21 files changed, 302 insertions(+), 94 deletions(-) create mode 100644 als-server/js/src/main/scala/org/mulesoft/als/server/protocol/filecontents/ClientFileContentsResponse.scala create mode 100644 als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/extension/FileContentsResponse.java create mode 100644 als-server/shared/src/main/scala/org/mulesoft/als/server/feature/fileusage/filecontents/FileContentsRequestType.scala create mode 100644 als-server/shared/src/main/scala/org/mulesoft/als/server/feature/fileusage/filecontents/FileContentsResponse.scala create mode 100644 als-server/shared/src/main/scala/org/mulesoft/als/server/modules/actions/fileusage/filecontents/FileContentsHandler.scala create mode 100644 als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/FileContentsTest.scala create mode 100644 als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/TestEntries.scala diff --git a/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/telemetry/TelemetryProvider.scala b/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/telemetry/TelemetryProvider.scala index 533998296e..7116a62d33 100644 --- a/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/telemetry/TelemetryProvider.scala +++ b/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/telemetry/TelemetryProvider.scala @@ -51,6 +51,8 @@ object MessageTypes extends Enumeration { val END_QUICK_FIX = "END_QUICK_FIX" val BEGIN_FILE_USAGE = "BEGIN_FILE_USAGE" val END_FILE_USAGE = "END_FILE_USAGE" + val BEGIN_FILE_CONTENTS = "BEGIN_FILE_CONTENTS" + val END_FILE_CONTENTS = "END_FILE_CONTENTS" val BEGIN_HOVER = "BEGIN_HOVER" val END_HOVER = "END_HOVER" val BEGIN_FOLDING = "BEGIN_FOLDING" diff --git a/als-node-client/node-package/typescript/als-node-client.d.ts b/als-node-client/node-package/typescript/als-node-client.d.ts index ec04b255df..73ae32547a 100644 --- a/als-node-client/node-package/typescript/als-node-client.d.ts +++ b/als-node-client/node-package/typescript/als-node-client.d.ts @@ -6462,6 +6462,10 @@ declare module '@aml-org/als-node-client' { uris: string[] } + export interface FileContentsResponse { + fs: Map + } + export interface SerializationResult { uri: string model: any @@ -6592,7 +6596,7 @@ declare module '@aml-org/als-node-client' { configuration?: AlsConfiguration hotReload?: boolean } - + export type DidFocusParams = { uri: String version: number @@ -6621,7 +6625,7 @@ declare module '@aml-org/als-node-client' { export type AlsCapabilitiesNotification = { type: NotificationType } - + export type DidFocusNotification = { type: NotificationType } @@ -6673,6 +6677,10 @@ declare module '@aml-org/als-node-client' { type: RequestType } + export type FileContentsRequestType = { + type: RequestType + } + export const ClientNotifierFactory: { createWithClientAware(logger: ClientLogger): ClientNotifier & LanguageClientAware & AlsClientNotifier & AlsLanguageClientAware } diff --git a/als-server/js/node-package/typescript/als-server.d.ts b/als-server/js/node-package/typescript/als-server.d.ts index a64558b412..a13f90151c 100644 --- a/als-server/js/node-package/typescript/als-server.d.ts +++ b/als-server/js/node-package/typescript/als-server.d.ts @@ -6462,6 +6462,10 @@ declare module '@aml-org/als-server' { uris: string[] } + export interface FileContentsResponse { + fs: Map + } + export interface SerializationResult { uri: string model: any @@ -6592,7 +6596,7 @@ declare module '@aml-org/als-server' { configuration?: AlsConfiguration hotReload?: boolean } - + export type DidFocusParams = { uri: String version: number @@ -6621,7 +6625,7 @@ declare module '@aml-org/als-server' { export type AlsCapabilitiesNotification = { type: NotificationType } - + export type DidFocusNotification = { type: NotificationType } @@ -6673,6 +6677,10 @@ declare module '@aml-org/als-server' { type: RequestType } + export type FileContentsRequestType = { + type: RequestType + } + export const ClientNotifierFactory: { createWithClientAware(logger: ClientLogger): ClientNotifier & LanguageClientAware & AlsClientNotifier & AlsLanguageClientAware } diff --git a/als-server/js/src/main/scala/org/mulesoft/als/server/AlsLanguageServerProtocol.scala b/als-server/js/src/main/scala/org/mulesoft/als/server/AlsLanguageServerProtocol.scala index 0767bf3654..d2a617c494 100644 --- a/als-server/js/src/main/scala/org/mulesoft/als/server/AlsLanguageServerProtocol.scala +++ b/als-server/js/src/main/scala/org/mulesoft/als/server/AlsLanguageServerProtocol.scala @@ -12,6 +12,7 @@ import org.mulesoft.als.server.protocol.diagnostic.{ ClientCleanDiagnosticTreeParams, ClientFilesInProjectParams } +import org.mulesoft.als.server.protocol.filecontents.ClientFileContentsResponse import org.mulesoft.als.server.protocol.serialization.{ ClientConversionParams, ClientSerializationParams, @@ -73,6 +74,15 @@ object FileUsageRequest { ) } +@JSExportTopLevel("FileContentsRequestType") +object FileContentsRequest { + val `type`: RequestType[ClientTextDocumentIdentifier, ClientFileContentsResponse, js.Any] = + new RequestType[ClientTextDocumentIdentifier, ClientFileContentsResponse, js.Any]( + "fileContents", + ParameterStructures.auto + ) +} + @JSExportTopLevel("ConversionRequestType") object ClientConversionRequestType { val `type`: RequestType[ClientConversionParams, js.Array[ClientSerializedDocument], js.Any] = diff --git a/als-server/js/src/main/scala/org/mulesoft/als/server/ProtocolConnectionBinder.scala b/als-server/js/src/main/scala/org/mulesoft/als/server/ProtocolConnectionBinder.scala index e9c1f0e7a7..f531f2fa8e 100644 --- a/als-server/js/src/main/scala/org/mulesoft/als/server/ProtocolConnectionBinder.scala +++ b/als-server/js/src/main/scala/org/mulesoft/als/server/ProtocolConnectionBinder.scala @@ -3,6 +3,7 @@ package org.mulesoft.als.server import org.mulesoft.als.server.feature.configuration.workspace.GetWorkspaceConfigurationRequestType import org.mulesoft.als.server.feature.diagnostic.CleanDiagnosticTreeRequestType import org.mulesoft.als.server.feature.fileusage.FileUsageRequestType +import org.mulesoft.als.server.feature.fileusage.filecontents.FileContentsRequestType import org.mulesoft.als.server.feature.renamefile.RenameFileActionRequestType import org.mulesoft.als.server.feature.serialization.{ConversionRequestType, SerializationResult} import org.mulesoft.als.server.feature.workspace.FilesInProjectParams @@ -17,6 +18,7 @@ import org.mulesoft.als.server.protocol.diagnostic.{ ClientCleanDiagnosticTreeParams, ClientFilesInProjectParams } +import org.mulesoft.als.server.protocol.filecontents.ClientFileContentsResponse import org.mulesoft.als.server.protocol.serialization.{ ClientConversionParams, ClientSerializationParams, @@ -331,6 +333,22 @@ trait AbstractProtocolConnectionBinder[ClientAware <: LspLanguageClientAware wit ) // End FindFileUsage + // FindFileContents + val onFindFileContentsHandlerJs + : js.Function2[ClientTextDocumentIdentifier, CancellationToken, Thenable[ClientFileContentsResponse]] = + (param: ClientTextDocumentIdentifier, _: CancellationToken) => + resolveHandler(FileContentsRequestType)(param.toShared) + .map(_.toClient) + .toJSPromise + .asInstanceOf[Thenable[ClientFileContentsResponse]] + + protocolConnection.onRequest( + FileContentsRequest.`type`, + onFindFileContentsHandlerJs + .asInstanceOf[ClientRequestHandler[ClientTextDocumentIdentifier, ClientFileContentsResponse, js.Any]] + ) + // End FindFileContents + // Definition val onDefinitionHandlerJs: js.Function2[ClientDefinitionParams, CancellationToken, Thenable[ ClientLocation | js.Array[ClientLocation] | js.Array[ClientLocationLink] diff --git a/als-server/js/src/main/scala/org/mulesoft/als/server/protocol/convert/LspConvertersSharedToClient.scala b/als-server/js/src/main/scala/org/mulesoft/als/server/protocol/convert/LspConvertersSharedToClient.scala index 35008aaf0d..7c72a25158 100644 --- a/als-server/js/src/main/scala/org/mulesoft/als/server/protocol/convert/LspConvertersSharedToClient.scala +++ b/als-server/js/src/main/scala/org/mulesoft/als/server/protocol/convert/LspConvertersSharedToClient.scala @@ -13,6 +13,7 @@ import org.mulesoft.als.server.feature.diagnostic.{ CustomValidationClientCapabilities, CustomValidationOptions } +import org.mulesoft.als.server.feature.fileusage.filecontents.FileContentsResponse import org.mulesoft.als.server.feature.fileusage.{FileUsageClientCapabilities, FileUsageOptions} import org.mulesoft.als.server.feature.renamefile.{ RenameFileActionClientCapabilities, @@ -34,6 +35,7 @@ import org.mulesoft.als.server.protocol.diagnostic.{ ClientCustomValidationOptions, ClientFilesInProjectParams } +import org.mulesoft.als.server.protocol.filecontents.ClientFileContentsResponse import org.mulesoft.als.server.protocol.serialization.{ ClientSerializationParams, ClientSerializationResult, @@ -201,4 +203,8 @@ object LspConvertersSharedToClient { implicit class ClientCustomValidationOptionsConverter(i: CustomValidationOptions) { def toClient: ClientCustomValidationOptions = ClientCustomValidationOptions(i) } + + implicit class ClientFileContentsResponseConverter(i: FileContentsResponse) { + def toClient: ClientFileContentsResponse = ClientFileContentsResponse(i) + } } diff --git a/als-server/js/src/main/scala/org/mulesoft/als/server/protocol/filecontents/ClientFileContentsResponse.scala b/als-server/js/src/main/scala/org/mulesoft/als/server/protocol/filecontents/ClientFileContentsResponse.scala new file mode 100644 index 0000000000..5be7d2ae82 --- /dev/null +++ b/als-server/js/src/main/scala/org/mulesoft/als/server/protocol/filecontents/ClientFileContentsResponse.scala @@ -0,0 +1,24 @@ +package org.mulesoft.als.server.protocol.filecontents + +import org.mulesoft.als.server.feature.fileusage.filecontents.FileContentsResponse + +import scala.scalajs.js +import scala.scalajs.js.JSConverters.JSRichGenMap + +// $COVERAGE-OFF$ Incompatibility between scoverage and scalaJS + +@js.native +trait ClientFileContentsResponse extends js.Object { + def fs: js.Dictionary[String] = js.native +} + +object ClientFileContentsResponse { + def apply[S](internal: FileContentsResponse): ClientFileContentsResponse = + js.Dynamic + .literal( + fs = internal.fs.toJSDictionary + ) + .asInstanceOf[ClientFileContentsResponse] +} + +// $COVERAGE-ON$ diff --git a/als-server/jvm/src/main/scala/org/mulesoft/als/server/custom/CustomTextDocumentService.java b/als-server/jvm/src/main/scala/org/mulesoft/als/server/custom/CustomTextDocumentService.java index 108be03082..e71e3ce0b8 100644 --- a/als-server/jvm/src/main/scala/org/mulesoft/als/server/custom/CustomTextDocumentService.java +++ b/als-server/jvm/src/main/scala/org/mulesoft/als/server/custom/CustomTextDocumentService.java @@ -29,6 +29,11 @@ default CompletableFuture> fileUsage(TextDocumentIdentifier param throw new UnsupportedOperationException(); } + @JsonRequest + default CompletableFuture fileContents(TextDocumentIdentifier params) { + throw new UnsupportedOperationException(); + } + @JsonRequest default CompletableFuture serialization(SerializationParams params) { throw new UnsupportedOperationException(); diff --git a/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/AlsJConversions.scala b/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/AlsJConversions.scala index 502bfb3630..578b45c2ea 100644 --- a/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/AlsJConversions.scala +++ b/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/AlsJConversions.scala @@ -11,6 +11,7 @@ import org.mulesoft.als.server.protocol.configuration.{AlsInitializeResult, AlsS import org.mulesoft.lsp.Lsp4JConversions._ import org.mulesoft.lsp.textsync import org.mulesoft.lsp.textsync.DidChangeConfigurationNotificationParams +import org.mulesoft.als.server.feature.fileusage.filecontents.FileContentsResponse import java.io.StringWriter import scala.collection.JavaConverters._ @@ -134,6 +135,9 @@ object AlsJConversions { implicit def serializedDocument(serializedDocument: SerializedDocument): extension.SerializedDocument = new extension.SerializedDocument(serializedDocument.uri, serializedDocument.model) + implicit def fileContentsResponse(fileContentsResponse: FileContentsResponse): extension.FileContentsResponse = + new extension.FileContentsResponse(fileContentsResponse.fs.asJava) + implicit def serializationSerializedDocument( serializationMessage: SerializationResult[StringWriter] ): extension.SerializedDocument = diff --git a/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/TextDocumentServiceImpl.scala b/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/TextDocumentServiceImpl.scala index 51b3439dce..14218678be 100644 --- a/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/TextDocumentServiceImpl.scala +++ b/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/TextDocumentServiceImpl.scala @@ -41,6 +41,7 @@ import org.mulesoft.als.server.custom.CustomTextDocumentService import org.mulesoft.als.server.feature.configuration.workspace.GetWorkspaceConfigurationRequestType import org.mulesoft.als.server.feature.diagnostic.CleanDiagnosticTreeRequestType import org.mulesoft.als.server.feature.fileusage.FileUsageRequestType +import org.mulesoft.als.server.feature.fileusage.filecontents.FileContentsRequestType import org.mulesoft.als.server.feature.renamefile.RenameFileActionRequestType import org.mulesoft.als.server.feature.serialization.ConversionRequestType import org.mulesoft.als.server.lsp4j.AlsJConversions._ @@ -158,6 +159,10 @@ class TextDocumentServiceImpl(private val inner: LanguageServer) extends CustomT javaFuture(resolveHandler(FileUsageRequestType)(params), lsp4JLocations) } + override def fileContents(params: lsp4j.TextDocumentIdentifier): CompletableFuture[FileContentsResponse] = { + javaFuture(resolveHandler(FileContentsRequestType)(params), fileContentsResponse) + } + override def serialization(params: SerializationParams): CompletableFuture[SerializedDocument] = { javaFuture(resolveHandler(JvmSerializationRequestType)(params), serializationSerializedDocument) } diff --git a/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/extension/FileContentsResponse.java b/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/extension/FileContentsResponse.java new file mode 100644 index 0000000000..abfe3dde4b --- /dev/null +++ b/als-server/jvm/src/main/scala/org/mulesoft/als/server/lsp4j/extension/FileContentsResponse.java @@ -0,0 +1,13 @@ +package org.mulesoft.als.server.lsp4j.extension; + +import java.util.Map; + +public class FileContentsResponse { + private Map fs; + + public FileContentsResponse(Map fs) { + this.fs = fs; + } + + public Map getFs() { return fs; } +} diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/feature/fileusage/filecontents/FileContentsRequestType.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/feature/fileusage/filecontents/FileContentsRequestType.scala new file mode 100644 index 0000000000..656ff85bf5 --- /dev/null +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/feature/fileusage/filecontents/FileContentsRequestType.scala @@ -0,0 +1,6 @@ +package org.mulesoft.als.server.feature.fileusage.filecontents + +import org.mulesoft.lsp.feature.RequestType +import org.mulesoft.lsp.feature.common.TextDocumentIdentifier + +object FileContentsRequestType extends RequestType[TextDocumentIdentifier, FileContentsResponse] diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/feature/fileusage/filecontents/FileContentsResponse.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/feature/fileusage/filecontents/FileContentsResponse.scala new file mode 100644 index 0000000000..4cbf208679 --- /dev/null +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/feature/fileusage/filecontents/FileContentsResponse.scala @@ -0,0 +1,3 @@ +package org.mulesoft.als.server.feature.fileusage.filecontents + +case class FileContentsResponse(fs: Map[String, String]) diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/actions/fileusage/FindFileUsageManager.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/actions/fileusage/FindFileUsageManager.scala index 064f79a27c..3708ae98bf 100644 --- a/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/actions/fileusage/FindFileUsageManager.scala +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/actions/fileusage/FindFileUsageManager.scala @@ -3,6 +3,7 @@ package org.mulesoft.als.server.modules.actions.fileusage import org.mulesoft.als.server.RequestModule import org.mulesoft.als.server.feature.fileusage.{FileUsageClientCapabilities, FileUsageConfigType, FileUsageOptions} import org.mulesoft.als.logger.Logger +import org.mulesoft.als.server.modules.actions.fileusage.filecontents.FileContentsHandler import org.mulesoft.als.server.workspace.WorkspaceManager import org.mulesoft.lsp.ConfigType import org.mulesoft.lsp.feature.TelemeteredRequestHandler @@ -23,7 +24,8 @@ class FindFileUsageManager( FileUsageConfigType override val getRequestHandlers: Seq[TelemeteredRequestHandler[_, _]] = Seq( - new FileUsageHandler(telemetryProvider, workspace) + new FileUsageHandler(telemetryProvider, workspace), + new FileContentsHandler(telemetryProvider, workspace) ) override def applyConfig(config: Option[FileUsageClientCapabilities]): FileUsageOptions = { diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/actions/fileusage/filecontents/FileContentsHandler.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/actions/fileusage/filecontents/FileContentsHandler.scala new file mode 100644 index 0000000000..46eb1a7e41 --- /dev/null +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/actions/fileusage/filecontents/FileContentsHandler.scala @@ -0,0 +1,41 @@ +package org.mulesoft.als.server.modules.actions.fileusage.filecontents + +import org.mulesoft.als.server.feature.fileusage.filecontents.{FileContentsRequestType, FileContentsResponse} +import org.mulesoft.als.server.workspace.WorkspaceManager +import org.mulesoft.amfintegration.AmfImplicits.BaseUnitImp +import org.mulesoft.lsp.feature.TelemeteredRequestHandler +import org.mulesoft.lsp.feature.common.TextDocumentIdentifier +import org.mulesoft.lsp.feature.telemetry.MessageTypes.MessageTypes +import org.mulesoft.lsp.feature.telemetry.{MessageTypes, TelemetryProvider} + +import scala.concurrent.ExecutionContext.Implicits.global +import scala.concurrent.Future + +class FileContentsHandler(telemetryProvider: TelemetryProvider, workspace: WorkspaceManager) + extends TelemeteredRequestHandler[TextDocumentIdentifier, FileContentsResponse] { + override def `type`: FileContentsRequestType.type = FileContentsRequestType + + override def task(params: TextDocumentIdentifier): Future[FileContentsResponse] = + workspace.getLastUnit(params.uri, uuid(params)).flatMap { _ => // be sure the unit is done being parsed + workspace + .getWorkspace(params.uri) + .map(wcm => wcm.repository.getAllFilesUrisWithContents) + .map(fs => FileContentsResponse(fs)) + } + + override protected def telemetry: TelemetryProvider = telemetryProvider + + override protected def code(params: TextDocumentIdentifier): String = "FileContentsHandler" + + override protected def beginType(params: TextDocumentIdentifier): MessageTypes = MessageTypes.BEGIN_FILE_CONTENTS + + override protected def endType(params: TextDocumentIdentifier): MessageTypes = MessageTypes.END_FILE_CONTENTS + + override protected def msg(params: TextDocumentIdentifier): String = s"Request find contents for file: ${params.uri}" + + override protected def uri(params: TextDocumentIdentifier): String = params.uri + + /** If Some(_), this will be sent as a response as a default for a managed exception + */ + override protected val empty: Option[FileContentsResponse] = Some(FileContentsResponse(Map.empty)) +} diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/workspace/WorkspaceParserRepository.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/workspace/WorkspaceParserRepository.scala index d8f31ce26f..9dc70fae80 100644 --- a/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/workspace/WorkspaceParserRepository.scala +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/workspace/WorkspaceParserRepository.scala @@ -21,6 +21,13 @@ class WorkspaceParserRepository(logger: Logger) extends Repository[ParsedUnit] { override def getAllFilesUris: List[String] = getIsolatedUris ++ getTreeUris // profiles not added on purpose? + def getAllFilesUrisWithContents: Map[String, String] = + ((units ++ tree.parsedUnits).map(t => (t._1, t._2.parsedResult.result.baseUnit)) ++ units.flatMap( + _._2.parsedResult.result.baseUnit.flatRefs.map(bu => (bu.identifier, bu)) + )) + .map(t => (t._1, t._2.raw.getOrElse(""))) + .toMap + def getTreeUris: List[String] = treeUnits().map(_.parsedResult.result.baseUnit.identifier).toList def getIsolatedUris: List[String] = units.values.map(_.parsedResult.result.baseUnit.identifier).toList diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/workspace/WorkspaceManager.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/workspace/WorkspaceManager.scala index 4019666279..08f5134dfb 100644 --- a/als-server/shared/src/main/scala/org/mulesoft/als/server/workspace/WorkspaceManager.scala +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/workspace/WorkspaceManager.scala @@ -15,6 +15,7 @@ import org.mulesoft.als.server.modules.workspace.{ } import org.mulesoft.als.server.textsync.EnvironmentProvider import org.mulesoft.als.server.workspace.command._ +import org.mulesoft.amfintegration.AmfImplicits.BaseUnitImp import org.mulesoft.amfintegration.ValidationProfile import org.mulesoft.amfintegration.amfconfiguration.{ EditorConfiguration, @@ -27,6 +28,7 @@ import org.mulesoft.lsp.feature.link.DocumentLink import org.mulesoft.lsp.feature.telemetry.TelemetryProvider import org.mulesoft.lsp.workspace.{DidChangeWorkspaceFoldersParams, ExecuteCommandParams} +import java.util.UUID import scala.collection.{immutable, mutable} import scala.concurrent.ExecutionContext.Implicits.global import scala.concurrent.Future diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/FileContentsTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/FileContentsTest.scala new file mode 100644 index 0000000000..8ae20d4417 --- /dev/null +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/FileContentsTest.scala @@ -0,0 +1,17 @@ +package org.mulesoft.als.server.workspace.fileusage + +import org.scalatest.Succeeded + +import scala.concurrent.Future + +class FileContentsTest extends ServerFileUsageTest with TestEntries { + test("Test File Contents") { + Future + .sequence { + testSets.map { test => + runFileContentsTest(test.root, test.mainFile, test.ws, test.searchedUri, test.ws) + } + } + .map(r => assert(r.forall(_ == Succeeded))) + } +} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/FileUsageTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/FileUsageTest.scala index c7fa598a68..15c5fc894f 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/FileUsageTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/FileUsageTest.scala @@ -6,90 +6,11 @@ import org.scalatest.Succeeded import scala.concurrent.{ExecutionContext, Future} -class FileUsageTest extends ServerFileUsageTest { +class FileUsageTest extends ServerFileUsageTest with TestEntries { override implicit val executionContext: ExecutionContext = ExecutionContext.Implicits.global - val testSets: Set[TestEntry] = Set( - TestEntry( - "file:///root/t.raml", - "api.raml", - Map( - "file:///root/api.raml" -> - """#%RAML 1.0 - |types: - | t: !include t.raml""".stripMargin, - "file:///root/t.raml" -> - """#%RAML 1.0 DataType - |type: string""".stripMargin - ), - Set(Location("file:///root/api.raml", Range(Position(2, 14), Position(2, 20)))) - ), - TestEntry( - "file:///root/l.raml", - "api.raml", - Map( - "file:///root/api.raml" -> - """#%RAML 1.0 - |uses: - | l: l.raml""".stripMargin, - "file:///root/l.raml" -> - """#%RAML 1.0 Library - |types - | t: string""".stripMargin - ), - Set(Location("file:///root/api.raml", Range(Position(2, 5), Position(2, 11)))) - ), - TestEntry( - "file:///root/t.yaml", - "api.yaml", - Map( - "file:///root/api.yaml" -> - """asyncapi: "2.0.0" - | - |components: - | schemas: - | mySchema: - | $ref: "t.yaml#/mySchema"""".stripMargin, - "file:///root/t.yaml" -> - """mySchema: - | type: object - | properties: - | id: string""".stripMargin - ), - Set(Location("file:///root/api.yaml", Range(Position(5, 13), Position(5, 19)))) - ) -// TestEntry( -// "file:///root/t.json", -// "api.json", -// Map( -// "file:///root/api.json" -> -// """{ -// | "$schema": "http://json-schema.org/draft-04/schema#", -// | -// | "type": "object", -// | "properties": { -// | "street_address": { "type": "string" }, -// | "city": { "type": "string" }, -// | "state": { "$ref": "t.json#/definitions/state" } -// | }, -// | "required": ["street_address", "city", "state"] -// |}"""".stripMargin, -// "file:///root/t.json" -> -// """{ -// | "$schema": "http://json-schema.org/draft-04/schema#", -// | -// | "type": "object", -// | "definitions": { -// | "state": { "enum": ["CA", "NY", "... etc ..."] } -// | } -// |}""".stripMargin -// ), -// Set(Location("file:///root/api.json", Range(Position(7, 23), Position(7, 50)))) -// ) - ) - test("No handler") { for { results <- Future.sequence { @@ -111,16 +32,9 @@ class FileUsageTest extends ServerFileUsageTest { Future .sequence { testSets.map { test => - runTest(test.root, test.mainFile, test.ws, test.searchedUri, test.result) + runFileUsageTest(test.root, test.mainFile, test.ws, test.searchedUri, test.result) } } .map(r => assert(r.forall(_ == Succeeded))) } - case class TestEntry( - searchedUri: String, - mainFile: String, - ws: Map[String, String], - result: Set[Location], - root: String = "file:///root/" - ) } diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/ServerFileUsageTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/ServerFileUsageTest.scala index aff560dbfd..2d53be26c7 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/ServerFileUsageTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/ServerFileUsageTest.scala @@ -4,6 +4,7 @@ import amf.core.client.common.remote.Content import amf.core.client.scala.resource.ResourceLoader import org.mulesoft.als.server.client.scala.LanguageServerBuilder import org.mulesoft.als.server.feature.fileusage.FileUsageRequestType +import org.mulesoft.als.server.feature.fileusage.filecontents.{FileContentsRequestType, FileContentsResponse} import org.mulesoft.als.server.modules.WorkspaceManagerFactoryBuilder import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.als.server.protocol.configuration.AlsInitializeParams @@ -62,7 +63,7 @@ trait ServerFileUsageTest extends LanguageServerBaseTest { } } - def runTest( + def runFileUsageTest( root: String, mainFile: String, ws: Map[String, String], @@ -81,4 +82,24 @@ trait ServerFileUsageTest extends LanguageServerBaseTest { .resolveHandler(FileUsageRequestType) .map { _(TextDocumentIdentifier(searchedUri)) } .getOrElse(Future.failed(new Exception("No handler found for FileUsage"))) + + def runFileContentsTest( + root: String, + mainFile: String, + ws: Map[String, String], + searchedUri: String, + expectedResult: Map[String, String] + ): Future[Assertion] = + for { + (server, _) <- buildServer(root, ws, mainFile) + result <- getServerFileContents(server, searchedUri) + } yield { + assert(result.fs == expectedResult) + } + + def getServerFileContents(server: LanguageServer, searchedUri: String): Future[FileContentsResponse] = + server + .resolveHandler(FileContentsRequestType) + .map { _(TextDocumentIdentifier(searchedUri)) } + .getOrElse(Future.failed(new Exception("No handler found for FileContents"))) } diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/TestEntries.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/TestEntries.scala new file mode 100644 index 0000000000..6c3bc10c20 --- /dev/null +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/TestEntries.scala @@ -0,0 +1,92 @@ +package org.mulesoft.als.server.workspace.fileusage + +import org.mulesoft.lsp.feature.common.{Location, Position, Range} + +trait TestEntries { + val testSets: Set[TestEntry] = Set( + TestEntry( + "file:///root/t.raml", + "api.raml", + Map( + "file:///root/api.raml" -> + """#%RAML 1.0 + |types: + | t: !include t.raml""".stripMargin, + "file:///root/t.raml" -> + """#%RAML 1.0 DataType + |type: string""".stripMargin + ), + Set(Location("file:///root/api.raml", Range(Position(2, 14), Position(2, 20)))) + ), + TestEntry( + "file:///root/l.raml", + "api.raml", + Map( + "file:///root/api.raml" -> + """#%RAML 1.0 + |uses: + | l: l.raml""".stripMargin, + "file:///root/l.raml" -> + """#%RAML 1.0 Library + |types + | t: string""".stripMargin + ), + Set(Location("file:///root/api.raml", Range(Position(2, 5), Position(2, 11)))) + ), + TestEntry( + "file:///root/t.yaml", + "api.yaml", + Map( + "file:///root/api.yaml" -> + """asyncapi: "2.0.0" + | + |components: + | schemas: + | mySchema: + | $ref: "t.yaml#/mySchema"""".stripMargin, + "file:///root/t.yaml" -> + """mySchema: + | type: object + | properties: + | id: string""".stripMargin + ), + Set(Location("file:///root/api.yaml", Range(Position(5, 13), Position(5, 19)))) + ) + // TestEntry( + // "file:///root/t.json", + // "api.json", + // Map( + // "file:///root/api.json" -> + // """{ + // | "$schema": "http://json-schema.org/draft-04/schema#", + // | + // | "type": "object", + // | "properties": { + // | "street_address": { "type": "string" }, + // | "city": { "type": "string" }, + // | "state": { "$ref": "t.json#/definitions/state" } + // | }, + // | "required": ["street_address", "city", "state"] + // |}"""".stripMargin, + // "file:///root/t.json" -> + // """{ + // | "$schema": "http://json-schema.org/draft-04/schema#", + // | + // | "type": "object", + // | "definitions": { + // | "state": { "enum": ["CA", "NY", "... etc ..."] } + // | } + // |}""".stripMargin + // ), + // Set(Location("file:///root/api.json", Range(Position(7, 23), Position(7, 50)))) + // ) + ) + +} +case class TestEntry( + searchedUri: String, + mainFile: String, + ws: Map[String, String], + result: Set[Location], + root: String = "file:///root/" +) From e3e5339d1beb2384f9cd61b7aa99ecd6c4f6804f Mon Sep 17 00:00:00 2001 From: Fede <48660757+mansillafederico@users.noreply.github.com> Date: Tue, 30 May 2023 17:00:38 -0300 Subject: [PATCH 3/7] W-13222293/adopt amf scala js1 (#923) * W-131222293/Adopt AMF with ScalaJS 1: PR comments Signed-off-by: Federico Mansilla --- Dockerfile | 6 +- Jenkinsfile | 8 +- adrs/bumps/0001-scalaJS-1.1.0.md | 47 + als-actions/js/package-lock.json | 56 +- als-actions/js/package.json | 2 +- .../als/actions/HoverActionTest.scala | 3 +- .../codeactions/BaseCodeActionTests.scala | 5 +- .../codeactions/DeleteDeclaredNodeTest.scala | 2 +- .../definition/DefinitionFileTests.scala | 3 +- .../actions/folding/FoldingRangesTests.scala | 3 +- .../als/actions/links/FindLinksTests.scala | 5 +- .../FormattingOptionsTest.scala | 5 +- .../selection/SelectionRangeFinderTest.scala | 3 +- als-common/js/package-lock.json | 56 +- als-common/js/package.json | 2 +- .../ClientDirectoryResolver.scala | 4 +- .../AbstractDeclarationInformation.scala | 1 + .../mulesoft/als/common/BaseHoverTest.scala | 2 +- .../mulesoft/als/common/ByDirectoryTest.scala | 2 +- .../mulesoft/als/common/RelativizeTests.scala | 5 +- .../als/common/YNodeBranchBuilderTest.scala | 5 +- .../mulesoft/als/common/YamlWrapperTest.scala | 4 +- .../mulesoft/als/common/diff/DiffTest.scala | 10 +- .../als/common/diff/FileAssertionTest.scala | 2 +- .../als/common/diff/ListAssertions.scala | 3 +- .../org/mulesoft/als/common/diff/Tests.scala | 11 +- .../als/common/diff/WorkspaceEditsTest.scala | 4 +- .../als/common/dtoTypes/FileUtilsTest.scala | 4 +- .../dtoTypes/LinesWithSeparatorsTest.scala | 5 +- .../common/dtoTypes/PositionRangeTest.scala | 4 +- .../als/common/dtoTypes/PositionTest.scala | 4 +- .../DeclarationCreatorTests.scala | 3 +- .../ObjectInTreeArraysTests.scala | 2 +- .../objectintree/ObjectInTreeBaseTest.scala | 7 +- .../objectintree/ObjectInTreeMapsTests.scala | 2 +- als-fat/jvm/project/build.properties | 2 +- .../conversions/ClientConversionTest.scala | 26 +- .../lsp/feature/common/Position.scala | 2 +- .../mulesoft/lsp/feature/common/Range.scala | 2 +- .../node-package/package-lock.json | 14 +- als-node-client/node-package/package.json | 2 +- als-node-client/node-package/scripts/build.sh | 8 +- als-node-client/project/build.properties | 2 +- .../ClientPlatformDirectoryResolver.scala | 2 - .../org/mulesoft/als/nodeclient/Main.scala | 8 +- ...odeJsCustomValidationByDirectoryTest.scala | 2 +- .../protocol/lsp4j/LsConvertionsTest.scala | 4 +- als-server/js/node-package/package-lock.json | 25 +- als-server/js/node-package/package.json | 3 +- .../js/node-package/project/build.properties | 2 +- als-server/js/node-package/scripts/build.sh | 13 +- als-server/js/node-package/webpack.config.js | 2 + .../als/server/AMFValidatorTest.scala | 36 +- .../als/server/ClientConversionTest.scala | 5 +- .../als/server/JsLanguageServerTest.scala | 33 +- .../als/server/lsp4j/GsonTypeAdapters.scala | 4 +- .../als/server/lsp4j/LsConvertionsTest.scala | 4 +- .../server/lsp4j/LspCustomEnvironment.scala | 9 +- .../UpdateConfigurationParams.scala | 4 +- .../diagnostic/ValidationGatherer.scala | 6 +- .../org/mulesoft/als/server/FailedLogs.scala | 2 +- .../als/server/LanguageServerBaseTest.scala | 4 +- .../als/server/LanguageServerImplTest.scala | 26 +- .../mulesoft/als/server/RequestMapTest.scala | 4 +- .../als/server/ServerWithMarkerTest.scala | 2 - .../CodeActionsWithGoldenTest.scala | 2 +- .../completion/raml/IncludeCacheTests.scala | 6 +- .../definition/ServerDefinitionTest.scala | 2 +- .../diagnostic/CleanDiagnosticTreeTest.scala | 3 +- .../diagnostic/DiagnosticConverterTest.scala | 5 +- .../FromJsonLDValidatorExecutor.scala | 2 +- .../modules/foldings/FoldingRangeTest.scala | 4 +- .../als/server/modules/hover/HoverTest.scala | 4 +- .../server/modules/links/FindLinksTest.scala | 2 +- .../reference/ServerReferencesTest.scala | 2 +- .../modules/rename/ServerRenameTest.scala | 2 +- .../serialization/ConversionRequestTest.scala | 2 +- .../serialization/SerializationTest.scala | 2 +- .../parser/ParserStagingAreaTests.scala | 5 +- .../server/workspace/WorkspaceCacheTest.scala | 3 +- .../WorkspaceManagerSymbolTest.scala | 2 +- .../WorkspaceManagerTelemetryTest.scala | 2 +- .../workspace/WorkspaceManagerTest.scala | 2 +- ...rkspaceManagerWithoutDiagnosticsTest.scala | 2 +- .../WorkspaceParserRepositoryTest.scala | 4 +- .../fileusage/ServerFileUsageTest.scala | 2 +- .../highlights/DocumentHighlightTest.scala | 4 +- als-structure/js/package-lock.json | 56 +- als-structure/js/package.json | 2 +- .../test/resources/AML/AsyncAPI/fragment.json | 8 +- .../test/resources/AML/AsyncAPI/library.json | 12 +- .../dialect.json | 44 +- .../instance.json | 20 +- .../resources/AML/meta-dialect/complete.json | 36 +- .../resources/AML/vocabulary/vocabulary.json | 48 +- .../bindings/channel/api-yaml-outline.json | 4 +- .../bindings/message/api-yaml-outline.json | 4 +- .../bindings/operation/api-yaml-outline.json | 4 +- .../bindings/server/api-yaml-outline.json | 4 +- .../Async20/channel/api-yaml-outline.json | 12 +- .../channel-bindings/api-yaml-outline.json | 4 +- .../correlations-ids/api-yaml-outline.json | 4 +- .../message-bindings/api-yaml-outline.json | 4 +- .../message-traits/api-yaml-outline.json | 4 +- .../messages/api-yaml-outline.json | 16 +- .../operation-bindings/api-yaml-outline.json | 4 +- .../operation-traits/api-yaml-outline.json | 4 +- .../parameters/api-yaml-outline.json | 8 +- .../schemas/api-yaml-outline.json | 4 +- .../security-schemes/api-yaml-outline.json | 4 +- .../server-bindings/api-yaml-outline.json | 4 +- .../Async20/payload/api-yaml-outline.json | 4 +- .../Async20/root/api-yaml-outline.json | 16 +- .../Async20/schemas/api-yaml-outline.json | 4 +- .../Async20/servers/api-yaml-outline.json | 8 +- .../servers/array/api-yaml-outline.json | 4 +- .../OAS20/structure/allof/allof.yml.json | 4 +- .../definitions/definitions-json-outline.json | 12 +- .../extensions/at-payload/api.yml.json | 68 +- .../structure/inner-security/api.json.json | 8 +- .../parameters/endpoint-form-data.yml.json | 16 +- .../parameters/endpoint-param.yml.json | 24 +- .../parameters/operation-form-data.yml.json | 20 +- .../parameters/operation-param.yml.json | 28 +- .../structure/root/api-json-outline.json | 32 +- .../structure/root/api-yaml-outline.json | 32 +- .../structure/test001/api-json-outline.json | 24 +- .../structure/test001/api-yaml-outline.json | 24 +- .../structure/test002/api-json-outline.json | 12 +- .../structure/test002/api-yaml-outline.json | 12 +- .../structure/test003/api-json-outline.json | 20 +- .../structure/test003/api-yaml-outline.json | 20 +- .../structure/test004/api-json-outline.json | 20 +- .../structure/test004/api-yaml-outline.json | 20 +- .../structure/test005/api-json-outline.json | 16 +- .../structure/test005/api-yaml-outline.json | 16 +- .../structure/test006/api-json-outline.json | 12 +- .../structure/test006/api-yaml-outline.json | 12 +- .../structure/test007/api-json-outline.json | 12 +- .../structure/test007/api-yaml-outline.json | 12 +- .../structure/test008/api-json-outline.json | 16 +- .../structure/test008/api-yaml-outline.json | 16 +- .../structure/test009/api-json-outline.json | 16 +- .../structure/test009/api-yaml-outline.json | 16 +- .../structure/test010/api-json-outline.json | 28 +- .../structure/test010/api-yaml-outline.json | 28 +- .../structure/test011/api-json-outline.json | 24 +- .../structure/test011/api-yaml-outline.json | 24 +- .../OAS30/callbacks/api-json-outline.json | 16 +- .../OAS30/callbacks/api-yaml-outline.json | 16 +- .../OAS30/components/api-json-outline.json | 92 +- .../OAS30/components/api-yaml-outline.json | 92 +- .../OAS30/encoding/api-json-outline.json | 12 +- .../OAS30/encoding/api-yaml-outline.json | 12 +- .../inner-security/api-json-outline.json | 4 +- .../inner-security/api-yaml-outline.json | 4 +- .../OAS30/link/api-json-outline.json | 12 +- .../OAS30/link/api-yaml-outline.json | 12 +- .../OAS30/media-type/api-json-outline.json | 16 +- .../OAS30/media-type/api-yaml-outline.json | 16 +- .../OAS30/operation/api-json-outline.json | 36 +- .../OAS30/operation/api-yaml-outline.json | 36 +- .../operation/security/api-json-outline.json | 12 +- .../operation/security/api-yaml-outline.json | 12 +- .../OAS30/paths/api-json-outline.json | 16 +- .../OAS30/paths/api-yaml-outline.json | 16 +- .../paths/path-object/api-json-outline.json | 28 +- .../paths/path-object/api-yaml-outline.json | 28 +- .../OAS30/request-body/api-json-outline.json | 20 +- .../OAS30/request-body/api-yaml-outline.json | 20 +- .../OAS30/responses/api-json-outline.json | 32 +- .../OAS30/responses/api-yaml-outline.json | 32 +- .../OAS30/root-level/api-json-outline.json | 20 +- .../OAS30/root-level/api-yaml-outline.json | 20 +- .../root-level/info/api-json-outline.json | 16 +- .../root-level/info/api-yaml-outline.json | 16 +- .../root-level/server/api-json-outline.json | 12 +- .../root-level/server/api-yaml-outline.json | 12 +- .../included-example/api-outline.json | 4 +- .../structure/inlined-array/api-outline.json | 16 +- .../RAML08/structure/test028/api-outline.json | 16 +- .../RAML08/structure/test029/api-outline.json | 32 +- .../RAML08/structure/test030/api-outline.json | 16 +- .../RAML08/structure/test031/api-outline.json | 16 +- .../enum-in-resourcetype-outline.json | 8 +- .../is-in-resourcetype-outline.json | 8 +- .../optional-property-outline.json | 8 +- .../structure/custom/no-variable-outline.json | 16 +- .../structure/declarations/api-outline.json | 40 +- .../structure/included-example/structure.json | 16 +- .../structure/nested-files/api-outline.json | 12 +- .../structure/nested-traits/api-outline.json | 8 +- .../structure/nested-types/api-outline.json | 8 +- .../optional-string/api-outline.json | 12 +- .../RAML10/structure/root/api-outline.json | 28 +- .../RAML10/structure/test001/api-outline.json | 16 +- .../RAML10/structure/test002/api-outline.json | 24 +- .../RAML10/structure/test003/api-outline.json | 12 +- .../RAML10/structure/test004/api-outline.json | 20 +- .../RAML10/structure/test006/api-outline.json | 12 +- .../RAML10/structure/test007/api-outline.json | 60 +- .../RAML10/structure/test009/api-outline.json | 44 +- .../RAML10/structure/test010/api-outline.json | 20 +- .../RAML10/structure/test011/api-outline.json | 20 +- .../RAML10/structure/test012/api-outline.json | 8 +- .../RAML10/structure/test013/api-outline.json | 20 +- .../RAML10/structure/test014/api-outline.json | 36 +- .../RAML10/structure/test017/api-outline.json | 8 +- .../RAML10/structure/test018/api-outline.json | 32 +- .../RAML10/structure/test019/api-outline.json | 16 +- .../RAML10/structure/test020/api-outline.json | 16 +- .../RAML10/structure/test021/api-outline.json | 20 +- .../RAML10/structure/test022/api-outline.json | 24 +- .../RAML10/structure/test023/api-outline.json | 28 +- .../RAML10/structure/test024/api-outline.json | 24 +- .../RAML10/structure/test025/api-outline.json | 8 +- .../RAML10/structure/test027/api-outline.json | 4 +- .../RAML10/structure/test028/api-outline.json | 64 +- .../RAML10/structure/traits/api-outline.json | 20 +- .../draft-03/basic-schema-outline.json | 92 +- .../draft-04/basic-schema-outline.json | 92 +- .../draft-07/basic-schema-outline.json | 92 +- .../allof-definitions-outline.json | 16 +- .../draft-2019-09/basic-schema-outline.json | 92 +- .../simple-definitions-outline.json | 12 +- .../no-document/json/api-json-outline.json | 4 +- .../no-document/yaml/api-yaml-outline.json | 4 +- .../resources/semantic/async2/simple1.json | 12 +- .../test/resources/semantic/oas2/simple1.json | 12 +- .../test/resources/semantic/oas3/simple1.json | 12 +- .../test/resources/semantic/raml/simple1.json | 12 +- .../language/outline/test/OutlineTest.scala | 3 +- .../test/aml/DialectStructureTest.scala | 2 +- als-suggestions/js/package-lock.json | 56 +- als-suggestions/js/package.json | 2 +- .../client/jvm/JvmSuggestionsTest.scala | 3 +- .../AML/instances/expected/test001.yaml.json | 12 +- .../AML/instances/expected/test002.yaml.json | 12 +- .../AML/instances/expected/test003.yaml.json | 60 +- .../expected/test004-snnipet.yaml.json | 24 +- ...annotation-mapping-domain-inside.yaml.json | 36 +- .../annotation-mapping-domain.yaml.json | 24 +- .../annotation-mapping-name.yaml.json | 12 +- ...tion-mapping-term-from-reference.yaml.json | 24 +- .../annotation-mapping-term-value.yaml.json | 36 +- .../annotation-mapping-term.yaml.json | 12 +- .../expected/annotation-mapping.yaml.json | 144 +- .../expected/mapping-allow-multiple.yaml.json | 24 +- .../mapping-before-property.yaml.json | 132 +- .../expected/mapping-extends.yaml.json | 24 +- .../expected/mapping-mandatory.yaml.json | 24 +- .../expected/mapping-sorted.yaml.json | 24 +- .../expected/mapping-unique.yaml.json | 24 +- .../documents/expected/documents.yaml.json | 48 +- .../annotation-mapping-value-second.yaml.json | 12 +- .../annotation-mapping-value.yaml.json | 12 +- .../expected/encoded-range.yaml.json | 24 +- .../fragments/expected/encodes.yaml.json | 4 +- .../fragments/expected/fragments.yaml.json | 12 +- .../library/expected/declared-range.yaml.json | 24 +- .../library/expected/declares.yaml.json | 4 +- .../library/expected/library.yaml.json | 24 +- .../empty-mapping-declaration.yaml.json | 108 +- ...e-mapping-name-after-declaration.yaml.json | 12 +- ...-mapping-name-before-declaration.yaml.json | 12 +- .../expected/node-mapping-name.yaml.json | 12 +- .../expected/node-mapping-patch.yaml.json | 72 +- ...node-mapping-term-from-reference.yaml.json | 24 +- ...ode-mapping-term-value-no-filter.yaml.json | 24 +- ...ping-term-value-unfinished-alias.yaml.json | 12 +- .../node-mapping-term-value.yaml.json | 24 +- .../expected/node-mapping-term.yaml.json | 12 +- .../expected/node-mapping.yaml.json | 48 +- .../type-discriminator-name.yaml.json | 24 +- .../expected/union-mapping.yaml.json | 24 +- .../expected/union-value.yaml.json | 24 +- .../expected/mapping-allow-multiple.yaml.json | 24 +- .../mapping-before-property.yaml.json | 180 ++- .../expected/mapping-extends.yaml.json | 24 +- .../expected/mapping-mandatory.yaml.json | 24 +- .../expected/mapping-map-key.yaml.json | 12 +- .../mapping-map-term-key-filter.yaml.json | 36 +- .../expected/mapping-map-term-key.yaml.json | 12 +- .../mapping-map-term-value-filter.yaml.json | 36 +- .../expected/mapping-map-term-value.yaml.json | 12 +- .../expected/mapping-map-value.yaml.json | 12 +- .../mappings/expected/mapping-name.yaml.json | 4 +- .../mappings/expected/mapping-range.yaml.json | 240 ++- .../expected/mapping-sorted.yaml.json | 24 +- .../mapping-term-unfinished-alias.yaml.json | 12 +- .../mapping-term-value-filter.yaml.json | 24 +- .../expected/mapping-term-value.yaml.json | 36 +- .../mappings/expected/mapping-term.yaml.json | 12 +- .../expected/mapping-unique.yaml.json | 24 +- .../mappings/expected/mapping.yaml.json | 192 ++- .../options/expected/key-property.yaml.json | 24 +- .../options/expected/options.yaml.json | 48 +- .../expected/reference-style.yaml.json | 24 +- .../options/expected/self-encoded.yaml.json | 24 +- .../root/expected/declared-range.yaml.json | 24 +- .../root/expected/declares.yaml.json | 4 +- .../documents/root/expected/encodes.yaml.json | 24 +- .../root/expected/root-document.yaml.json | 24 +- .../expected/has-name-version.yaml.json | 84 +- .../meta-dialect/expected/header.yaml.json | 12 +- .../AML/meta-dialect/expected/root.yaml.json | 108 +- .../api-with-annotation-declaration.raml.json | 24 +- ...with-annotation-different-target.raml.json | 4 +- ...i-without-annotation-declaration.raml.json | 4 +- .../basic/expected/async2.yaml.json | 12 +- .../basic/expected/oas2.yaml.json | 24 +- .../basic/expected/oas3.yaml.json | 24 +- .../inner/expected/api-inner-value.raml.json | 24 +- .../inner/expected/api-inner.raml.json | 12 +- .../inner/expected/api.raml.json | 36 +- .../expected/async2-inner-value.yaml.json | 48 +- .../inner/expected/async2-inner.yaml.json | 12 +- .../inner/expected/async2.yaml.json | 36 +- .../inner/expected/oas2-inner.yaml.json | 12 +- .../inner/expected/oas2.yaml.json | 36 +- .../inner/expected/oas3-inner.yaml.json | 12 +- .../inner/expected/oas3.yaml.json | 36 +- .../outside/expected/api.raml.json | 180 ++- .../outside/expected/async2.yaml.json | 60 +- .../outside/expected/oas2.yaml.json | 60 +- .../outside/expected/oas3.yaml.json | 60 +- .../expected/api.raml.json | 12 +- .../expected/discriminator-value.yaml.json | 24 +- .../instance-declares-distinct.yaml.json | 12 +- ...eclares-with-discriminator-value.yaml.json | 24 +- ...ance-declares-with-discriminator.yaml.json | 24 +- .../expected/instance-declares.yaml.json | 36 +- .../non-explicit-not-mandatory-prop.yaml.json | 12 +- .../non-explicit-not-shared-prop.yaml.json | 12 +- .../expected/non-explicit-root.yaml.json | 36 +- .../non-explicit-shared-prop.yaml.json | 24 +- .../union/expected/non-root-union.yaml.json | 48 +- .../test/AML/union/expected/root.yaml.json | 48 +- .../test/AML/union/expected/typeA.yaml.json | 12 +- .../test/AML/union/expected/typeB.yaml.json | 24 +- .../expected/root.yaml.json | 156 +- .../validations/and/expected/and.yaml.json | 180 ++- .../expected/conditional.yaml.json | 180 ++- .../expected/conditional-validation.yaml.json | 60 +- .../expected/not-validation.yaml.json | 24 +- .../expected/propertyConstraints.yaml.json | 252 ++- .../expected/rego-validation.yaml.json | 48 +- .../expected/targetClass.yaml.json | 1284 +++++++++++---- ...undefined-union-range-validation.yaml.json | 168 +- .../validations/expected/validation.yaml.json | 180 ++- .../expected/xone-validation.yaml.json | 24 +- .../validations/not/expected/not.yaml.json | 180 ++- .../shape/expected/class.yaml.json | 180 ++- .../shape/expected/property.yaml.json | 180 ++- .../validations/xone/expected/xone.yaml.json | 180 ++- .../expected/classTerm-name.yaml.json | 4 +- .../classTerms/expected/classTerm.yaml.json | 60 +- .../classTerms/expected/description.yaml.json | 4 +- .../classTerms/expected/displayName.yaml.json | 4 +- .../classTerms/expected/extends.yaml.json | 4 +- .../expected/properties-in-array.yaml.json | 4 +- ...properties-suggest-propertyTerms.yaml.json | 24 +- .../expected/properties-will-filter.yaml.json | 12 +- .../classTerms/expected/properties.yaml.json | 4 +- .../AML/vocabulary/expected/base.yaml.json | 4 +- .../expected/external-value.yaml.json | 4 +- .../vocabulary/expected/external.yaml.json | 4 +- .../AML/vocabulary/expected/header.yaml.json | 120 +- .../AML/vocabulary/expected/root.yaml.json | 84 +- .../AML/vocabulary/expected/usage.yaml.json | 4 +- .../vocabulary/expected/uses-value.yaml.json | 132 +- .../AML/vocabulary/expected/uses.yaml.json | 4 +- .../vocabulary/expected/vocabulary.yaml.json | 4 +- .../expected/description.yaml.json | 4 +- .../expected/displayName.yaml.json | 4 +- .../propertyTerms/expected/extends.yaml.json | 4 +- .../expected/propTermRange.yaml.json | 36 +- .../expected/propertyTerm-name.yaml.json | 4 +- .../expected/propertyTerm.yaml.json | 48 +- .../range-suggests-classTerms.yaml.json | 108 +- .../propertyTerms/expected/range.yaml.json | 84 +- .../channels/expected/bindings.yaml.json | 156 +- .../channels/expected/channel.yaml.json | 60 +- .../channels/expected/channels.yaml.json | 4 +- .../channels/expected/parameter.yaml.json | 48 +- .../expected/channel-binding-ref.yaml.json | 60 +- .../expected/message-binding-ref.yaml.json | 60 +- .../expected/operation-binding-ref.yaml.json | 60 +- .../expected/server-binding-ref.yaml.json | 60 +- .../amqp/expected/amqp-binding-is.yaml.json | 24 +- .../amqp-binding-queue-props.yaml.json | 60 +- .../expected/amqp-binding-queue.yaml.json | 12 +- .../amqp-binding-routing-key-props.yaml.json | 60 +- .../amqp-binding-routing-key.yaml.json | 12 +- .../expected/amqp-binding.yaml.json | 12 +- .../expected/amqp1-binding.yaml.json | 4 +- .../expected/channel-bindings-name.yaml.json | 4 +- .../expected/channel-bindings.yaml.json | 156 +- .../expected/http-binding.yaml.json | 4 +- .../expected/jms-binding.yaml.json | 4 +- .../expected/kafka-binding.yaml.json | 4 +- .../expected/mqtt-binding.yaml.json | 4 +- .../expected/mqtt5-binding.yaml.json | 4 +- .../expected/nats-binding.yaml.json | 4 +- .../expected/redis-binding.yaml.json | 4 +- .../expected/sns-binding.yaml.json | 4 +- .../expected/sqs-binding.yaml.json | 4 +- .../expected/stomp-binding.yaml.json | 4 +- .../expected/ws-binding-headers.yaml.json | 240 ++- .../expected/ws-binding-query.yaml.json | 240 ++- .../expected/ws-binding.yaml.json | 72 +- .../expected/correlation-name.yaml.json | 4 +- .../correlation-ref-message.yaml.json | 12 +- .../expected/correlation-runtime.yaml.json | 12 +- .../expected/correlation.yaml.json | 36 +- .../expected/amqp-binding.yaml.json | 36 +- .../expected/amqp1-binding.yaml.json | 4 +- .../expected/http-binding-schema.yaml.json | 240 ++- .../expected/http-binding.yaml.json | 24 +- .../expected/jms-binding.yaml.json | 4 +- .../expected/kafka-binding.yaml.json | 24 +- .../expected/message-binding-name.yaml.json | 4 +- .../expected/message-binding.yaml.json | 156 +- .../expected/mqtt-binding.yaml.json | 12 +- .../expected/mqtt5-binding.yaml.json | 4 +- .../expected/nats-binding.yaml.json | 4 +- .../expected/redis-binding.yaml.json | 4 +- .../expected/sns-binding.yaml.json | 4 +- .../expected/sqs-binding.yaml.json | 4 +- .../expected/stomp-binding.yaml.json | 4 +- .../expected/ws-binding.yaml.json | 4 +- .../expected/message-trait-name.yaml.json | 4 +- .../expected/message-trait-ref-path.yaml.json | 60 +- .../expected/message-trait-ref.yaml.json | 12 +- .../expected/message-trait.yaml.json | 180 ++- .../message-name-after-declaration.yaml.json | 4 +- .../messages/expected/message-name.yaml.json | 4 +- .../expected/message-ref-operation.yaml.json | 12 +- .../messages/expected/message-ref.yaml.json | 12 +- .../messages/expected/message.yaml.json | 204 ++- .../expected/amqp-binding.yaml.json | 132 +- .../expected/amqp1-binding.yaml.json | 4 +- .../expected/http-binding-schema.yaml.json | 240 ++- .../expected/http-binding.yaml.json | 36 +- .../expected/jms-binding.yaml.json | 4 +- .../expected/kafka-binding.yaml.json | 36 +- .../expected/mqtt-binding.yaml.json | 36 +- .../expected/mqtt5-binding.yaml.json | 4 +- .../expected/nats-binding.yaml.json | 4 +- .../expected/operation-binding-name.yaml.json | 4 +- .../expected/operation-binding.yaml.json | 156 +- .../expected/redis-binding.yaml.json | 4 +- .../expected/sns-binding.yaml.json | 4 +- .../expected/sqs-binding.yaml.json | 4 +- .../expected/stomp-binding.yaml.json | 4 +- .../expected/ws-binding.yaml.json | 4 +- .../expected/trait-bindings.yaml.json | 156 +- .../expected/trait-external-doc.yaml.json | 24 +- .../trait-name-after-declaration.yaml.json | 4 +- .../expected/trait-name.yaml.json | 4 +- .../expected/trait-ref-path.yaml.json | 108 +- .../expected/trait-ref.yaml.json | 12 +- .../expected/trait-tags.yaml.json | 48 +- .../operation-traits/expected/trait.yaml.json | 96 +- .../expected/parameter-channel-ref.yaml.json | 12 +- ...parameter-name-after-declaration.yaml.json | 4 +- .../expected/parameter-name.yaml.json | 4 +- .../expected/parameter-ref.yaml.json | 12 +- .../expected/parameter-runtime.yaml.json | 12 +- .../expected/parameter-schema.yaml.json | 240 ++- .../parameters/expected/parameter.yaml.json | 48 +- .../schemas/expected/array-schema.yaml.json | 288 +++- .../schemas/expected/boolean-format.yaml.json | 4 +- .../expected/external-docs-schema.yaml.json | 24 +- .../schemas/expected/integer-format.yaml.json | 4 +- .../schemas/expected/items-schema.yaml.json | 240 ++- .../expected/nested-format-applies.yaml.json | 240 ++- .../schemas/expected/number-format.yaml.json | 4 +- .../schemas/expected/number-schema.yaml.json | 288 +++- .../schemas/expected/object-schema.yaml.json | 300 +++- .../expected/properties-schema.yaml.json | 4 +- .../expected/property-schema.yaml.json | 240 ++- .../schemas/expected/required.yaml.json | 24 +- .../schema-name-after-declaration.yaml.json | 12 +- .../schemas/expected/schema-name.yaml.json | 12 +- .../schemas/expected/schema-ref.yaml.json | 240 ++- .../schemas/expected/schema.yaml.json | 240 ++- .../schemas/expected/string-format.yaml.json | 60 +- .../schemas/expected/string-schema.yaml.json | 264 ++- .../schemas/expected/types-schema.yaml.json | 84 +- .../security-scheme-api-key.yaml.json | 24 +- .../expected/security-scheme-in.yaml.json | 24 +- .../expected/security-scheme-name.yaml.json | 12 +- .../expected/security-scheme-type.yaml.json | 108 +- .../expected/security-scheme.yaml.json | 36 +- ...rver-security-requirement-scopes.yaml.json | 12 +- .../server-security-requirement.yaml.json | 12 +- .../security-scheme-http-api-key.yaml.json | 36 +- .../expected/security-scheme-in.yaml.json | 36 +- .../expected/security-scheme-http.yaml.json | 36 +- ...ecurity-scheme-authorizationCode.yaml.json | 72 +- ...ecurity-scheme-clientCredentials.yaml.json | 72 +- .../expected/security-scheme-flows.yaml.json | 36 +- .../security-scheme-implicit.yaml.json | 72 +- .../expected/security-scheme-oauth2.yaml.json | 36 +- .../security-scheme-password.yaml.json | 72 +- .../security-scheme-open-id-connect.yaml.json | 24 +- .../expected/amqp-binding.yaml.json | 4 +- .../expected/amqp1-binding.yaml.json | 4 +- .../expected/http-binding.yaml.json | 4 +- .../expected/jms-binding.yaml.json | 4 +- .../expected/kafka-binding.yaml.json | 4 +- .../expected/mqtt-binding-last-will.yaml.json | 36 +- .../expected/mqtt-binding.yaml.json | 60 +- .../expected/mqtt5-binding.yaml.json | 4 +- .../expected/nats-binding.yaml.json | 4 +- .../expected/redis-binding.yaml.json | 4 +- .../expected/server-bindings-name.yaml.json | 4 +- .../expected/server-bindings.yaml.json | 156 +- .../expected/sns-binding.yaml.json | 4 +- .../expected/sqs-binding.yaml.json | 4 +- .../expected/stomp-binding.yaml.json | 4 +- .../expected/ws-binding.yaml.json | 4 +- .../info/expected/info-contact.yaml.json | 36 +- .../info/expected/info-license.yaml.json | 24 +- .../by-directory/info/expected/info.yaml.json | 72 +- .../bindings/expected/protocols.yaml.json | 156 +- .../examples/expected/examples.yaml.json | 12 +- .../examples/expected/headers.yaml.json | 12 +- .../examples/expected/in-header.yaml.json | 12 +- .../examples/expected/inner-prop.yaml.json | 12 +- .../examples/expected/payload.yaml.json | 14 +- .../message/expected/content-type.yaml.json | 120 +- .../message/expected/correlation.yaml.json | 36 +- .../message/expected/external-doc.yaml.json | 24 +- .../message/expected/headers.yaml.json | 324 +++- .../message/expected/message.yaml.json | 216 ++- .../message/expected/one-of.yaml.json | 12 +- .../message/expected/schema-format.yaml.json | 108 +- .../message/expected/tags.yaml.json | 48 +- .../expected/asyncapi-2.0-array.yaml.json | 288 +++- .../expected/asyncapi-2.0-integer.yaml.json | 288 +++- .../expected/asyncapi-2.0-number.yaml.json | 288 +++- .../expected/asyncapi-2.0-object.yaml.json | 300 +++- .../expected/asyncapi-2.0-string.yaml.json | 264 ++- .../expected/asyncapi-2.0-default.yaml.json | 240 ++- .../expected/asyncapi-2.0-json.yaml.json | 240 ++- .../expected/asyncapi-2.0-type.yaml.json | 84 +- .../expected/asyncapi-2.0-yaml.yaml.json | 240 ++- .../payloads/expected/asyncapi-2.0.yaml.json | 240 ++- .../payloads/expected/example.yaml.json | 12 +- .../expected/jsonschema-7-json.yaml.json | 240 ++- .../expected/jsonschema-7-yaml.yaml.json | 240 ++- .../expected/openapi-3.0-json.yaml.json | 240 ++- .../expected/openapi-3.0-yaml.yaml.json | 240 ++- .../payloads/expected/openapi-3.0.yaml.json | 240 ++- .../payloads/expected/raml-1.0-yaml.yaml.json | 144 +- .../payloads/expected/raml-1.0.yaml.json | 144 +- .../expected/raml-1.0-yaml-any.yaml.json | 96 +- .../expected/raml-1.0-yaml-array.yaml.json | 144 +- .../expected/raml-1.0-yaml-boolean.yaml.json | 132 +- .../expected/raml-1.0-yaml-date.yaml.json | 132 +- .../raml-1.0-yaml-datetime-only.yaml.json | 132 +- .../expected/raml-1.0-yaml-datetime.yaml.json | 132 +- .../expected/raml-1.0-yaml-file.yaml.json | 132 +- .../raml-1.0-yaml-include-path.yaml.json | 240 ++- .../raml-1.0-yaml-include-tag.yaml.json | 12 +- .../expected/raml-1.0-yaml-integer.yaml.json | 144 +- .../expected/raml-1.0-yaml-nil.yaml.json | 4 +- .../expected/raml-1.0-yaml-number.yaml.json | 144 +- .../expected/raml-1.0-yaml-object.yaml.json | 168 +- .../raml-1.0-yaml-properties.yaml.json | 156 +- ...l-1.0-yaml-property-include-path.yaml.json | 240 ++- .../expected/raml-1.0-yaml-string.yaml.json | 132 +- .../expected/raml-1.0-yaml-time.yaml.json | 132 +- .../expected/raml-1.0-yaml-types.yaml.json | 156 +- .../expected/raml-1.0-yaml-union.yaml.json | 96 +- .../raml-1.0-yaml-with-declared.yaml.json | 156 +- .../bindings/expected/protocols.yaml.json | 156 +- .../expected/external-doc.yaml.json | 24 +- .../operations/expected/publish.yaml.json | 96 +- .../operations/expected/subscribe.yaml.json | 96 +- .../traits/expected/traits.yaml.json | 24 +- .../expected/between-entries.yaml.json | 180 ++- .../expected/async-facets.yaml.json | 240 ++- .../expected/async.yaml.json | 96 +- .../root/expected/external-doc.yaml.json | 24 +- .../by-directory/root/expected/key.yaml.json | 156 +- .../by-directory/root/expected/root.yaml.json | 132 +- .../by-directory/root/expected/tag.yaml.json | 36 +- .../root/expected/version.yaml.json | 12 +- .../bindings/expected/protocols.yaml.json | 156 +- .../server/expected/server-name.yaml.json | 4 +- .../server/expected/server.yaml.json | 84 +- .../expected/security-array.yaml.json | 24 +- .../security/expected/security.yaml.json | 24 +- .../variables/expected/variable.yaml.json | 48 +- .../variables/expected/variables.yaml.json | 4 +- .../test/json/expected/empty.json.json | 72 +- .../expected/json-begin-mapping.json.json | 36 +- .../json/expected/json-end-mapping.json.json | 36 +- .../expected/json-outside-mapping.json.json | 4 +- .../open-bracket-no-indentation.json.json | 72 +- .../test/json/expected/open-bracket.json.json | 72 +- .../definitions/if/expected/const.json.json | 12 +- .../definitions/if/expected/inside.json.json | 228 ++- .../properties/expected/inside.json.json | 228 ++- .../properties/expected/outside.json.json | 4 +- .../properties/expected/inside.json.json | 228 ++- .../properties/expected/outside.json.json | 4 +- .../type/expected/required.json.json | 24 +- .../root/expected/empty.json.json | 240 ++- .../properties/expected/inside.json.json | 168 +- .../properties/expected/outside.json.json | 4 +- .../properties/expected/inside.json.json | 180 ++- .../properties/expected/outside.json.json | 4 +- .../properties/type/expected/ref.json.json | 48 +- .../type/expected/required.json.json | 24 +- .../properties/type/expected/type.json.json | 84 +- .../by-directory/if/expected/const.json.json | 4 +- .../by-directory/if/expected/inside.json.json | 240 ++- .../root/expected/array.json.json | 240 ++- .../root/expected/boolean.json.json | 240 ++- .../root/expected/comment-in-middle.json.json | 24 +- .../root/expected/empty.json.json | 180 ++- .../root/expected/integer.json.json | 240 ++- .../by-directory/root/expected/null.json.json | 156 +- .../root/expected/number.json.json | 240 ++- .../root/expected/object.json.json | 240 ++- .../root/expected/string.json.json | 240 ++- .../definitions/if/expected/const.json.json | 12 +- .../definitions/if/expected/inside.json.json | 228 ++- .../properties/expected/inside.json.json | 228 ++- .../properties/expected/outside.json.json | 4 +- .../properties/expected/inside.json.json | 228 ++- .../properties/expected/outside.json.json | 4 +- .../type/expected/required.json.json | 24 +- .../root/expected/comment-in-middle.json.json | 12 +- .../root/expected/empty.json.json | 240 ++- .../expected/array-schema.json.json | 180 ++- .../expected/boolean-format.json.json | 4 +- ...efinition-name-after-declaration.json.json | 4 +- .../expected/definition-name.json.json | 4 +- .../definitions/expected/definition.json.json | 168 +- .../definitions/expected/definitios.json.json | 4 +- .../expected/externalDocs-schema.json.json | 24 +- .../expected/integer-format.json.json | 24 +- .../expected/items-schema.json.json | 168 +- .../expected/number-format.json.json | 48 +- .../expected/number-schema.json.json | 192 ++- .../expected/object-schema.json.json | 180 ++- .../expected/properties-schema.json.json | 4 +- .../expected/property-schema.json.json | 168 +- .../expected/readOnly-properties.json.json | 24 +- ...equired-properties-name-existing.json.json | 24 +- .../required-properties-name.json.json | 36 +- .../expected/schema-path-nav-two.json.json | 12 +- .../expected/schema-path-nav.json.json | 12 +- .../expected/schema-ref-comment.json.json | 12 +- .../schema-ref-separator-two.json.json | 12 +- .../expected/schema-ref-separator.json.json | 12 +- .../definitions/expected/schema-ref.json.json | 360 +++-- .../expected/string-format.json.json | 60 +- .../expected/string-schema.json.json | 168 +- .../expected/types-schema.json.json | 84 +- .../expected/xmlObject-schema.json.json | 60 +- .../examples/expected/array-example.json.json | 4 +- .../expected/array-obj-example-arr.json.json | 12 +- .../expected/array-obj-example.json.json | 4 +- .../examples/expected/empty-example.json.json | 4 +- .../expected/object-example.json.json | 12 +- .../expected/string-example.json.json | 4 +- .../json/info/expected/info-contact.json.json | 36 +- .../expected/info-version-with-body.json.json | 12 +- .../info-with-parameters-node.json.json | 24 +- .../json/info/expected/info.json.json | 72 +- .../bymethod/expected/delete.json.json | 192 ++- .../bymethod/expected/get.json.json | 192 ++- .../bymethod/expected/head.json.json | 192 ++- .../bymethod/expected/options.json.json | 192 ++- .../bymethod/expected/patch.json.json | 192 ++- .../bymethod/expected/post.json.json | 192 ++- .../bymethod/expected/put.json.json | 192 ++- .../expected/consumes-array.json.json | 120 +- .../operations/expected/consumes.json.json | 120 +- .../operations/expected/deprecated.json.json | 24 +- .../expected/external-docs.json.json | 24 +- .../expected/parameter-array.json.json | 264 ++- .../expected/parameter-ref.json.json | 252 ++- .../operations/expected/parameter.json.json | 4 +- .../expected/produces-array.json.json | 120 +- .../operations/expected/produces.json.json | 120 +- .../expected/reponses-quoted.json.json | 840 +++++++--- .../operations/expected/reponses.json.json | 840 +++++++--- .../expected/schemes-array.json.json | 48 +- .../operations/expected/schemes.json.json | 48 +- .../expected/security-array-named.json.json | 4 +- .../expected/security-array.json.json | 12 +- .../security-name-not-array.json.json | 4 +- .../operations/expected/security.json.json | 4 +- .../operations/expected/tags-array.json.json | 12 +- .../json/operations/expected/tags.json.json | 4 +- .../parameters/expected/bindings.json.json | 60 +- ...lared-array-with-follow-up-entry.json.json | 12 +- .../expected/declared-inBody.json.json | 60 +- .../expected/declared-inForm.json.json | 252 ++- .../declared-inHeader-with-type.json.json | 228 ++- .../expected/declared-inHeader.json.json | 240 ++- .../expected/declared-inPath.json.json | 240 ++- .../declared-inQuery-params.json.json | 24 +- .../expected/declared-inQuery.json.json | 252 ++- .../expected/declared-named.json.json | 264 ++- .../parameters/expected/declared.json.json | 4 +- .../expected/operation-inBody.json.json | 60 +- ...ath-inBody-with-follow-up-letter.json.json | 24 +- .../parameters/expected/path-inBody.json.json | 60 +- .../expected/two-invalids.json.json | 12 +- .../paths/expected/parameter-array.json.json | 264 ++- .../paths/expected/parameter-ref.json.json | 84 +- .../json/paths/expected/parameter.json.json | 4 +- .../json/paths/expected/path-ref.json.json | 72 +- .../json/paths/expected/path.json.json | 288 +++- .../json/paths/expected/paths.json.json | 4 +- .../response-declaration-named.json.json | 60 +- .../expected/response-declaration.json.json | 840 +++++++--- .../expected/response-example.json.json | 4 +- .../expected/response-examples.json.json | 120 +- .../expected/response-header.json.json | 264 ++- .../expected/response-headers.json.json | 1416 ++++++++++++----- .../responses/expected/response-ref.json.json | 132 +- .../expected/response-schema-ref.json.json | 132 +- .../expected/response-schema.json.json | 168 +- .../responses/expected/response.json.json | 84 +- .../expected/security-apiKey-in.json.json | 24 +- .../expected/security-apiKey-scheme.json.json | 12 +- .../expected/security-apiKey.json.json | 36 +- .../expected/security-declaration.json.json | 36 +- .../expected/security-declarations.json.json | 4 +- .../expected/security-oauth2-flow.json.json | 48 +- ...ecurity-oauth2-scheme-withScopes.json.json | 12 +- ...rity-oauth2-scheme-withoutScopes.json.json | 12 +- .../expected/security-oauth2-scope.json.json | 4 +- .../expected/security-oauth2-scopes.json.json | 4 +- .../expected/security-oauth2.json.json | 60 +- .../expected/security-scheme.json.json | 4 +- .../expected/security-type.json.json | 36 +- .../expected/after-map-token.json.json | 72 +- .../expected/map-inside-seq.json.json | 12 +- .../expected/tuple-shape.json.json | 12 +- .../expected/quotation-booleans.json.json | 12 +- .../json/style/expected/quotation.json.json | 84 +- .../expected/consumes-array.json.json | 120 +- .../top-level/expected/consumes.json.json | 120 +- .../expected/encodes-unquoted.json.json | 204 ++- .../json/top-level/expected/encodes.json.json | 204 ++- .../expected/oas2-with-externaldocs.json.json | 24 +- .../json/top-level/expected/oas2.json.json | 12 +- .../expected/produces-array.json.json | 120 +- .../top-level/expected/produces.json.json | 120 +- .../expected/schemes-array.json.json | 48 +- .../json/top-level/expected/schemes.json.json | 48 +- .../security-array-name-not-oauth.json.json | 4 +- .../expected/security-array-name.json.json | 4 +- .../expected/security-array.json.json | 12 +- .../security-name-not-array.json.json | 4 +- .../top-level/expected/security.json.json | 12 +- .../top-level/expected/tags-array.json.json | 36 +- .../json/top-level/expected/tags.json.json | 4 +- .../expected/array-schema.yml.json | 180 ++- .../expected/boolean-format.yml.json | 4 +- ...definition-name-after-declaration.yml.json | 12 +- .../expected/definition-name.yml.json | 12 +- .../definitions/expected/definition.yml.json | 168 +- .../definitions/expected/definitios.yml.json | 12 +- .../expected/externalDocs-schema.yml.json | 24 +- .../expected/integer-format.yml.json | 24 +- .../expected/items-schema.yml.json | 168 +- .../expected/number-format.yml.json | 48 +- .../expected/number-schema.yml.json | 192 ++- .../expected/object-schema.yml.json | 180 ++- .../expected/properties-schema.yml.json | 4 +- .../expected/property-schema.yml.json | 168 +- .../expected/readOnly-properties.yml.json | 24 +- ...required-properties-name-existing.yml.json | 24 +- .../required-properties-name.yml.json | 36 +- .../expected/schema-path-nav-two.yml.json | 12 +- .../schema-path-nav-withoutbar.yml.json | 12 +- .../expected/schema-path-nav.yml.json | 12 +- .../expected/schema-ref-comment.yml.json | 12 +- .../schema-ref-separator-two.yml.json | 12 +- .../expected/schema-ref-separator.yml.json | 12 +- .../definitions/expected/schema-ref.yml.json | 360 +++-- .../expected/string-format.yml.json | 60 +- .../expected/string-schema.yml.json | 168 +- .../expected/types-schema.yml.json | 84 +- .../expected/xmlObject-schema.yml.json | 60 +- .../examples/expected/array-example.yml.json | 4 +- .../expected/array-obj-example-arr.yml.json | 12 +- .../expected/array-obj-example.yml.json | 4 +- .../examples/expected/empty-example.yml.json | 4 +- .../examples/expected/object-example.yml.json | 12 +- .../examples/expected/string-example.yml.json | 4 +- .../yaml/info/expected/info-contact.yml.json | 36 +- .../yaml/info/expected/info-license.yml.json | 24 +- .../expected/info-version-with-body.yml.json | 12 +- .../info-with-parameters-node.yml.json | 24 +- .../yaml/info/expected/info.yml.json | 72 +- .../bymethod/expected/delete.yml.json | 192 ++- .../operations/bymethod/expected/get.yml.json | 192 ++- .../bymethod/expected/head.yml.json | 192 ++- .../bymethod/expected/options.yml.json | 192 ++- .../bymethod/expected/patch.yml.json | 192 ++- .../bymethod/expected/post.yml.json | 192 ++- .../operations/bymethod/expected/put.yml.json | 192 ++- .../expected/consumes-array.yml.json | 120 +- .../operations/expected/consumes.yml.json | 120 +- .../operations/expected/deprecated.yml.json | 24 +- .../expected/external-docs.yml.json | 24 +- .../expected/parameter-array.yml.json | 264 ++- .../expected/parameter-ref.yml.json | 252 ++- .../operations/expected/parameter.yml.json | 4 +- .../expected/produces-array.yml.json | 120 +- .../operations/expected/produces.yml.json | 120 +- .../expected/reponses-quoted.yml.json | 840 +++++++--- .../operations/expected/reponses.yml.json | 840 +++++++--- .../expected/schemes-array.yml.json | 48 +- .../yaml/operations/expected/schemes.yml.json | 48 +- .../expected/security-array-named.yml.json | 4 +- .../expected/security-array.yml.json | 12 +- .../expected/security-name-not-array.yml.json | 4 +- .../operations/expected/security.yml.json | 4 +- .../operations/expected/tags-array.yml.json | 12 +- .../yaml/operations/expected/tags.yml.json | 4 +- .../parameters/expected/bindings.yml.json | 60 +- ...clared-array-with-follow-up-entry.yml.json | 24 +- .../expected/declared-inBody.yml.json | 60 +- .../expected/declared-inForm.yml.json | 252 ++- .../declared-inHeader-with-type.yml.json | 228 ++- .../expected/declared-inHeader.yml.json | 240 ++- .../expected/declared-inPath.yml.json | 240 ++- .../expected/declared-inQuery-params.yml.json | 24 +- .../expected/declared-inQuery.yml.json | 252 ++- .../expected/declared-named.yml.json | 264 ++- .../parameters/expected/declared.yml.json | 12 +- .../expected/operation-inBody.yml.json | 60 +- ...path-inBody-with-follow-up-letter.yml.json | 24 +- .../parameters/expected/path-inBody.yml.json | 60 +- .../parameters/expected/two-invalids.yml.json | 12 +- .../paths/expected/parameter-array.yml.json | 264 ++- .../paths/expected/parameter-ref.yml.json | 96 +- .../yaml/paths/expected/parameter.yml.json | 4 +- .../yaml/paths/expected/path-ref.yml.json | 84 +- .../yaml/paths/expected/path.yml.json | 288 +++- .../yaml/paths/expected/paths.yml.json | 4 +- .../response-declaration-named.yml.json | 60 +- .../expected/response-declaration.yml.json | 852 +++++++--- .../expected/response-example.yml.json | 4 +- .../expected/response-examples.yml.json | 120 +- .../expected/response-header.yml.json | 264 ++- .../expected/response-headers.yml.json | 1416 ++++++++++++----- .../responses/expected/response-ref.yml.json | 132 +- .../expected/response-schema-ref.yml.json | 132 +- .../expected/response-schema.yml.json | 168 +- .../yaml/responses/expected/response.yml.json | 84 +- .../expected/security-apiKey-in.yml.json | 24 +- .../expected/security-apiKey-scheme.yml.json | 12 +- .../expected/security-apiKey.yml.json | 36 +- .../expected/security-declaration.yml.json | 36 +- .../expected/security-declarations.yml.json | 12 +- .../expected/security-oauth2-flow.yml.json | 48 +- ...security-oauth2-scheme-withScopes.yml.json | 12 +- ...urity-oauth2-scheme-withoutScopes.yml.json | 12 +- .../expected/security-oauth2-scope.yml.json | 4 +- .../expected/security-oauth2-scopes.yml.json | 4 +- .../expected/security-oauth2.yml.json | 60 +- .../expected/security-scheme.yml.json | 4 +- .../expected/security-type.yml.json | 36 +- .../expected/after-map-token.yml.json | 4 +- .../expected/map-inside-seq.yml.json | 12 +- .../expected/tuple-shape.yml.json | 12 +- .../expected/quotation-booleans.yml.json | 12 +- .../yaml/style/expected/quotation.yml.json | 84 +- .../expected/consumes-array.yml.json | 120 +- .../yaml/top-level/expected/consumes.yml.json | 120 +- .../expected/encodes-unquoted.yml.json | 204 ++- .../yaml/top-level/expected/encodes.yml.json | 204 ++- .../expected/oas2-with-externaldocs.yml.json | 24 +- .../yaml/top-level/expected/oas2.yml.json | 12 +- .../expected/produces-array.yml.json | 120 +- .../yaml/top-level/expected/produces.yml.json | 120 +- .../top-level/expected/schemes-array.yml.json | 48 +- .../yaml/top-level/expected/schemes.yml.json | 48 +- .../security-array-name-not-oauth.yml.json | 4 +- .../expected/security-array-name.yml.json | 4 +- .../expected/security-array.yml.json | 12 +- .../expected/security-name-not-array.yml.json | 4 +- .../yaml/top-level/expected/security.yml.json | 4 +- .../top-level/expected/tags-array.yml.json | 36 +- .../yaml/top-level/expected/tags.yml.json | 4 +- .../expected/map-with-brothers.json.json | 312 +++- .../custom/path-json/expected/api.json.json | 24 +- .../path-suggestion/expected/api.json.json | 12 +- .../expected/callbacks-ref.json.json | 36 +- .../callbacks/expected/callbacks.json.json | 360 +++-- .../examples/expected/examples-ref.json.json | 36 +- .../examples/expected/examples.json.json | 60 +- .../components/expected/components.json.json | 108 +- .../headers/expected/headers-ref.json.json | 36 +- .../headers/expected/headers.json.json | 144 +- .../links/expected/links-ref.json.json | 36 +- .../components/links/expected/links.json.json | 96 +- .../expected/cookie-style.json.json | 12 +- .../expected/header-style.json.json | 12 +- ...parameter-name-after-declaration.json.json | 4 +- .../expected/parameter-name.json.json | 4 +- .../expected/parameters-ref.json.json | 120 +- .../parameters/expected/parameters.json.json | 168 +- .../parameters/expected/path-style.json.json | 36 +- .../parameters/expected/query-style.json.json | 48 +- .../parameters/expected/style.json.json | 84 +- .../expected/request-body-ref.json.json | 36 +- .../expected/request-body.json.json | 48 +- .../response-name-after-declaration.json.json | 900 ++++++++--- .../expected/response-name.json.json | 900 ++++++++--- .../expected/responses-ref.json.json | 60 +- .../responses/expected/responses.json.json | 60 +- .../expected/all-of-schema.json.json | 228 ++- .../expected/any-of-schema.json.json | 228 ++- .../expected/discriminator-body.json.json | 24 +- .../discriminator-mapping-value.json.json | 24 +- .../expected/discriminator-mapping.json.json | 4 +- .../expected/one-of-schema.json.json | 228 ++- .../schemas/expected/array-schema.json.json | 240 ++- .../schemas/expected/boolean-format.json.json | 4 +- .../expected/external-docs-schema.json.json | 24 +- .../schemas/expected/integer-format.json.json | 24 +- .../schemas/expected/items-schema.json.json | 240 ++- .../schemas/expected/number-format.json.json | 48 +- .../schemas/expected/number-schema.json.json | 264 ++- .../schemas/expected/object-schema.json.json | 240 ++- .../expected/properties-schema.json.json | 4 +- .../expected/property-schema.json.json | 240 ++- ...equired-properties-name-existing.json.json | 24 +- .../required-properties-name.json.json | 36 +- .../schema-name-after-declaration.json.json | 4 +- .../schemas/expected/schema-name.json.json | 4 +- .../expected/schema-path-nav-two.json.json | 12 +- .../schema-path-nav-withoutbar.json.json | 12 +- .../expected/schema-path-nav.json.json | 12 +- .../expected/schema-ref-comment.json.json | 12 +- .../schema-ref-separator-two.json.json | 12 +- .../expected/schema-ref-separator.json.json | 12 +- .../schemas/expected/schemas-ref.json.json | 348 +++- .../schemas/expected/schemas.json.json | 240 ++- .../schemas/expected/string-format.json.json | 60 +- .../schemas/expected/string-schema.json.json | 240 ++- .../schemas/expected/types-schema.json.json | 84 +- .../expected/xml-object-schema.json.json | 60 +- ...ty-scheme-name-after-declaration.json.json | 4 +- .../expected/security-scheme-name.json.json | 4 +- .../expected/security-schemes.json.json | 36 +- .../flows/expected/flows.json.json | 48 +- .../flows-authorizationCode.json.json | 48 +- .../flows-clientCredentials.json.json | 48 +- .../expected/flows-implicit.json.json | 48 +- .../expected/flows-password.json.json | 48 +- .../scopes/expected/scopes.json.json | 12 +- .../type/expected/apiKey-facets.json.json | 36 +- .../type/expected/apiKey-in-facet.json.json | 36 +- .../type/expected/http-facets.json.json | 36 +- .../type/expected/oauth2-facets.json.json | 24 +- .../expected/openIdConnect-facets.json.json | 24 +- .../type/expected/type.json.json | 48 +- .../expected/array-example.json.json | 4 +- .../expected/array-obj-example-arr.json.json | 12 +- .../expected/array-obj-example.json.json | 4 +- .../expected/empty-example.json.json | 4 +- .../expected/object-example.json.json | 12 +- .../expected/string-example.json.json | 4 +- .../open-api-document/expected/root.json.json | 132 +- .../expected/external-docs.json.json | 24 +- .../info/contact/expected/contact.json.json | 36 +- .../info/expected/info.json.json | 72 +- .../info/license/expected/license.json.json | 24 +- .../paths/expected/paths.json.json | 4 +- .../expected/path-object.json.json | 360 +++-- .../expected/callback-inside.json.json | 360 +++-- .../expected/deprecated-as-boolean.json.json | 24 +- .../expected/deprecated-as-string.json.json | 24 +- .../operation/expected/operation.json.json | 204 ++- .../expected/external-docs.json.json | 24 +- .../media-type/expected/media-type.json.json | 60 +- .../expected/content-example.json.json | 24 +- .../content-media-type-filter.json.json | 120 +- .../expected/content-media-type.json.json | 132 +- .../expected/response-code.json.json | 900 ++++++++--- .../responses/expected/response.json.json | 60 +- .../responses/links/expected/links.json.json | 96 +- .../expected/parameters-request.json.json | 168 +- .../parameters/expected/parameters.json.json | 4 +- .../security/expected/security.json.json | 12 +- .../expected/variables-key-url.json.json | 36 +- .../expected/parameter-binding.json.json | 48 +- .../expected/parameter-header.json.json | 144 +- .../parameters/expected/parameters.json.json | 168 +- .../expected/security-apiKey.json.json | 12 +- .../expected/security-array.json.json | 4 +- .../security-oauth2-withScopes.json.json | 12 +- .../security-oauth2-withoutScopes.json.json | 12 +- .../security-openId-withScopes.json.json | 12 +- .../security-openId-withoutScopes.json.json | 12 +- .../expected/security-openId.json.json | 12 +- .../expected/security-scheme.json.json | 4 +- .../security/expected/security.json.json | 12 +- .../tags/expected/tags.json.json | 36 +- .../expected/runtime-callbacks.json.json | 60 +- .../runtime-inside-string-not-ended.json.json | 4 +- .../expected/runtime-inside-string.json.json | 60 +- ...runtime-only-expression-no-curly.json.json | 4 +- ...ression-request-no-close-bracket.json.json | 60 +- .../runtime-only-expression-request.json.json | 60 +- .../expected/runtime-request-body.json.json | 4 +- .../expected/no-full-option.yaml-BOTH.json | 24 +- .../expected/no-full-option.yaml-FULL.json | 24 +- .../expected/no-full-option.yaml-SIMPLE.json | 24 +- .../expected/responses.yaml-BOTH.json | 36 +- .../expected/responses.yaml-FULL.json | 24 +- .../expected/responses.yaml-SIMPLE.json | 24 +- .../expected/map-with-brothers.yaml.json | 312 +++- .../custom/path-json/expected/api.yaml.json | 24 +- .../path-suggestion/expected/api.yaml.json | 12 +- .../expected/callbacks-ref.yaml.json | 36 +- .../callbacks/expected/callbacks.yaml.json | 360 +++-- .../examples/expected/examples-ref.yaml.json | 36 +- .../examples/expected/examples.yaml.json | 60 +- .../components/expected/components.yaml.json | 108 +- .../headers/expected/headers-ref.yaml.json | 36 +- .../headers/expected/headers.yaml.json | 144 +- .../links/expected/links-ref.yaml.json | 36 +- .../components/links/expected/links.yaml.json | 96 +- .../expected/cookie-style.yaml.json | 12 +- .../expected/header-style.yaml.json | 12 +- ...parameter-name-after-declaration.yaml.json | 12 +- .../expected/parameter-name.yaml.json | 12 +- .../expected/parameters-ref.yaml.json | 120 +- .../parameters/expected/parameters.yaml.json | 168 +- .../parameters/expected/path-style.yaml.json | 36 +- .../parameters/expected/query-style.yaml.json | 48 +- .../parameters/expected/style.yaml.json | 84 +- .../expected/request-body-ref.yaml.json | 36 +- .../expected/request-body.yaml.json | 48 +- .../response-name-after-declaration.yaml.json | 912 ++++++++--- .../expected/response-name.yaml.json | 912 ++++++++--- .../expected/responses-ref.yaml.json | 60 +- .../responses/expected/responses.yaml.json | 60 +- .../expected/all-of-schema.yaml.json | 228 ++- .../expected/any-of-schema.yaml.json | 228 ++- .../expected/discriminator-body.yaml.json | 24 +- .../discriminator-mapping-value.yaml.json | 24 +- .../expected/discriminator-mapping.yaml.json | 4 +- .../expected/one-of-schema.yaml.json | 228 ++- .../schemas/expected/array-schema.yaml.json | 240 ++- .../schemas/expected/boolean-format.yaml.json | 4 +- .../expected/external-docs-schema.yaml.json | 24 +- .../schemas/expected/integer-format.yaml.json | 24 +- .../schemas/expected/items-schema.yaml.json | 240 ++- .../schemas/expected/number-format.yaml.json | 48 +- .../schemas/expected/number-schema.yaml.json | 264 ++- .../schemas/expected/object-schema.yaml.json | 240 ++- .../expected/properties-schema.yaml.json | 4 +- .../expected/property-schema.yaml.json | 240 ++- ...equired-properties-name-existing.yaml.json | 24 +- .../required-properties-name.yaml.json | 36 +- .../schema-name-after-declaration.yaml.json | 12 +- .../schemas/expected/schema-name.yaml.json | 12 +- .../expected/schema-path-nav-two.yaml.json | 12 +- .../schema-path-nav-withoutbar.yaml.json | 12 +- .../expected/schema-path-nav.yaml.json | 12 +- .../expected/schema-ref-comment.yaml.json | 12 +- .../schema-ref-separator-two.yaml.json | 12 +- .../expected/schema-ref-separator.yaml.json | 12 +- .../schemas/expected/schemas-ref.yaml.json | 348 +++- .../schemas/expected/schemas.yaml.json | 240 ++- .../schemas/expected/string-format.yaml.json | 60 +- .../schemas/expected/string-schema.yaml.json | 240 ++- .../schemas/expected/types-schema.yaml.json | 84 +- .../expected/xml-object-schema.yaml.json | 60 +- ...ty-scheme-name-after-declaration.yaml.json | 12 +- .../expected/security-scheme-name.yaml.json | 12 +- .../expected/security-schemes.yaml.json | 36 +- .../flows/expected/flows.yaml.json | 48 +- .../flows-authorizationCode.yaml.json | 48 +- .../flows-clientCredentials.yaml.json | 48 +- .../expected/flows-implicit.yaml.json | 48 +- .../expected/flows-password.yaml.json | 48 +- .../scopes/expected/scopes.yaml.json | 12 +- .../type/expected/apiKey-facets.yaml.json | 36 +- .../type/expected/apiKey-in-facet.yaml.json | 36 +- .../type/expected/http-facets.yaml.json | 36 +- .../type/expected/oauth2-facets.yaml.json | 24 +- .../expected/openIdConnect-facets.yaml.json | 24 +- .../type/expected/type.yaml.json | 48 +- .../expected/array-example.yaml.json | 4 +- .../expected/array-obj-example-arr.yaml.json | 12 +- .../expected/array-obj-example.yaml.json | 4 +- .../expected/empty-example.yaml.json | 4 +- .../expected/object-example.yaml.json | 12 +- .../expected/string-example.yaml.json | 4 +- .../open-api-document/expected/root.yaml.json | 132 +- .../expected/external-docs.yaml.json | 24 +- .../info/contact/expected/contact.yaml.json | 36 +- .../info/expected/info.yaml.json | 72 +- .../info/license/expected/license.yaml.json | 24 +- .../paths/expected/paths.yaml.json | 4 +- .../expected/path-object.yaml.json | 360 +++-- .../expected/callback-inside.yaml.json | 360 +++-- .../expected/deprecated-as-boolean.yaml.json | 24 +- .../expected/deprecated-as-string.yaml.json | 24 +- .../operation/expected/operation.yaml.json | 204 ++- .../expected/external-docs.yaml.json | 24 +- .../content/expected/content.yaml.json | 132 +- .../expected/encoding-object.yaml.json | 60 +- .../encoding/expected/encoding.yaml.json | 24 +- .../examples/expected/examples.yaml.json | 60 +- .../media-type/expected/media-type.yaml.json | 60 +- .../schema/expected/schema.yaml.json | 240 ++- .../parameters/expected/parameters.yaml.json | 168 +- .../schema/expected/schema.yaml.json | 240 ++- .../expected/request-body.yaml.json | 48 +- .../expected/content-example.yaml.json | 24 +- .../content-media-type-filter.yaml.json | 120 +- .../expected/content-media-type.yaml.json | 132 +- .../expected/response-code.yaml.json | 900 ++++++++--- .../responses/expected/response.yaml.json | 60 +- .../responses/links/expected/links.yaml.json | 96 +- .../expected/parameters-request.yaml.json | 168 +- .../parameters/expected/parameters.yaml.json | 4 +- .../security/expected/security.yaml.json | 4 +- .../servers/expected/servers.yaml.json | 36 +- .../expected/variables-key-url.yaml.json | 36 +- .../expected/variables-key.yaml.json | 4 +- .../expected/variables-value.yaml.json | 36 +- .../expected/parameter-binding.yaml.json | 48 +- .../expected/parameter-header.yaml.json | 144 +- .../parameters/expected/parameters.yaml.json | 168 +- .../servers/expected/servers.yaml.json | 36 +- .../expected/security-apiKey.yaml.json | 12 +- .../expected/security-array.yaml.json | 12 +- .../security-oauth2-withScopes.yaml.json | 12 +- .../security-oauth2-withoutScopes.yaml.json | 12 +- .../security-openId-withScopes.yaml.json | 12 +- .../security-openId-withoutScopes.yaml.json | 12 +- .../expected/security-openId.yaml.json | 12 +- .../expected/security-scheme.yaml.json | 4 +- .../security/expected/security.yaml.json | 4 +- .../servers/expected/servers-array.yaml.json | 36 +- .../tags/expected/tags.yaml.json | 36 +- .../expected/runtime-callbacks.yaml.json | 60 +- .../runtime-inside-string-not-ended.yaml.json | 4 +- .../expected/runtime-inside-string.yaml.json | 60 +- ...runtime-only-expression-no-curly.yaml.json | 4 +- ...ression-request-no-close-bracket.yaml.json | 60 +- .../runtime-only-expression-request.yaml.json | 60 +- .../expected/runtime-request-body.yaml.json | 4 +- .../endpoints/expected/endpoint.raml.json | 168 +- .../endpoints/expected/nested.raml.json | 168 +- .../expected/uri-parameter-nested.raml.json | 24 +- .../expected/uri-parameter-props.raml.json | 84 +- .../expected/uri-parameter.raml.json | 12 +- .../include-tag/expected/tag.raml.json | 12 +- .../body-media-type-existing.raml.json | 12 +- .../body-media-type-expanded.raml.json | 12 +- .../expected/body-media-type.raml.json | 4 +- .../body-parameters-type-array.raml.json | 84 +- .../expected/body-parameters-type.raml.json | 72 +- .../expected/body-parameters.raml.json | 84 +- .../operation/expected/body.raml.json | 24 +- .../operation/expected/header-name.raml.json | 1416 ++++++++++++----- .../operation/expected/header.raml.json | 84 +- .../expected/operation-protocol.raml.json | 24 +- .../operation/expected/operation.raml.json | 108 +- .../expected/protocols-array.raml.json | 24 +- .../operation/expected/protocols.raml.json | 24 +- .../expected/query-parameter-name.raml.json | 4 +- .../expected/query-parameter.raml.json | 84 +- ...sponse-body-media-type-exapanded.raml.json | 12 +- ...esponse-body-media-type-existing.raml.json | 12 +- ...e-body-media-type-form-exapanded.raml.json | 24 +- .../expected/response-body.raml.json | 24 +- .../expected/response-codes.raml.json | 828 +++++++--- .../expected/response-headers.raml.json | 84 +- .../operation/expected/response.raml.json | 36 +- .../operation/expected/schema-type.raml.json | 4 +- .../expected/securedBy-in-line.raml.json | 12 +- .../expected/securedBy-next-line.raml.json | 12 +- .../authorization-grants-array.raml.json | 48 +- .../expected/authorization-grants.raml.json | 48 +- .../endpoint-secured-by-array.raml.json | 24 +- .../expected/endpoint-secured-by.raml.json | 4 +- .../expected/oauth2-securityScheme.raml.json | 24 +- .../security/expected/scopes-oauth2.raml.json | 4 +- .../expected/secured-by-array.raml.json | 24 +- .../security/expected/secured-by.raml.json | 4 +- .../security-schemes-facets.raml.json | 48 +- .../expected/security-schemes.raml.json | 60 +- .../base-uri-parameter-with-prefix.raml.json | 24 +- .../expected/base-uri-parameter.raml.json | 132 +- .../expected/base-uri-parameters.raml.json | 12 +- .../expected/documentation-array.raml.json | 24 +- .../expected/documentation.raml.json | 24 +- .../top-level/expected/empty-header.raml.json | 12 +- .../top-level/expected/empty.raml.json | 14 +- .../expected/external-continue.raml.json | 4 +- .../expected/external-inline.raml.json | 4 +- .../top-level/expected/media-type.raml.json | 24 +- .../expected/protocols-array.raml.json | 24 +- .../top-level/expected/protocols.raml.json | 24 +- .../top-level/expected/root.raml.json | 156 +- .../top-level/expected/schemas.raml.json | 4 +- .../top-level/expected/uses.raml.json | 4 +- .../expected/alias-from-library.raml.json | 12 +- .../expected/at-description.raml.json | 24 +- .../expected/at-endpoint.raml.json | 168 +- .../expected/at-operation.raml.json | 132 +- .../expected/at-response.raml.json | 48 +- .../annotations/expected/at-root.raml.json | 192 ++- .../annotations/expected/at-type.raml.json | 144 +- ...declaration-allowed-targets-flow.raml.json | 204 ++- .../declaration-allowed-targets.raml.json | 204 ++- .../expected/declaration-inline.raml.json | 156 +- .../expected/declaration-names.raml.json | 4 +- .../declaration-with-prefix-d.raml.json | 36 +- .../declaration-with-prefix-m.raml.json | 4 +- .../expected/declaration.raml.json | 180 ++- .../expected/from-library.raml.json | 12 +- .../expected/resourcetypes-inline.raml.json | 12 +- .../expected/resourcetypes.raml.json | 24 +- .../duplicated/expected/traits.raml.json | 24 +- .../expected/api.raml.json | 24 +- .../expected/inline-before-bracket.raml.json | 4 +- .../expected/inlined-inside-bracket.raml.json | 24 +- .../inlined-outside-bracket.raml.json | 4 +- .../expected/inside-at-enum.raml.json | 24 +- .../expected/inside-security-facet.raml.json | 48 +- .../expected/outside-at-enum.raml.json | 4 +- .../expected/outside-enum-populated.raml.json | 4 +- .../expected/outside-security-facet.raml.json | 4 +- .../expected/multiple-operations.raml.json | 144 +- .../expected/api-without-colon.raml.json | 4 +- .../expected/api-without-key.raml.json | 132 +- .../expected/api.raml.json | 4 +- .../expected/api-trait-include.raml.json | 48 +- .../expected/api-trait-inlined.raml.json | 48 +- .../path-suggestion/expected/api.raml.json | 12 +- .../expected/double-slash.raml.json | 60 +- .../root-cases/expected/root0.raml.json | 132 +- .../root-cases/expected/root1.raml.json | 132 +- .../root-cases/expected/root2.raml.json | 132 +- .../root-cases/expected/root3.raml.json | 132 +- .../root-cases/expected/root4.raml.json | 132 +- .../root-cases/expected/root5.raml.json | 132 +- .../expected/dot-prefix-01.raml.json | 4 +- .../expected/dot-prefix-02.raml.json | 4 +- .../expected/dot-prefix-03.raml.json | 60 +- .../expected/dot-prefix-04.raml.json | 60 +- .../expected/description.raml.json | 12 +- .../endpoints/expected/endpoint.raml.json | 156 +- .../endpoints/expected/nested.raml.json | 156 +- .../endpoints/expected/second-mime.raml.json | 12 +- .../expected/uri-parameter-nested.raml.json | 24 +- .../expected/uri-parameter-props.raml.json | 144 +- .../expected/uri-parameter.raml.json | 12 +- ...complex-object-type-with-bracket.raml.json | 24 +- .../array-complex-object-type.raml.json | 24 +- .../example/expected/array-expanded.raml.json | 48 +- .../expected/array-object-well.raml.json | 24 +- .../example/expected/array-object.raml.json | 48 +- .../example/expected/array.raml.json | 4 +- .../expected/object-expanded.raml.json | 72 +- .../object-inheritance-two-levels.raml.json | 36 +- .../expected/object-prop-value.raml.json | 4 +- .../object-withprop-two-level.raml.json | 24 +- .../expected/object-withprop.raml.json | 12 +- .../example/expected/object.raml.json | 4 +- ...properties-with-colon-with-value.raml.json | 24 +- ...roperties-with-colon-without-key.raml.json | 24 +- .../expected/properties-with-colon.raml.json | 24 +- ...roperties-with-key-without-colon.raml.json | 24 +- .../example/expected/scalar.raml.json | 4 +- .../expected/with-explicit-value.raml.json | 36 +- .../fragments/expected/annotation.raml.json | 192 ++- .../expected/data-type-properties.raml.json | 156 +- .../expected/data-type-uses.raml.json | 288 +++- .../fragments/expected/data-type.raml.json | 180 ++- .../documentation-item-uses.raml.json | 288 +++- .../expected/documentation-item.raml.json | 36 +- .../expected/extension-extends.raml.json | 288 +++- .../fragments/expected/extension.raml.json | 216 ++- .../expected/include-annotation.raml.json | 288 +++- .../expected/include-data-type.raml.json | 288 +++- .../expected/include-named-example.raml.json | 288 +++- .../expected/include-resource-type.raml.json | 288 +++- .../include-security-scheme.raml.json | 288 +++- .../expected/include-trait.raml.json | 288 +++- .../expected/named-example-uses.raml.json | 4 +- .../expected/named-example.raml.json | 4 +- .../expected/overlay-extends.raml.json | 288 +++- .../fragments/expected/overlay.raml.json | 216 ++- .../expected/resource-type-uses.raml.json | 288 +++- .../expected/resource-type.raml.json | 180 ++- .../expected/security-scheme-uses.raml.json | 288 +++- .../expected/security-scheme.raml.json | 60 +- .../fragments/expected/trait.raml.json | 144 +- .../expected/description.raml.json | 12 +- .../include-tag/expected/endpoint.raml.json | 12 +- .../include-tag/expected/operation.raml.json | 12 +- .../include-tag/expected/response.raml.json | 12 +- .../include-tag/expected/responses.raml.json | 12 +- .../expected/aliased-complete-ref.raml.json | 12 +- .../libraries/expected/aliased-ref.raml.json | 168 +- .../libraries/expected/library-root.raml.json | 84 +- .../libraries/expected/library-uses.raml.json | 84 +- .../libraries/expected/uses-alias.raml.json | 4 +- .../libraries/expected/uses.raml.json | 84 +- .../expected/mediaType01.raml.json | 24 +- .../expected/mediaType02.raml.json | 12 +- .../expected/mediaType03.raml.json | 24 +- .../expected/mediaType04.raml.json | 12 +- .../expected/mediaType05.raml.json | 156 +- .../expected/mediaType06.raml.json | 24 +- .../expected/mediaType07.raml.json | 4 +- .../expected/array-expanded.raml.json | 48 +- .../expected/array-object-well.raml.json | 24 +- .../expected/array-object.raml.json | 4 +- .../named-examples/expected/array.raml.json | 4 +- .../expected/object-expanded.raml.json | 72 +- .../expected/object-prop-value.raml.json | 4 +- .../expected/object-withprop.raml.json | 12 +- .../named-examples/expected/object.raml.json | 72 +- .../expected/scalar-name.raml.json | 4 +- .../named-examples/expected/scalar.raml.json | 4 +- .../body-media-type-existing.raml.json | 12 +- .../body-media-type-expanded.raml.json | 132 +- .../expected/body-media-type.raml.json | 168 +- .../operation/expected/body.raml.json | 156 +- .../expected/header-inlined.raml.json | 168 +- .../operation/expected/header-name.raml.json | 1416 ++++++++++++----- .../operation/expected/header.raml.json | 144 +- .../operation-with-body-defined.raml.json | 108 +- .../operation/expected/operation.raml.json | 120 +- .../query-parameter-name-started.raml.json | 4 +- .../expected/query-parameter-name.raml.json | 4 +- .../expected/query-parameter.raml.json | 144 +- .../operation/expected/query-string.raml.json | 168 +- ...sponse-body-media-type-exapanded.raml.json | 132 +- ...esponse-body-media-type-existing.raml.json | 12 +- .../response-body-media-type.raml.json | 156 +- .../expected/response-body.raml.json | 156 +- .../expected/response-codes.raml.json | 828 +++++++--- .../expected/response-headers.raml.json | 144 +- .../operation/expected/response.raml.json | 36 +- .../expected/securedBy-in-line.raml.json | 24 +- .../expected/securedBy-next-line.raml.json | 24 +- .../expected/definition-link.raml.json | 12 +- ...efinition-name-after-declaration.raml.json | 4 +- .../expected/definition-name.raml.json | 4 +- .../definition-operation-level.raml.json | 120 +- .../expected/definition.raml.json | 168 +- .../expected/reference-map.raml.json | 12 +- .../expected/reference.raml.json | 12 +- .../variables-reference-filter.raml.json | 12 +- .../variables-reference-value.raml.json | 4 +- .../expected/variables-reference.raml.json | 24 +- .../with-variables-reference-inline.raml.json | 4 +- .../with-variables-reference.raml.json | 12 +- ...thout-variables-reference-inline.raml.json | 12 +- .../expected/key-var-function.raml.json | 72 +- .../expected/key-var.raml.json | 36 +- .../expected/value-var-function.raml.json | 72 +- .../expected/value-var-posfix.raml.json | 36 +- .../expected/value-var.raml.json | 36 +- .../expected/basic-facets.raml.json | 36 +- ...claration-name-after-declaration.raml.json | 12 +- .../expected/declaration-name.raml.json | 12 +- .../expected/declaration.raml.json | 48 +- .../expected/describedBy.raml.json | 48 +- .../expected/oauth1-facets.raml.json | 48 +- .../oauth1-settings-signature.raml.json | 36 +- .../expected/oauth1-settings.raml.json | 48 +- .../expected/oauth2-auth-grants.raml.json | 48 +- .../expected/oauth2-facets.raml.json | 48 +- .../oauth2-scopes-withLibrary.raml.json | 24 +- .../expected/oauth2-scopes.raml.json | 4 +- .../expected/oauth2-securityScheme.raml.json | 36 +- .../expected/oauth2-settings.raml.json | 48 +- .../operation-securedBy-array.raml.json | 24 +- .../expected/operation-securedBy.raml.json | 12 +- .../expected/pass-throuth-facets.raml.json | 36 +- .../root-secured-by-full-array.raml.json | 4 +- .../root-securedBy-array-flow.raml.json | 24 +- .../expected/root-securedBy-array.raml.json | 24 +- .../root-securedBy-oauth2-scopes.raml.json | 24 +- .../expected/root-securedBy-oauth2.raml.json | 12 +- .../expected/root-securedBy.raml.json | 12 +- .../settings-signature-array.raml.json | 36 +- .../traits-securedBy-oauth2-scopes.raml.json | 24 +- ...s-securedBy-oauth2-withoutScopes.raml.json | 24 +- .../security-schemes/expected/types.raml.json | 72 +- .../expected/x-other-facets.raml.json | 36 +- .../expected/boolean-completion.raml.json | 12 +- .../expected/reference-in-middle.raml.json | 24 +- ...parameter-type-array-with-prefix.raml.json | 24 +- .../base-uri-parameter-type-array.raml.json | 144 +- .../base-uri-parameter-with-prefix.raml.json | 24 +- .../expected/base-uri-parameter.raml.json | 180 ++- .../expected/base-uri-parameters.raml.json | 12 +- .../expected/documentation-array.raml.json | 24 +- .../top-level/expected/empty-header.raml.json | 12 +- .../expected/media-type-array.raml.json | 24 +- .../top-level/expected/media-type.raml.json | 24 +- .../expected/protocols-array.raml.json | 24 +- .../top-level/expected/protocols.raml.json | 24 +- .../query-parameter-with-prefix.raml.json | 24 +- .../expected/query-parameter.raml.json | 144 +- .../top-level/expected/raml-header.raml.json | 120 +- .../top-level/expected/root.raml.json | 192 ++- .../traits/expected/definition-link.raml.json | 12 +- ...efinition-name-after-declaration.raml.json | 4 +- .../traits/expected/definition-name.raml.json | 4 +- .../definition-operation-level.raml.json | 144 +- .../traits/expected/definition.raml.json | 132 +- .../expected/fragment-last-line.raml.json | 156 +- .../expected/in-trait-complex-value.raml.json | 4 +- .../traits/expected/include.raml.json | 12 +- .../known-variables-single-char.raml.json | 36 +- .../traits/expected/known-variables.raml.json | 36 +- .../traits/expected/over-include.raml.json | 300 +++- .../traits/expected/protocols.raml.json | 24 +- .../reference-array-with-params.raml.json | 12 +- .../traits/expected/reference-array.raml.json | 12 +- .../expected/reference-endpoint.raml.json | 12 +- .../reference-inside-flow-array.raml.json | 12 +- .../traits/expected/reference.raml.json | 12 +- .../expected/required-in-trait.raml.json | 24 +- .../traits/expected/securedBy-array.raml.json | 24 +- .../variables-reference-array.raml.json | 24 +- .../variables-reference-filter.raml.json | 12 +- .../variables-reference-value.raml.json | 4 +- .../expected/variables-reference.raml.json | 24 +- .../expected/array-items-entry.raml.json | 168 +- .../types/expected/array-items.raml.json | 168 +- .../types/expected/array-type.raml.json | 144 +- .../expected/boolean-completion.raml.json | 24 +- .../types/expected/boolean-type.raml.json | 132 +- ...cets-dont-suggest-on-declaration.raml.json | 120 +- .../custom-facets-two-levels.raml.json | 168 +- .../types/expected/custom-facets.raml.json | 156 +- .../expected/datetime-only-type.raml.json | 132 +- .../types/expected/datetime-type.raml.json | 132 +- .../expected/default-declaration.raml.json | 132 +- .../types/expected/discriminator.raml.json | 24 +- .../types/expected/file-type.raml.json | 132 +- .../types/expected/integer-type.raml.json | 144 +- ...ation-after-previous-declaration.raml.json | 12 +- ...laration-before-next-declaration.raml.json | 12 +- .../types/expected/name-declaration.raml.json | 12 +- .../types/expected/nil-type.raml.json | 4 +- .../types/expected/number-format.raml.json | 96 +- .../types/expected/number-type.raml.json | 144 +- .../expected/object-property-inline.raml.json | 168 +- .../expected/object-property-name.raml.json | 4 +- .../types/expected/object-property.raml.json | 144 +- .../types/expected/object-type.raml.json | 168 +- .../types/expected/recursion.raml.json | 84 +- .../types/expected/required-boolean.raml.json | 24 +- .../types/expected/string-type.raml.json | 132 +- .../types/expected/time-only-type.raml.json | 132 +- .../expected/type-item-reference.raml.json | 180 ++- .../type-properties-with-prefix-m.raml.json | 4 +- .../type-properties-with-prefix-p.raml.json | 14 +- .../types/expected/type-properties.raml.json | 144 +- .../type-property-reference.raml.json | 180 ++- .../expected/type-reference-inline.raml.json | 168 +- .../types/expected/type-reference.raml.json | 168 +- .../expected/type-with-comment.raml.json | 156 +- .../types/expected/types-explicit.raml.json | 156 +- .../types/expected/types-inline.raml.json | 156 +- .../types/expected/union-type.raml.json | 96 +- .../expected/xml-serialization.raml.json | 60 +- .../yaml-map-indicators-begin.yaml.json | 60 +- .../yaml-map-indicators-end.yaml.json | 60 +- .../yaml-map-indicators-outside.yaml.json | 4 +- ...l-seq-indicator-begin-with-comma.yaml.json | 228 ++- .../yaml-seq-indicator-begin.yaml.json | 216 ++- ...aml-seq-indicator-end-with-comma.yaml.json | 240 ++- .../expected/yaml-seq-indicator-end.yaml.json | 240 ++- .../yaml-seq-indicator-outside.yaml.json | 4 +- .../JsonSuggestionStylerTest.scala | 4 +- .../mulesoft/als/suggestions/PathTest.scala | 23 +- .../YamlSuggestionStylerTest.scala | 4 +- .../test/SuggestionByDirectoryTest.scala | 2 +- .../suggestions/test/SuggestionsTest.scala | 3 +- .../test/TwinSyntaxQtyDirValidationTest.scala | 4 +- .../test/aml/AMLSuggestionsTest.scala | 2 +- .../AMLAsyncApi06SuggestionTest.scala | 2 +- .../test/aml/SuggestionsWithDialectTest.scala | 2 +- .../test/aml/UnionSuggestionsTest.scala | 4 - .../als/suggestions/test/core/CoreTest.scala | 5 +- .../Oas30ComponentRefSuggestionTest.scala | 6 +- .../oas30/Oas30ComponentSuggestionTest.scala | 9 +- .../Oas30JsonSchemaRefSuggestionTest.scala | 6 +- .../raml10/AliasedSemexSuggestionTest.scala | 4 +- build.sbt | 119 +- dependencies.properties | 6 +- project/NpmOpsPlugin.scala | 16 +- project/plugins.sbt | 3 +- 1516 files changed, 84065 insertions(+), 28141 deletions(-) create mode 100644 adrs/bumps/0001-scalaJS-1.1.0.md mode change 100644 => 100755 als-node-client/node-package/scripts/build.sh mode change 100644 => 100755 als-server/js/node-package/scripts/build.sh diff --git a/Dockerfile b/Dockerfile index 99f24bc405..05864aa18b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,8 @@ USER root ARG USER_HOME_DIR="/root" -ENV SCALA_VERSION 2.12.13 -ENV SBT_VERSION 1.7.1 +ENV SCALA_VERSION="2.12.13" +ENV SBT_VERSION="1.7.1" # Update the repository sources list and install dependencies @@ -28,7 +28,7 @@ RUN apt-get install unzip -y && \ ## Piping curl directly in tar RUN \ apt-get install curl --assume-yes && \ - curl -fsL http://downloads.typesafe.com/scala/$SCALA_VERSION/scala-$SCALA_VERSION.tgz | tar xfz - -C /root/ && \ + curl -fsL http://www.scala-lang.org/files/archive/scala-$SCALA_VERSION.tgz | tar xfz - -C /root/ && \ echo >> /root/.bashrc && \ echo 'export PATH=~/scala-$SCALA_VERSION/bin:$PATH' >> /root/.bashrc diff --git a/Jenkinsfile b/Jenkinsfile index 1ee487649c..0bffc6cf83 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -86,7 +86,7 @@ pipeline { wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'XTerm']) { script { try { - sh 'sbt -mem 6000 -Dflaky.ignore=true -Dsbt.global.base=.sbt -Dsbt.boot.directory=.sbt -Dsbt.ivy.home=.ivy2 clean coverage test coverageAggregate' + sh 'sbt -mem 12000 -Dflaky.ignore=true -Dsbt.global.base=.sbt -Dsbt.boot.directory=.sbt -Dsbt.ivy.home=.ivy2 -Djava.io.tmpdir=$HOME clean coverage test coverageAggregate --warn' } catch (e) { failedStage = failedStage + " TEST " unstable "Failed tests" @@ -154,7 +154,7 @@ pipeline { script { try { if (failedStage.isEmpty()) { - sh 'sbt publish' + sh 'sbt --mem 10000 publish -Djava.io.tmpdir=$HOME' } } catch (e) { failedStage = failedStage + " PUBLISH " @@ -177,7 +177,7 @@ pipeline { if (failedStage.isEmpty()) { publish_version_node_client = "${publish_version}".replace("\n", "") echo "$publish_version_node_client" - sh 'sbt -mem 6000 -Dsbt.global.base=.sbt -Dsbt.boot.directory=.sbt -Dsbt.ivy.home=.ivy2 buildNodeJsClient' + sh 'sbt -mem 10000 -Dsbt.global.base=.sbt -Dsbt.boot.directory=.sbt -Dsbt.ivy.home=.ivy2 buildNodeJsClient -Djava.io.tmpdir=$HOME' def statusCode = 1 dir("als-node-client/node-package") { echo "Publishing NPM package: ${publish_version_node_client}" @@ -205,7 +205,7 @@ pipeline { script { if (failedStage.isEmpty()) { def statusCode = 1 - statusCode = sh script:'sbt -mem 6000 -Dsbt.global.base=.sbt -Dsbt.boot.directory=.sbt -Dsbt.ivy.home=.ivy2 buildJsServerLibrary', returnStatus: true + statusCode = sh script:'sbt -mem 12000 -Dsbt.global.base=.sbt -Dsbt.boot.directory=.sbt -Dsbt.ivy.home=.ivy2 -Djava.io.tmpdir=$HOME buildJsServerLibrary', returnStatus: true if(statusCode != 0) { failedStage = failedStage + " PUBLISH-SERVER-JS " unstable "Failed als-server JS publication" diff --git a/adrs/bumps/0001-scalaJS-1.1.0.md b/adrs/bumps/0001-scalaJS-1.1.0.md new file mode 100644 index 0000000000..8bd5849bca --- /dev/null +++ b/adrs/bumps/0001-scalaJS-1.1.0.md @@ -0,0 +1,47 @@ +# 1. Bump ScalaJS from 0.6 to 1.1 + +Date: 2023-03-10 + +## Status +In Progress + +## Context +Bump ScalaJS from 0.6 to 1.1 had a lot of compatibility issues with some plugins and dependencies, like: + +- sbt-scalajs: 1.6.0 +- scalatest +- upickle +- node v16.19.0 + + +## Decision +1. We follow AMF suggestion to use `sbt-scalaJS:1.6.0` instead of `1.7.0+` beacuse of _RegEx adaption_ +2. We found a `scalatest` version that has compatibility with `scalaJS 1` +3. `upickle` use `scalaJS 1` since `0.9.x`. [See more details](https://mvnrepository.com/artifact/com.lihaoyi/upickle_sjs1_2.12) +4. For node 16 we decide to use `scala-js-nodejs-v14` from `net-exoego`. We had to downgrade to _Node 14_ because this is used only for **Test mode** and for _Node 16_ there was just one version and this unique version requires `sbt-scalajs 1.8.0+` + +## Issues +- Changing to latest `Upickle` version fix compatibility with `sbt-scalaJS` but fail all `als-suggestion` tests because the write function of an empty array change from: +`[]` to +`[ \n ]` +- Some code had to been changed because of deprecated packages +- Some `@JSExport` annotations were changed to `@JSExportTopLevel` +- Workspaces name were removed from exported annotations +- `ScalaJSModuleKind` was replaced with `scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule) +.withESFeatures(_.withESVersion(ESVersion.ES2016)) + }` +- Other replacements (depends of scala version): + - `fastOptJS` -> `fastLinkJS` + - `fullOptJS` -> `fullLinkJS` + - `artifactPath` -> `scalaJSLinkerOutputDirectory` + + ** NOTE: This modifications in the linkerJS config change the way that the autogenerated JS file is created. It creates a folder with main.js files instead of .js files. Keep in mind that for some commands (i.e. buildServerJsLibrary) need to run an script that move those file to another dir. If this config is updated the script file need to be fixed. +- Some commons dependencies do not on JS, so we need to add those using `libraryDependencies` in _JS Settings_ section. + + + +### Internal Work Items +- [W-12658516](https://gus.lightning.force.com/a07EE00001MkxRJYAZ) +- [W-12601018](https://gus.lightning.force.com/a07EE00001LqaxfYAB) + + \ No newline at end of file diff --git a/als-actions/js/package-lock.json b/als-actions/js/package-lock.json index aa10e45dee..855557e119 100644 --- a/als-actions/js/package-lock.json +++ b/als-actions/js/package-lock.json @@ -1,7 +1,7 @@ { "name": "als-actions", "version": "1.0.0", - "lockfileVersion": 3, + "lockfileVersion": 2, "requires": true, "packages": { "": { @@ -9,14 +9,14 @@ "version": "1.0.0", "license": "ISC", "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", "ajv": "6.12.6" } }, "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.6.23", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.23.tgz", - "integrity": "sha512-ZL5xQ1mwxdxausmSPObn7//rpJ4vTV55nCE1asszYFSZgpSFeZeP0YuJpxCZt+YvErk9Brv7v/guodGwG7iw7A==" + "version": "0.6.22-SCALAJS1.6-SNAPSHOT", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", + "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" }, "node_modules/ajv": { "version": "6.12.6", @@ -64,5 +64,51 @@ "punycode": "^2.1.0" } } + }, + "dependencies": { + "@aml-org/amf-antlr-parsers": { + "version": "0.6.22-SCALAJS1.6-SNAPSHOT", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", + "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + } } } diff --git a/als-actions/js/package.json b/als-actions/js/package.json index 3ab7827876..ea23562aa8 100644 --- a/als-actions/js/package.json +++ b/als-actions/js/package.json @@ -6,7 +6,7 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.7.24", "ajv": "6.12.6" }, "author": "", diff --git a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/HoverActionTest.scala b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/HoverActionTest.scala index 1c1583a418..ea9c9661bb 100644 --- a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/HoverActionTest.scala +++ b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/HoverActionTest.scala @@ -12,7 +12,8 @@ import org.mulesoft.amfintegration.amfconfiguration.{ EditorConfiguration, EmptyProjectConfigurationState } -import org.scalatest.{Assertion, AsyncFunSuite} +import org.scalatest.Assertion +import org.scalatest.funsuite.AsyncFunSuite import org.yaml.model._ import scala.concurrent.{ExecutionContext, Future} diff --git a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/codeactions/BaseCodeActionTests.scala b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/codeactions/BaseCodeActionTests.scala index 6bd934fe3c..84134b490b 100644 --- a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/codeactions/BaseCodeActionTests.scala +++ b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/codeactions/BaseCodeActionTests.scala @@ -8,7 +8,6 @@ import org.mulesoft.als.common.diff.FileAssertionTest import org.mulesoft.als.common.dtoTypes.PositionRange import org.mulesoft.als.common.{PlatformDirectoryResolver, WorkspaceEditSerializer} import org.mulesoft.als.configuration.AlsConfiguration -import org.mulesoft.amfintegration.AmfImplicits.AmfAnnotationsImp import org.mulesoft.amfintegration.amfconfiguration.{ ALSConfigurationState, AmfParseResult, @@ -21,7 +20,9 @@ import org.mulesoft.lsp.edit.WorkspaceEdit import org.mulesoft.lsp.feature.codeactions.CodeAction import org.mulesoft.lsp.feature.telemetry.MessageTypes.MessageTypes import org.mulesoft.lsp.feature.telemetry.TelemetryProvider -import org.scalatest.{Assertion, AsyncFlatSpec, Matchers} +import org.scalatest.Assertion +import org.scalatest.flatspec.AsyncFlatSpec +import org.scalatest.matchers.should.Matchers import scala.concurrent.ExecutionContext.Implicits.global import scala.concurrent.{ExecutionContext, Future} diff --git a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/codeactions/DeleteDeclaredNodeTest.scala b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/codeactions/DeleteDeclaredNodeTest.scala index b1f49d7f62..e7cd1897c0 100644 --- a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/codeactions/DeleteDeclaredNodeTest.scala +++ b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/codeactions/DeleteDeclaredNodeTest.scala @@ -9,7 +9,7 @@ import org.mulesoft.amfintegration.amfconfiguration.{ EditorConfiguration, EmptyProjectConfigurationState } -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import org.yaml.model.YDocument import org.yaml.model.YDocument.{EntryBuilder, PartBuilder} import org.yaml.render.YamlRender diff --git a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/definition/DefinitionFileTests.scala b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/definition/DefinitionFileTests.scala index ec1d0f2f1e..5f29428d8a 100644 --- a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/definition/DefinitionFileTests.scala +++ b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/definition/DefinitionFileTests.scala @@ -1,7 +1,8 @@ package org.mulesoft.als.actions.definition import amf.core.internal.unsafe.PlatformSecrets -import org.scalatest.{AsyncFlatSpec, Matchers} +import org.scalatest.flatspec.AsyncFlatSpec +import org.scalatest.matchers.should.Matchers import scala.concurrent.ExecutionContext diff --git a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/folding/FoldingRangesTests.scala b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/folding/FoldingRangesTests.scala index eca026ca45..7fbef9ba74 100644 --- a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/folding/FoldingRangesTests.scala +++ b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/folding/FoldingRangesTests.scala @@ -10,7 +10,8 @@ import org.mulesoft.amfintegration.amfconfiguration.{ EmptyProjectConfigurationState } import org.mulesoft.lsp.feature.folding.FoldingRange -import org.scalatest.{AsyncFlatSpec, Matchers} +import org.scalatest.flatspec.AsyncFlatSpec +import org.scalatest.matchers.should.Matchers import scala.concurrent.ExecutionContext.Implicits.global import scala.concurrent.{ExecutionContext, Future} diff --git a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/links/FindLinksTests.scala b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/links/FindLinksTests.scala index 6343c21c19..35815e233f 100644 --- a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/links/FindLinksTests.scala +++ b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/links/FindLinksTests.scala @@ -1,9 +1,10 @@ package org.mulesoft.als.actions.links import amf.core.internal.unsafe.PlatformSecrets -import org.scalatest.{FlatSpec, Matchers} +import org.scalatest.flatspec.AnyFlatSpec +import org.scalatest.matchers.should.Matchers -class FindLinksTests extends FlatSpec with Matchers with PlatformSecrets { +class FindLinksTests extends AnyFlatSpec with Matchers with PlatformSecrets { behavior of "Find Links" // todo: find a way to test this in a simple way (currently tested in server module) diff --git a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/rangeFormatting/FormattingOptionsTest.scala b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/rangeFormatting/FormattingOptionsTest.scala index 58d36655f8..2a0d740d40 100644 --- a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/rangeFormatting/FormattingOptionsTest.scala +++ b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/rangeFormatting/FormattingOptionsTest.scala @@ -4,10 +4,11 @@ import amf.core.internal.unsafe.PlatformSecrets import org.mulesoft.als.actions.formatting.RangeFormatting import org.mulesoft.amfintegration.ErrorsCollected import org.mulesoft.lsp.configuration.FormattingOptions -import org.scalatest.{FlatSpec, Matchers} +import org.scalatest.flatspec.AnyFlatSpec +import org.scalatest.matchers.should.Matchers import org.yaml.model.YMap -class FormattingOptionsTest extends FlatSpec with Matchers with PlatformSecrets { +class FormattingOptionsTest extends AnyFlatSpec with Matchers with PlatformSecrets { behavior of "Formatting Options" private val baseTest = "my: \n test: lorem ipsum \n\n\n\n\n" diff --git a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/selection/SelectionRangeFinderTest.scala b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/selection/SelectionRangeFinderTest.scala index e9956e5cae..07b7bdda0d 100644 --- a/als-actions/shared/src/test/scala/org/mulesoft/als/actions/selection/SelectionRangeFinderTest.scala +++ b/als-actions/shared/src/test/scala/org/mulesoft/als/actions/selection/SelectionRangeFinderTest.scala @@ -12,7 +12,8 @@ import org.mulesoft.amfintegration.amfconfiguration.{ } import org.mulesoft.lsp.feature.common.{Range, Position => LspPosition} import org.mulesoft.lsp.feature.selectionRange.SelectionRange -import org.scalatest.{AsyncFlatSpec, Matchers} +import org.scalatest.flatspec.AsyncFlatSpec +import org.scalatest.matchers.should.Matchers import scala.concurrent.{ExecutionContext, Future} diff --git a/als-common/js/package-lock.json b/als-common/js/package-lock.json index 7118e77e92..8ad84ac275 100644 --- a/als-common/js/package-lock.json +++ b/als-common/js/package-lock.json @@ -1,7 +1,7 @@ { "name": "als-common", "version": "1.0.0", - "lockfileVersion": 3, + "lockfileVersion": 2, "requires": true, "packages": { "": { @@ -9,14 +9,14 @@ "version": "1.0.0", "license": "ISC", "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", "ajv": "6.12.6" } }, "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.6.23", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.23.tgz", - "integrity": "sha512-ZL5xQ1mwxdxausmSPObn7//rpJ4vTV55nCE1asszYFSZgpSFeZeP0YuJpxCZt+YvErk9Brv7v/guodGwG7iw7A==" + "version": "0.6.22-SCALAJS1.6-SNAPSHOT", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", + "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" }, "node_modules/ajv": { "version": "6.12.6", @@ -64,5 +64,51 @@ "punycode": "^2.1.0" } } + }, + "dependencies": { + "@aml-org/amf-antlr-parsers": { + "version": "0.6.22-SCALAJS1.6-SNAPSHOT", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", + "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + } } } diff --git a/als-common/js/package.json b/als-common/js/package.json index 170e3bcc0b..e1aca91cc7 100644 --- a/als-common/js/package.json +++ b/als-common/js/package.json @@ -6,7 +6,7 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.7.24", "ajv": "6.12.6" }, "author": "", diff --git a/als-common/js/src/main/scala/org/mulesoft/als/configuration/ClientDirectoryResolver.scala b/als-common/js/src/main/scala/org/mulesoft/als/configuration/ClientDirectoryResolver.scala index 5711ba92e8..2c95ed2a5d 100644 --- a/als-common/js/src/main/scala/org/mulesoft/als/configuration/ClientDirectoryResolver.scala +++ b/als-common/js/src/main/scala/org/mulesoft/als/configuration/ClientDirectoryResolver.scala @@ -2,12 +2,10 @@ package org.mulesoft.als.configuration import org.mulesoft.als.common.{DirectoryResolver => InternalResolver} +import scala.concurrent.ExecutionContext.Implicits.global import scala.concurrent.Future import scala.scalajs.js -import scala.scalajs.js.annotation.ScalaJSDefined -import scala.concurrent.ExecutionContext.Implicits.global -@ScalaJSDefined trait ClientDirectoryResolver extends js.Object { def exists(path: String): js.Promise[Boolean] diff --git a/als-common/shared/src/main/scala/org/mulesoft/amfintegration/AbstractDeclarationInformation.scala b/als-common/shared/src/main/scala/org/mulesoft/amfintegration/AbstractDeclarationInformation.scala index 52ec7fc033..69871d9cd0 100644 --- a/als-common/shared/src/main/scala/org/mulesoft/amfintegration/AbstractDeclarationInformation.scala +++ b/als-common/shared/src/main/scala/org/mulesoft/amfintegration/AbstractDeclarationInformation.scala @@ -5,6 +5,7 @@ import amf.apicontract.client.scala.model.domain.templates.{ResourceType, Trait} import amf.apicontract.client.scala.transform.AbstractElementTransformer import amf.apicontract.internal.spec.common.transformation.ExtendsHelper import amf.apicontract.internal.transformation.BaseUnitSourceLocationIndex +//import amf.apicontract.internal.transformation.BaseUnitSourceLocationIndex import amf.core.client.scala.errorhandling.UnhandledErrorHandler import amf.core.client.scala.model.document.BaseUnit import amf.core.client.scala.model.domain.DomainElement diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/BaseHoverTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/BaseHoverTest.scala index 6402e695ff..0ac5771e68 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/BaseHoverTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/BaseHoverTest.scala @@ -3,7 +3,7 @@ package org.mulesoft.als.common import org.mulesoft.als.common.diff.FileAssertionTest import org.mulesoft.als.common.dtoTypes.Position import org.mulesoft.lsp.feature.hover.Hover -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import org.yaml.model.YDocument import org.yaml.model.YDocument.EntryBuilder import org.yaml.render.YamlRender diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/ByDirectoryTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/ByDirectoryTest.scala index 8f586fc574..947e0cb9eb 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/ByDirectoryTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/ByDirectoryTest.scala @@ -2,7 +2,7 @@ package org.mulesoft.als.common import org.mulesoft.als.common.diff.FileAssertionTest import org.mulesoft.common.io.{Fs, SyncFile} -import org.scalatest.AsyncFreeSpec +import org.scalatest.freespec.AsyncFreeSpec import scala.concurrent.{ExecutionContext, Future} diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/RelativizeTests.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/RelativizeTests.scala index 7092a78bb6..b137932905 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/RelativizeTests.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/RelativizeTests.scala @@ -1,9 +1,10 @@ package org.mulesoft.als.common import org.mulesoft.als.common.URIImplicits.StringUriImplicits -import org.scalatest.{FlatSpec, Matchers} +import org.scalatest.flatspec.AnyFlatSpec +import org.scalatest.matchers.should.Matchers -class RelativizeTests extends FlatSpec with Matchers { +class RelativizeTests extends AnyFlatSpec with Matchers { behavior of "path relativization" it should "relativize on same level folder" in { diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/YNodeBranchBuilderTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/YNodeBranchBuilderTest.scala index 5ac1c60fca..818fcdf5b8 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/YNodeBranchBuilderTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/YNodeBranchBuilderTest.scala @@ -1,11 +1,12 @@ package org.mulesoft.als.common import org.mulesoft.common.client.lexical.{Position => AmfPosition} -import org.scalatest.{FunSuite, Matchers} +import org.scalatest.funsuite.AnyFunSuite +import org.scalatest.matchers.should.Matchers import org.yaml.model.{YMap, YNodePlain, YScalar} import org.yaml.parser.{JsonParser, YamlParser} -class YNodeBranchBuilderTest extends FunSuite with Matchers { +class YNodeBranchBuilderTest extends AnyFunSuite with Matchers { test("Range for empty key with brothers") { val text = "a: b\n" diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/YamlWrapperTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/YamlWrapperTest.scala index e8da477e11..f333247b6c 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/YamlWrapperTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/YamlWrapperTest.scala @@ -1,10 +1,10 @@ package org.mulesoft.als.common import org.mulesoft.common.client.lexical.{Position => AmfPosition} -import org.scalatest.FlatSpec +import org.scalatest.flatspec.AnyFlatSpec import org.yaml.model.YScalar -class YamlWrapperTest extends FlatSpec { +class YamlWrapperTest extends AnyFlatSpec { behavior of "Flow cases" private val regularFlowCase = diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/DiffTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/DiffTest.scala index 6a3e8d8588..412e5f0210 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/DiffTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/DiffTest.scala @@ -1,10 +1,12 @@ package org.mulesoft.als.common.diff -import org.scalatest.FunSuite -import org.scalatest.Matchers._ +import org.scalatest.funsuite.AnyFunSuite +import org.scalatest.matchers.must.Matchers +import org.scalatest.matchers.must.Matchers.startWith +import org.scalatest.matchers.should.Matchers.convertToAnyShouldWrapper /** */ -class DiffTest extends FunSuite with ListAssertions { +class DiffTest extends AnyFunSuite with ListAssertions { test("Case Insensitive Diff") { val deltas = Diff.caseInsensitive.diff(first, second) @@ -31,7 +33,7 @@ class DiffTest extends FunSuite with ListAssertions { test("Case Insensitive Diff Strings By Line") { val deltas: List[Diff.Delta[String]] = Diff.caseInsensitive.diff("Hello\nWorld", "HELLO\nWORLD") - deltas shouldBe empty + deltas shouldBe Matchers.empty } test("Case Sensitive Diff") { diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/FileAssertionTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/FileAssertionTest.scala index 3b677f31df..858dc584b7 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/FileAssertionTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/FileAssertionTest.scala @@ -2,7 +2,7 @@ package org.mulesoft.als.common.diff import amf.core.internal.unsafe.PlatformSecrets import org.mulesoft.common.io.{AsyncFile, FileSystem} -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/ListAssertions.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/ListAssertions.scala index fbc6fb1adf..b1c8854f17 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/ListAssertions.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/ListAssertions.scala @@ -1,6 +1,7 @@ package org.mulesoft.als.common.diff -import org.scalatest.{Assertion, Assertions} +import org.scalatest.Assertions +import org.scalatest.compatible.Assertion /** */ trait ListAssertions extends Assertions { diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/Tests.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/Tests.scala index c9444a79ae..29d889c91b 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/Tests.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/Tests.scala @@ -1,16 +1,15 @@ package org.mulesoft.als.common.diff -import java.io.{File, FileNotFoundException, FileReader, Reader} -import java.lang.System.getProperty -import java.net.{InetAddress, UnknownHostException} - +import org.mulesoft.als.common.diff.Diff.makeString import org.mulesoft.common.io.{AsyncFile, Utf8} -import org.scalatest.Matchers._ +import org.scalatest.matchers.should.Matchers._ import org.scalatest.{Assertion, Succeeded} +import java.io.{File, FileNotFoundException, FileReader, Reader} +import java.lang.System.getProperty +import java.net.{InetAddress, UnknownHostException} import scala.concurrent.{ExecutionContext, Future} import scala.util.Random -import Diff.makeString /** */ object Tests { diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/WorkspaceEditsTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/WorkspaceEditsTest.scala index 28a54ed3d9..ce695ef91b 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/WorkspaceEditsTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/diff/WorkspaceEditsTest.scala @@ -2,8 +2,8 @@ package org.mulesoft.als.common.diff import org.mulesoft.als.convert.LspRangeConverter import org.mulesoft.lsp.edit.WorkspaceEdit -import org.scalatest.Assertion -import org.scalatest.Matchers.{fail, succeed} +import org.scalatest.compatible.Assertion + import scala.concurrent.{ExecutionContext, Future} trait WorkspaceEditsTest extends FileAssertionTest { diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/FileUtilsTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/FileUtilsTest.scala index 9419470dea..0c4143821d 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/FileUtilsTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/FileUtilsTest.scala @@ -4,9 +4,9 @@ import amf.core.internal.remote.Platform import amf.core.internal.unsafe.PlatformSecrets import org.mulesoft.als.common.FileUtils import org.mulesoft.als.common.URIImplicits._ -import org.scalatest.FunSuite +import org.scalatest.funsuite.AnyFunSuite -class FileUtilsTest extends FunSuite with PlatformSecrets { +class FileUtilsTest extends AnyFunSuite with PlatformSecrets { private val path = "root/drive/space in folder/file%3A" private val uri = platform.encodeURI(path) // "root/drive/space%20in%20folder/file%253A" diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/LinesWithSeparatorsTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/LinesWithSeparatorsTest.scala index 407fa14e02..e5c5f97794 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/LinesWithSeparatorsTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/LinesWithSeparatorsTest.scala @@ -1,8 +1,9 @@ package org.mulesoft.als.common.dtoTypes -import org.scalatest.{FunSuite, Matchers} +import org.scalatest.funsuite.AnyFunSuite +import org.scalatest.matchers.should.Matchers -class LinesWithSeparatorsTest extends FunSuite with Matchers { +class LinesWithSeparatorsTest extends AnyFunSuite with Matchers { test("Test end with whitespaces line") { diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/PositionRangeTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/PositionRangeTest.scala index 9eee2a3e58..1e00400482 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/PositionRangeTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/PositionRangeTest.scala @@ -1,8 +1,8 @@ package org.mulesoft.als.common.dtoTypes -import org.scalatest.FunSuite +import org.scalatest.funsuite.AnyFunSuite -class PositionRangeTest extends FunSuite { +class PositionRangeTest extends AnyFunSuite { test("Includes in one line range") { val range = PositionRange(Position(2, 2), Position(2, 3)) diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/PositionTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/PositionTest.scala index b83ed61725..76f7a5d10e 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/PositionTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/dtoTypes/PositionTest.scala @@ -1,8 +1,8 @@ package org.mulesoft.als.common.dtoTypes -import org.scalatest.FunSuite +import org.scalatest.funsuite.AnyFunSuite -class PositionTest extends FunSuite { +class PositionTest extends AnyFunSuite { test("Greater than") { val reference = Position(2, 2) diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/DeclarationCreatorTests.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/DeclarationCreatorTests.scala index 09c3394eb7..6e752c0419 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/DeclarationCreatorTests.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/DeclarationCreatorTests.scala @@ -8,7 +8,8 @@ import org.mulesoft.amfintegration.amfconfiguration.{ EditorConfiguration, EmptyProjectConfigurationState } -import org.scalatest.{Assertion, AsyncFlatSpec} +import org.scalatest.compatible.Assertion +import org.scalatest.flatspec.AsyncFlatSpec import scala.concurrent.{ExecutionContext, Future} diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeArraysTests.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeArraysTests.scala index 1e6502d384..08d5dfc1dd 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeArraysTests.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeArraysTests.scala @@ -1,7 +1,7 @@ package org.mulesoft.als.common.objectintree import org.mulesoft.als.common.dtoTypes.Position -import org.scalatest.AsyncFlatSpec +import org.scalatest.flatspec.AsyncFlatSpec import scala.concurrent.ExecutionContext diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeBaseTest.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeBaseTest.scala index af84f8fe45..525b14f6da 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeBaseTest.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeBaseTest.scala @@ -2,18 +2,19 @@ package org.mulesoft.als.common.objectintree import amf.aml.client.scala.model.document.Dialect import amf.aml.internal.metamodel.domain.DialectDomainElementModel -import org.mulesoft.common.client.lexical.{Position => AmfPosition} import amf.core.internal.unsafe.PlatformSecrets import org.mulesoft.als.common.dtoTypes.Position import org.mulesoft.als.common.{NodeBranchBuilder, ObjectInTree, ObjectInTreeBuilder} -import org.mulesoft.amfintegration.AmfImplicits.{AmfAnnotationsImp, BaseUnitImp} +import org.mulesoft.amfintegration.AmfImplicits.BaseUnitImp import org.mulesoft.amfintegration.amfconfiguration.{ ALSConfigurationState, AmfParseResult, EditorConfiguration, EmptyProjectConfigurationState } -import org.scalatest.{Assertion, Matchers} +import org.mulesoft.common.client.lexical.{Position => AmfPosition} +import org.scalatest.compatible.Assertion +import org.scalatest.matchers.should.Matchers import scala.concurrent.{ExecutionContext, Future} diff --git a/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeMapsTests.scala b/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeMapsTests.scala index 3b889ec755..d91f44eb14 100644 --- a/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeMapsTests.scala +++ b/als-common/shared/src/test/scala/org/mulesoft/als/common/objectintree/ObjectInTreeMapsTests.scala @@ -1,7 +1,7 @@ package org.mulesoft.als.common.objectintree import org.mulesoft.als.common.dtoTypes.Position -import org.scalatest.AsyncFlatSpec +import org.scalatest.flatspec.AsyncFlatSpec import scala.concurrent.ExecutionContext diff --git a/als-fat/jvm/project/build.properties b/als-fat/jvm/project/build.properties index c0bab04941..b1e589d9f4 100644 --- a/als-fat/jvm/project/build.properties +++ b/als-fat/jvm/project/build.properties @@ -1 +1 @@ -sbt.version=1.2.8 +sbt.version=1.7.1 \ No newline at end of file diff --git a/als-lsp/js/src/test/scala/org/mulesoft/lsp/conversions/ClientConversionTest.scala b/als-lsp/js/src/test/scala/org/mulesoft/lsp/conversions/ClientConversionTest.scala index 654bd35031..edaf9ad10c 100644 --- a/als-lsp/js/src/test/scala/org/mulesoft/lsp/conversions/ClientConversionTest.scala +++ b/als-lsp/js/src/test/scala/org/mulesoft/lsp/conversions/ClientConversionTest.scala @@ -40,11 +40,12 @@ import org.mulesoft.lsp.feature.telemetry.{ import org.mulesoft.lsp.textsync.KnownDependencyScopes._ import org.mulesoft.lsp.textsync._ import org.mulesoft.lsp.workspace._ -import org.scalatest.{FlatSpec, Matchers} +import org.scalatest.flatspec.AnyFlatSpec +import org.scalatest.matchers.should.Matchers import scala.scalajs.js.JSON -class ClientConversionTest extends FlatSpec with Matchers { +class ClientConversionTest extends AnyFlatSpec with Matchers { behavior of "Common transformations" val p: Position = Position(10, 10) @@ -563,21 +564,22 @@ class ClientConversionTest extends FlatSpec with Matchers { DidChangeConfigurationNotificationParams( Some("uri"), "ws", - Set(Left("dep1"), Right(DependencyConfiguration("dep2", DEPENDENCY))) - ++ Set( - Right(DependencyConfiguration("p1", CUSTOM_VALIDATION)), - Right(DependencyConfiguration("p2", CUSTOM_VALIDATION)) - ) - ++ Set( - Right(DependencyConfiguration("se1", SEMANTIC_EXTENSION)), - Right(DependencyConfiguration("se2", SEMANTIC_EXTENSION)) - ) + Set( + Left("dep1"), + Right(DependencyConfiguration("dep2", DEPENDENCY)) + ) ++ Set( + Right(DependencyConfiguration("p1", CUSTOM_VALIDATION)), + Right(DependencyConfiguration("p2", CUSTOM_VALIDATION)) + ) ++ Set( + Right(DependencyConfiguration("se1", SEMANTIC_EXTENSION)), + Right(DependencyConfiguration("se2", SEMANTIC_EXTENSION)) + ) ) val ts1: ClientDidChangeConfigurationNotificationParams = ts.toClient val ts2: DidChangeConfigurationNotificationParams = ts1.toShared val stringified = - """{"mainPath":"uri","folder":"ws","dependencies":[{"file":"p1","scope":"custom-validation"},{"file":"dep2","scope":"dependency"},"dep1",{"file":"p2","scope":"custom-validation"},{"file":"se2","scope":"semantic-extension"},{"file":"se1","scope":"semantic-extension"}]}""" + """{"mainPath":"uri","folder":"ws","dependencies":[{"file":"dep2","scope":"dependency"},{"file":"p1","scope":"custom-validation"},{"file":"se1","scope":"semantic-extension"},"dep1",{"file":"se2","scope":"semantic-extension"},{"file":"p2","scope":"custom-validation"}]}""" JSON.stringify(ts1) should be(stringified) ts should be(ts2) diff --git a/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/common/Position.scala b/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/common/Position.scala index 29a81bd40a..a18a2982f9 100644 --- a/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/common/Position.scala +++ b/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/common/Position.scala @@ -15,7 +15,7 @@ import scala.scalajs.js.annotation.{JSExportAll, JSExportTopLevel} * If the character value is greater than the line length it defaults back to the line length */ @JSExportAll -@JSExportTopLevel("lsp.Position") +@JSExportTopLevel("LSPPosition") case class Position(line: Int, character: Int) { override def toString: String = s"common.Position[L:$line,C:$character]" } diff --git a/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/common/Range.scala b/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/common/Range.scala index 46944773f8..4b6f68672d 100644 --- a/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/common/Range.scala +++ b/als-lsp/shared/src/main/scala/org/mulesoft/lsp/feature/common/Range.scala @@ -12,5 +12,5 @@ import scala.scalajs.js.annotation.{JSExportAll, JSExportTopLevel} * The range's end position. */ @JSExportAll -@JSExportTopLevel("lsp.Range") +@JSExportTopLevel("LSPRange") case class Range(start: Position, end: Position) diff --git a/als-node-client/node-package/package-lock.json b/als-node-client/node-package/package-lock.json index ba266af99f..9d4bcdcd22 100644 --- a/als-node-client/node-package/package-lock.json +++ b/als-node-client/node-package/package-lock.json @@ -9,7 +9,7 @@ "version": "5.1.0-SNAPSHOT", "license": "Apache-2.0", "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.7.24", "@aml-org/amf-custom-validator": "1.4.0", "@aml-org/amf-custom-validator-web": "1.4.0", "ajv": "6.12.6", @@ -21,9 +21,9 @@ } }, "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.6.23", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.23.tgz", - "integrity": "sha512-ZL5xQ1mwxdxausmSPObn7//rpJ4vTV55nCE1asszYFSZgpSFeZeP0YuJpxCZt+YvErk9Brv7v/guodGwG7iw7A==" + "version": "0.7.24", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.7.24.tgz", + "integrity": "sha512-RmDT1ljRUuRvwZQViWgEUtq4OFZ8FHptFbB512ljY44+g+p4DOWm+J6MxWvx0tRuH8IYBUXsK3c5SchaWb85Lw==" }, "node_modules/@aml-org/amf-custom-validator": { "version": "1.4.0", @@ -803,9 +803,9 @@ }, "dependencies": { "@aml-org/amf-antlr-parsers": { - "version": "0.6.23", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.23.tgz", - "integrity": "sha512-ZL5xQ1mwxdxausmSPObn7//rpJ4vTV55nCE1asszYFSZgpSFeZeP0YuJpxCZt+YvErk9Brv7v/guodGwG7iw7A==" + "version": "0.7.24", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.7.24.tgz", + "integrity": "sha512-RmDT1ljRUuRvwZQViWgEUtq4OFZ8FHptFbB512ljY44+g+p4DOWm+J6MxWvx0tRuH8IYBUXsK3c5SchaWb85Lw==" }, "@aml-org/amf-custom-validator": { "version": "1.4.0", diff --git a/als-node-client/node-package/package.json b/als-node-client/node-package/package.json index 5eddbfb92b..222538732a 100644 --- a/als-node-client/node-package/package.json +++ b/als-node-client/node-package/package.json @@ -15,7 +15,7 @@ "als": "./dist/als-node-client.min.js" }, "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.7.24", "@aml-org/amf-custom-validator": "1.4.0", "@aml-org/amf-custom-validator-web": "1.4.0", "ajv": "6.12.6", diff --git a/als-node-client/node-package/scripts/build.sh b/als-node-client/node-package/scripts/build.sh old mode 100644 new mode 100755 index 8285f49116..8718c5f808 --- a/als-node-client/node-package/scripts/build.sh +++ b/als-node-client/node-package/scripts/build.sh @@ -4,10 +4,12 @@ mkdir -p dist cd dist -rm -f als-node-client.min.js +rm -f als-node-client.js +cp ../tmp/als-node-client.js/main.js als-node-client.js +chmod a+x als-node-client.js -echo 'Ajv = require("ajv");' >> als-node-client.min.js -cat ../../target/artifact/als-node-client.js >> als-node-client.min.js +rm -f als-node-client.min.js +cp ../tmp/als-node-client.min.js/main.js als-node-client.min.js chmod a+x als-node-client.min.js cd .. \ No newline at end of file diff --git a/als-node-client/project/build.properties b/als-node-client/project/build.properties index d91c272d4e..b1e589d9f4 100644 --- a/als-node-client/project/build.properties +++ b/als-node-client/project/build.properties @@ -1 +1 @@ -sbt.version=1.4.6 +sbt.version=1.7.1 \ No newline at end of file diff --git a/als-node-client/src/main/scala/org/mulesoft/als/nodeclient/ClientPlatformDirectoryResolver.scala b/als-node-client/src/main/scala/org/mulesoft/als/nodeclient/ClientPlatformDirectoryResolver.scala index 552361cc3d..7e6a834110 100644 --- a/als-node-client/src/main/scala/org/mulesoft/als/nodeclient/ClientPlatformDirectoryResolver.scala +++ b/als-node-client/src/main/scala/org/mulesoft/als/nodeclient/ClientPlatformDirectoryResolver.scala @@ -8,9 +8,7 @@ import scala.concurrent.ExecutionContext.Implicits.global import scala.scalajs.js import scala.scalajs.js.JSConverters._ import scala.scalajs.js.Promise -import scala.scalajs.js.annotation.ScalaJSDefined -@ScalaJSDefined class ClientPlatformDirectoryResolver(platform: Platform) extends ClientDirectoryResolver { private val internalResolver = new PlatformDirectoryResolver(platform) diff --git a/als-node-client/src/main/scala/org/mulesoft/als/nodeclient/Main.scala b/als-node-client/src/main/scala/org/mulesoft/als/nodeclient/Main.scala index 7d5419801d..e1d2f1ad36 100644 --- a/als-node-client/src/main/scala/org/mulesoft/als/nodeclient/Main.scala +++ b/als-node-client/src/main/scala/org/mulesoft/als/nodeclient/Main.scala @@ -7,13 +7,9 @@ import amf.custom.validation.internal.convert.AmfCustomValidatorClientConverters import amf.custom.validation.internal.unsafe.AmfCustomValidatorNode import io.scalajs.nodejs.process import org.mulesoft.als.server.client.platform.AlsLanguageServerFactory -import org.mulesoft.als.server.{ALSConverters, ClientNotifierFactory, JsSerializationProps, ProtocolConnectionBinder} +import org.mulesoft.als.server.{ClientNotifierFactory, JsSerializationProps, ProtocolConnectionBinder} import org.mulesoft.als.vscode.{ProtocolConnection, ServerSocketTransport} -import scala.concurrent.ExecutionContext.Implicits.global -import scala.scalajs.js.JSConverters._ -import scala.scalajs.js.Promise - // $COVERAGE-OFF$ Incompatibility between scoverage and scalaJS object Main extends PlatformSecrets { @@ -36,7 +32,7 @@ object Main extends PlatformSecrets { def main(args: Array[String]): Unit = { println("Starting ALS...") - val options = readOptions(process.argv.drop(2).toArray) + val options = readOptions(process.Process.argv.drop(2).toArray) try { println("Starting in port " + options.port) diff --git a/als-node-client/src/test/scala/org/mulesoft/als/server/modules/diagnostic/NodeJsCustomValidationByDirectoryTest.scala b/als-node-client/src/test/scala/org/mulesoft/als/server/modules/diagnostic/NodeJsCustomValidationByDirectoryTest.scala index 4f1dd6b358..e46202d0dd 100644 --- a/als-node-client/src/test/scala/org/mulesoft/als/server/modules/diagnostic/NodeJsCustomValidationByDirectoryTest.scala +++ b/als-node-client/src/test/scala/org/mulesoft/als/server/modules/diagnostic/NodeJsCustomValidationByDirectoryTest.scala @@ -17,7 +17,7 @@ import org.mulesoft.lsp.configuration.TraceKind import org.mulesoft.lsp.feature.common.TextDocumentItem import org.mulesoft.lsp.feature.diagnostic.PublishDiagnosticsParams import org.mulesoft.lsp.textsync.DidOpenTextDocumentParams -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.Future diff --git a/als-protocol/jvm/src/test/scala/org/mulesoft/als/protocol/lsp4j/LsConvertionsTest.scala b/als-protocol/jvm/src/test/scala/org/mulesoft/als/protocol/lsp4j/LsConvertionsTest.scala index 8f33615288..3c9e4f022d 100644 --- a/als-protocol/jvm/src/test/scala/org/mulesoft/als/protocol/lsp4j/LsConvertionsTest.scala +++ b/als-protocol/jvm/src/test/scala/org/mulesoft/als/protocol/lsp4j/LsConvertionsTest.scala @@ -1,11 +1,11 @@ package org.mulesoft.als.protocol.lsp4j -import org.scalatest.FunSuite +import org.scalatest.funsuite.AnyFunSuite import org.mulesoft.als.common._ import scala.collection.JavaConverters._ -class LsConvertionsTest extends FunSuite { +class LsConvertionsTest extends AnyFunSuite { test("Empty InitializeParams Conversions") { val internalParams: InternalParams = new InitializeParams() diff --git a/als-server/js/node-package/package-lock.json b/als-server/js/node-package/package-lock.json index aaff084cbe..d51ade4dd8 100644 --- a/als-server/js/node-package/package-lock.json +++ b/als-server/js/node-package/package-lock.json @@ -9,11 +9,12 @@ "version": "5.2.0-SNAPSHOT", "license": "Apache-2.0", "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.7.24", "@aml-org/amf-custom-validator": "1.4.0", "@aml-org/amf-custom-validator-web": "1.4.0", "ajv": "6.12.6", "buffer": "^6.0.3", + "fs": "latest", "https-browserify": "^1.0.0", "os-browserify": "^0.3.0", "path-browserify": "^1.0.1", @@ -36,9 +37,9 @@ } }, "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.6.23", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.23.tgz", - "integrity": "sha512-ZL5xQ1mwxdxausmSPObn7//rpJ4vTV55nCE1asszYFSZgpSFeZeP0YuJpxCZt+YvErk9Brv7v/guodGwG7iw7A==" + "version": "0.7.24", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.7.24.tgz", + "integrity": "sha512-RmDT1ljRUuRvwZQViWgEUtq4OFZ8FHptFbB512ljY44+g+p4DOWm+J6MxWvx0tRuH8IYBUXsK3c5SchaWb85Lw==" }, "node_modules/@aml-org/amf-custom-validator": { "version": "1.4.0", @@ -2863,6 +2864,11 @@ "is-callable": "^1.1.3" } }, + "node_modules/fs": { + "version": "0.0.1-security", + "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", + "integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==" + }, "node_modules/fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", @@ -4734,9 +4740,9 @@ }, "dependencies": { "@aml-org/amf-antlr-parsers": { - "version": "0.6.23", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.23.tgz", - "integrity": "sha512-ZL5xQ1mwxdxausmSPObn7//rpJ4vTV55nCE1asszYFSZgpSFeZeP0YuJpxCZt+YvErk9Brv7v/guodGwG7iw7A==" + "version": "0.7.24", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.7.24.tgz", + "integrity": "sha512-RmDT1ljRUuRvwZQViWgEUtq4OFZ8FHptFbB512ljY44+g+p4DOWm+J6MxWvx0tRuH8IYBUXsK3c5SchaWb85Lw==" }, "@aml-org/amf-custom-validator": { "version": "1.4.0", @@ -6868,6 +6874,11 @@ "is-callable": "^1.1.3" } }, + "fs": { + "version": "0.0.1-security", + "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", + "integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==" + }, "fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", diff --git a/als-server/js/node-package/package.json b/als-server/js/node-package/package.json index 44a587e423..9e6e9a950f 100644 --- a/als-server/js/node-package/package.json +++ b/als-server/js/node-package/package.json @@ -15,11 +15,12 @@ "build:dist": "webpack --config ./webpack.config.js" }, "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.7.24", "@aml-org/amf-custom-validator": "1.4.0", "@aml-org/amf-custom-validator-web": "1.4.0", "ajv": "6.12.6", "buffer": "^6.0.3", + "fs": "latest", "https-browserify": "^1.0.0", "os-browserify": "^0.3.0", "path-browserify": "^1.0.1", diff --git a/als-server/js/node-package/project/build.properties b/als-server/js/node-package/project/build.properties index d91c272d4e..22af2628c4 100644 --- a/als-server/js/node-package/project/build.properties +++ b/als-server/js/node-package/project/build.properties @@ -1 +1 @@ -sbt.version=1.4.6 +sbt.version=1.7.1 diff --git a/als-server/js/node-package/scripts/build.sh b/als-server/js/node-package/scripts/build.sh old mode 100644 new mode 100755 index bcdfa625ce..12445e0055 --- a/als-server/js/node-package/scripts/build.sh +++ b/als-server/js/node-package/scripts/build.sh @@ -1,22 +1,21 @@ #!/bin/bash - +echo '**** Running script build ****' mkdir -p lib cd lib rm -f als-server.js -echo 'Ajv = require("ajv")' >> als-server.js -cat ../../target/artifact/als-server.js >> als-server.js +cp ../tmp/als-server.js/main.js als-server.js +cp ../tmp/als-server.js/main.js ../dist/als-server.js chmod a+x als-server.js rm -f als-server.min.js -echo 'Ajv = require("ajv")' >> als-server.min.js -cat ../../target/artifact/als-server.min.js >> als-server.min.js +cp ../tmp/als-server.min.js/main.js als-server.min.js +cp ../tmp/als-server.min.js/main.js ../dist/als-server.min.js chmod a+x als-server.min.js cd .. - +pwd npm run build:dist - exit $? \ No newline at end of file diff --git a/als-server/js/node-package/webpack.config.js b/als-server/js/node-package/webpack.config.js index 926b876a84..e083c60e4a 100644 --- a/als-server/js/node-package/webpack.config.js +++ b/als-server/js/node-package/webpack.config.js @@ -33,6 +33,8 @@ const baseConfig = { }, symlinks: false, fallback: { + fs: false, + xtend: false, net: false, child_process: false, crypto: false diff --git a/als-server/js/src/test/scala/org/mulesoft/als/server/AMFValidatorTest.scala b/als-server/js/src/test/scala/org/mulesoft/als/server/AMFValidatorTest.scala index 3a31ec6a13..8f64d65c05 100644 --- a/als-server/js/src/test/scala/org/mulesoft/als/server/AMFValidatorTest.scala +++ b/als-server/js/src/test/scala/org/mulesoft/als/server/AMFValidatorTest.scala @@ -5,33 +5,35 @@ import amf.core.client.platform.model.domain.Shape import amf.core.client.platform.validation.payload.{ JsAMFPayloadValidationPlugin, JsPayloadValidator, - ShapeValidationConfiguration, - ValidatePayloadRequest + ShapeValidationConfiguration } import amf.core.internal.unsafe.PlatformSecrets import scala.scalajs.js trait AMFValidatorTest extends LanguageServerBaseTest with PlatformSecrets { + + def getAppliesFunction(fn: () => Unit): Boolean = { + fn() + logger.debug("Validator called", "AMFValidatorTest", "testValidator:applies") + false + } + + def getValidatorFunction(): JsPayloadValidator = { + def apply( + shape: Shape, + mediaType: String, + config: ShapeValidationConfiguration, + validationMode: ValidationMode + ): JsPayloadValidator = ??? + }.asInstanceOf[JsPayloadValidator] + def testValidator(fn: () => Unit): JsAMFPayloadValidationPlugin = js.Dynamic .literal( id = "test-plugin", - applies = new js.Function1[ValidatePayloadRequest, Boolean] { - def apply(element: ValidatePayloadRequest): Boolean = { - fn() - logger.debug("Validator called", "AMFValidatorTest", "testValidator:applies") - false - } - }, - validator = new js.Function4[Shape, String, ShapeValidationConfiguration, ValidationMode, JsPayloadValidator] { - def apply( - shape: Shape, - mediaType: String, - config: ShapeValidationConfiguration, - validationMode: ValidationMode - ): JsPayloadValidator = ??? - } + applies = getAppliesFunction(fn), + validator = getValidatorFunction() ) .asInstanceOf[JsAMFPayloadValidationPlugin] } diff --git a/als-server/js/src/test/scala/org/mulesoft/als/server/ClientConversionTest.scala b/als-server/js/src/test/scala/org/mulesoft/als/server/ClientConversionTest.scala index c6fd4b8fcd..c9704beb8c 100644 --- a/als-server/js/src/test/scala/org/mulesoft/als/server/ClientConversionTest.scala +++ b/als-server/js/src/test/scala/org/mulesoft/als/server/ClientConversionTest.scala @@ -21,11 +21,12 @@ import org.mulesoft.lsp.configuration.{ } import org.mulesoft.lsp.edit.TextEdit import org.mulesoft.lsp.feature.common.{Position, Range, VersionedTextDocumentIdentifier} -import org.scalatest.{FlatSpec, Matchers} +import org.scalatest.flatspec.AnyFlatSpec +import org.scalatest.matchers.should.Matchers import scala.scalajs.js.JSON -class ClientConversionTest extends FlatSpec with Matchers { +class ClientConversionTest extends AnyFlatSpec with Matchers { behavior of "Server Classes" private val p: Position = Position(10, 10) diff --git a/als-server/js/src/test/scala/org/mulesoft/als/server/JsLanguageServerTest.scala b/als-server/js/src/test/scala/org/mulesoft/als/server/JsLanguageServerTest.scala index 7cc4533e93..a1df9c8f30 100644 --- a/als-server/js/src/test/scala/org/mulesoft/als/server/JsLanguageServerTest.scala +++ b/als-server/js/src/test/scala/org/mulesoft/als/server/JsLanguageServerTest.scala @@ -2,9 +2,7 @@ package org.mulesoft.als.server import amf.core.client.platform.resource.ClientResourceLoader import amf.core.client.scala.resource.ResourceLoader -import amf.core.internal.convert.CoreClientConverters.ClientList -import org.mulesoft.als.configuration.{DefaultJsServerSystemConf, JsServerSystemConf, ResourceLoaderConverter} -import org.mulesoft.als.logger.EmptyLogger +import org.mulesoft.als.configuration.{DefaultJsServerSystemConf, JsServerSystemConf} import org.mulesoft.als.server.client.platform.{AlsClientNotifier, AlsLanguageServerFactory} import org.mulesoft.als.server.feature.serialization.SerializationResult import org.mulesoft.als.server.feature.workspace.FilesInProjectParams @@ -14,6 +12,7 @@ import scala.concurrent.ExecutionContextExecutor import scala.scalajs.js import scala.scalajs.js.JSConverters.{JSRichFutureNonThenable, JSRichGenTraversableOnce} import scala.scalajs.js.Promise +import scala.scalajs.js.annotation.JSName class JsLanguageServerTest extends AMFValidatorTest { override implicit val executionContext: ExecutionContextExecutor = scala.concurrent.ExecutionContext.global @@ -86,13 +85,21 @@ class JsLanguageServerTest extends AMFValidatorTest { .asInstanceOf[JsClientLogger] } + trait AcceptsFunction extends js.Object { + def accepts(): Boolean + } + + trait FetchFunction extends js.Object { + def fetch(): Promise[_] + } + val fakeRL: ClientResourceLoader = js.Dynamic .literal( - accepts = new js.Function1[String, Boolean] { - override def apply(arg1: String): Boolean = false + accepts = new AcceptsFunction { + override def accepts: Boolean = false }, - fetch = new js.Function1[String, js.Promise[_]] { - override def apply(arg1: String): Promise[_] = js.Promise.resolve[String]("") + fetch = new FetchFunction { + override def fetch: Promise[_] = js.Promise.resolve[String]("") } ) .asInstanceOf[ClientResourceLoader] @@ -132,11 +139,15 @@ class JsLanguageServerTest extends AMFValidatorTest { def toClient: ClientResourceLoader = js.Dynamic .literal( - accepts = new js.Function1[String, Boolean] { - override def apply(arg1: String): Boolean = rl.accepts(arg1) + accepts = new AcceptsFunction { + override def accepts: Boolean = { + def apply(arg1: String): Boolean = rl.accepts(arg1) + }.asInstanceOf[Boolean] }, - fetch = new js.Function1[String, js.Promise[_]] { - override def apply(arg1: String): Promise[_] = rl.fetch(arg1).toJSPromise + fetch = new FetchFunction { + override def fetch: Promise[_] = { + def apply(arg1: String): Promise[_] = rl.fetch(arg1).toJSPromise + }.asInstanceOf[Promise[_]] } ) .asInstanceOf[ClientResourceLoader] diff --git a/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/GsonTypeAdapters.scala b/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/GsonTypeAdapters.scala index 41bdaf59ff..87c2e23b55 100644 --- a/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/GsonTypeAdapters.scala +++ b/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/GsonTypeAdapters.scala @@ -3,11 +3,11 @@ package org.mulesoft.als.server.lsp4j import com.google.gson.Gson import com.google.gson.stream.JsonReader import org.mulesoft.als.server.lsp4j.extension.AlsInitializeParamsTypeAdapter -import org.scalatest.FunSuite +import org.scalatest.funsuite.AnyFunSuite import java.io.{ByteArrayInputStream, InputStreamReader} -class GsonTypeAdapters extends FunSuite { +class GsonTypeAdapters extends AnyFunSuite { private val gson = new Gson() diff --git a/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/LsConvertionsTest.scala b/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/LsConvertionsTest.scala index c4f65d45fa..a0061e7793 100644 --- a/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/LsConvertionsTest.scala +++ b/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/LsConvertionsTest.scala @@ -7,11 +7,11 @@ import org.mulesoft.als.server.protocol.configuration import org.mulesoft.lsp.LspConversions._ import org.mulesoft.lsp.configuration.{TextDocumentClientCapabilities => InternalDocumentClient} import org.mulesoft.lsp.feature.diagnostic.{Diagnostic => InternalDiagnostic} -import org.scalatest.FunSuite +import org.scalatest.funsuite.AnyFunSuite import java.util import scala.collection.JavaConverters._ -class LsConvertionsTest extends FunSuite { +class LsConvertionsTest extends AnyFunSuite { test("Empty InitializeParams Conversions") { val internalParams: configuration.AlsInitializeParams = new AlsInitializeParams() diff --git a/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/LspCustomEnvironment.scala b/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/LspCustomEnvironment.scala index 334ff54cb9..6f31ae4263 100644 --- a/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/LspCustomEnvironment.scala +++ b/als-server/jvm/src/test/scala/org/mulesoft/als/server/lsp4j/LspCustomEnvironment.scala @@ -7,15 +7,16 @@ import amf.core.internal.unsafe.PlatformSecrets import org.eclipse.lsp4j.{DidOpenTextDocumentParams, TextDocumentItem, TraceValue} import org.mulesoft.als.configuration.ResourceLoaderConverter import org.mulesoft.als.logger.EmptyLogger -import org.mulesoft.als.server.{Flaky, MockDiagnosticClientNotifier} import org.mulesoft.als.server.client.platform.AlsLanguageServerFactory import org.mulesoft.als.server.lsp4j.extension.AlsInitializeParams import org.mulesoft.als.server.modules.diagnostic.ALL_TOGETHER -import org.scalatest.{AsyncFunSuite, Matchers} +import org.mulesoft.als.server.{Flaky, MockDiagnosticClientNotifier} +import org.scalatest.funsuite.AsyncFunSuite +import org.scalatest.matchers.should.Matchers -import scala.compat.java8.FutureConverters._ -import scala.collection.JavaConverters._ import java.util.concurrent.CompletableFuture +import scala.collection.JavaConverters._ +import scala.compat.java8.FutureConverters._ import scala.concurrent.Future class LspCustomEnvironment extends AsyncFunSuite with Matchers with PlatformSecrets { diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/feature/configuration/UpdateConfigurationParams.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/feature/configuration/UpdateConfigurationParams.scala index 0dcee7f2dd..2080579895 100644 --- a/als-server/shared/src/main/scala/org/mulesoft/als/server/feature/configuration/UpdateConfigurationParams.scala +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/feature/configuration/UpdateConfigurationParams.scala @@ -3,7 +3,7 @@ package org.mulesoft.als.server.feature.configuration import org.mulesoft.als.configuration.TemplateTypes import org.mulesoft.lsp.configuration.FormattingOptions -import scala.scalajs.js.annotation.{JSExport, JSExportAll, JSExportTopLevel} +import scala.scalajs.js.annotation.{JSExportAll, JSExportTopLevel} case class UpdateConfigurationParams( updateFormatOptionsParams: Option[Map[String, FormattingOptions]], @@ -13,7 +13,7 @@ case class UpdateConfigurationParams( ) @JSExportAll -@JSExport +@JSExportTopLevel("GenericOptionKeys") object GenericOptionKeys { val KeepTokens = "keepTokens" } diff --git a/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/diagnostic/ValidationGatherer.scala b/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/diagnostic/ValidationGatherer.scala index 22faa392e7..58041fb7a4 100644 --- a/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/diagnostic/ValidationGatherer.scala +++ b/als-server/shared/src/main/scala/org/mulesoft/als/server/modules/diagnostic/ValidationGatherer.scala @@ -1,10 +1,10 @@ package org.mulesoft.als.server.modules.diagnostic +import org.mulesoft.common.collections._ import org.mulesoft.lsp.feature.telemetry.TelemetryProvider import scala.collection.mutable -import scala.scalajs.js.annotation.JSExport -import org.mulesoft.common.collections._ +import scala.scalajs.js.annotation.JSExportTopLevel class ValidationGatherer(telemetryProvider: TelemetryProvider) { @@ -56,7 +56,7 @@ object ErrorsWithTree { object PARSING_BEFORE extends DiagnosticNotificationsKind("PARSING_BEFORE") object ALL_TOGETHER extends DiagnosticNotificationsKind("ALL_TOGETHER") -@JSExport +@JSExportTopLevel("DiagnosticNotificationsKind") object DiagnosticNotificationsKind { val parsingBefore: DiagnosticNotificationsKind = PARSING_BEFORE val allTogether: DiagnosticNotificationsKind = ALL_TOGETHER diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/FailedLogs.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/FailedLogs.scala index 69b5f608ef..4ac99a97f2 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/FailedLogs.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/FailedLogs.scala @@ -3,7 +3,7 @@ package org.mulesoft.als.server import org.mulesoft.als.logger.Logger import org.mulesoft.als.logger.MessageSeverity.MessageSeverity import org.scalatest.CompleteLastly.complete -import org.scalatest._ +import org.scalatest.{FutureOutcome, TestData} import scala.collection.mutable import scala.concurrent.ExecutionContext.Implicits.global diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/LanguageServerBaseTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/LanguageServerBaseTest.scala index 05e39eeb94..02026447f8 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/LanguageServerBaseTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/LanguageServerBaseTest.scala @@ -25,7 +25,9 @@ import org.mulesoft.lsp.feature.documentsymbol.{ import org.mulesoft.lsp.feature.telemetry.TelemetryMessage import org.mulesoft.lsp.textsync._ import org.mulesoft.lsp.workspace.{DidChangeWorkspaceFoldersParams, ExecuteCommandParams, WorkspaceFoldersChangeEvent} -import org.scalatest._ +import org.scalatest.funsuite.AsyncFunSuite +import org.scalatest.matchers.should.Matchers +import org.scalatest.{FutureOutcome, OptionValues} import java.io.StringWriter import scala.concurrent.Future diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/LanguageServerImplTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/LanguageServerImplTest.scala index d5e3f2a723..1bc079c5e7 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/LanguageServerImplTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/LanguageServerImplTest.scala @@ -1,32 +1,16 @@ package org.mulesoft.als.server -import org.mulesoft.als.convert.LspRangeConverter import org.mulesoft.als.logger.Logger import org.mulesoft.als.server.client.scala.LanguageServerBuilder import org.mulesoft.als.server.modules.ast.TextListener -import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.als.server.modules.{WorkspaceManagerFactory, WorkspaceManagerFactoryBuilder} +import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.als.server.protocol.textsync.{AlsTextDocumentSyncConsumer, DidFocusParams} -import org.mulesoft.als.server.textsync.{ - TextDocument, - TextDocumentContainer, - TextDocumentManager, - TextDocumentSyncBuilder -} -import org.mulesoft.lsp.feature.common.{TextDocumentIdentifier, TextDocumentItem} -import org.mulesoft.lsp.feature.completion.{CompletionParams, CompletionRequestType} +import org.mulesoft.als.server.textsync.{TextDocument, TextDocumentContainer, TextDocumentManager} +import org.mulesoft.lsp.feature.common.TextDocumentItem import org.mulesoft.lsp.textsync.TextDocumentSyncKind.TextDocumentSyncKind -import org.mulesoft.lsp.textsync.{ - DidChangeTextDocumentParams, - DidCloseTextDocumentParams, - DidOpenTextDocumentParams, - SynchronizationClientCapabilities, - TextDocumentSyncConfigType, - TextDocumentSyncKind, - TextDocumentSyncOptions -} -import org.scalatest.Assertion -import org.mulesoft.lsp.feature.common.{Position => LspPosition, Range => LspRange} +import org.mulesoft.lsp.textsync._ +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/RequestMapTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/RequestMapTest.scala index 1ea5bce661..de592abae8 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/RequestMapTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/RequestMapTest.scala @@ -1,7 +1,9 @@ package org.mulesoft.als.server import org.mulesoft.lsp.feature.{RequestHandler, RequestType} -import org.scalatest.{AsyncFlatSpec, Matchers, OptionValues} +import org.scalatest.OptionValues +import org.scalatest.flatspec.AsyncFlatSpec +import org.scalatest.matchers.should.Matchers import scala.concurrent.Future diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/ServerWithMarkerTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/ServerWithMarkerTest.scala index 326bd7ee6c..f20ceeaf82 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/ServerWithMarkerTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/ServerWithMarkerTest.scala @@ -4,9 +4,7 @@ import amf.core.client.scala.AMFGraphConfiguration import org.mulesoft.als.common.{MarkerFinderTest, MarkerInfo} import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.als.server.protocol.configuration.AlsInitializeParams -import org.mulesoft.als.server.workspace.command.Commands import org.mulesoft.lsp.configuration.TraceKind -import org.mulesoft.lsp.workspace.ExecuteCommandParams import org.scalatest.BeforeAndAfterEach import scala.concurrent.Future diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/codeactions/CodeActionsWithGoldenTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/codeactions/CodeActionsWithGoldenTest.scala index 985618666d..00210cb312 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/codeactions/CodeActionsWithGoldenTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/codeactions/CodeActionsWithGoldenTest.scala @@ -11,7 +11,7 @@ import org.mulesoft.als.server.{MockTelemetryParsingClientNotifier, ServerWithMa import org.mulesoft.lsp.feature.codeactions.CodeActionKind.CodeActionKind import org.mulesoft.lsp.feature.codeactions._ import org.mulesoft.lsp.feature.common.{Range, TextDocumentIdentifier} -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/completion/raml/IncludeCacheTests.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/completion/raml/IncludeCacheTests.scala index 7c7d6cbe83..05c1a15e21 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/completion/raml/IncludeCacheTests.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/completion/raml/IncludeCacheTests.scala @@ -3,13 +3,13 @@ package org.mulesoft.als.server.modules.completion.raml import amf.core.client.common.remote.Content import amf.core.client.scala.AMFGraphConfiguration import amf.core.client.scala.resource.ResourceLoader +import org.mulesoft.als.server.MockDiagnosticClientNotifier +import org.mulesoft.als.server.client.scala.LanguageServerBuilder import org.mulesoft.als.server.modules.WorkspaceManagerFactoryBuilder import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.als.server.protocol.configuration.AlsInitializeParams -import org.mulesoft.als.server.MockDiagnosticClientNotifier -import org.mulesoft.als.server.client.scala.LanguageServerBuilder import org.mulesoft.amfintegration.amfconfiguration.EditorConfiguration -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.collection.mutable import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/definition/ServerDefinitionTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/definition/ServerDefinitionTest.scala index 331231f0f1..62fe04828a 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/definition/ServerDefinitionTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/definition/ServerDefinitionTest.scala @@ -10,7 +10,7 @@ import org.mulesoft.als.server.{LanguageServerBaseTest, MockDiagnosticClientNoti import org.mulesoft.lsp.feature.common.{LocationLink, TextDocumentIdentifier} import org.mulesoft.lsp.feature.definition.{DefinitionParams, DefinitionRequestType} import org.mulesoft.lsp.feature.typedefinition.{TypeDefinitionParams, TypeDefinitionRequestType} -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/CleanDiagnosticTreeTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/CleanDiagnosticTreeTest.scala index 894d950535..483f70dece 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/CleanDiagnosticTreeTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/CleanDiagnosticTreeTest.scala @@ -9,7 +9,6 @@ import org.mulesoft.als.server.modules.configuration.WorkspaceConfigurationProvi import org.mulesoft.als.server.modules.diagnostic.custom.CustomValidationManager import org.mulesoft.als.server.modules.telemetry.TelemetryManager import org.mulesoft.als.server.modules.workspace.{DefaultProjectConfigurationProvider, WorkspaceContentManager} -import org.mulesoft.amfintegration.AmfImplicits.AmfAnnotationsImp import org.mulesoft.amfintegration.amfconfiguration.{ ALSConfigurationState, EditorConfiguration, @@ -18,7 +17,7 @@ import org.mulesoft.amfintegration.amfconfiguration.{ } import org.mulesoft.lsp.feature.diagnostic.PublishDiagnosticsParams import org.mulesoft.lsp.feature.telemetry.TelemetryMessage -import org.scalatest.AsyncFlatSpec +import org.scalatest.flatspec.AsyncFlatSpec import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/DiagnosticConverterTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/DiagnosticConverterTest.scala index 4d01d01094..5599c596c9 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/DiagnosticConverterTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/DiagnosticConverterTest.scala @@ -2,9 +2,10 @@ package org.mulesoft.als.server.modules.diagnostic import amf.core.client.common.validation.{ProfileNames, SeverityLevels} import amf.core.client.scala.validation.AMFValidationResult -import org.scalatest.{FunSuite, Matchers} +import org.scalatest.funsuite.AnyFunSuite +import org.scalatest.matchers.should.Matchers -class DiagnosticConverterTest extends FunSuite with Matchers { +class DiagnosticConverterTest extends AnyFunSuite with Matchers { private val withoutLocation = new AlsValidationResult( diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/FromJsonLDValidatorExecutor.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/FromJsonLDValidatorExecutor.scala index d80c2b98e4..bb076b54ec 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/FromJsonLDValidatorExecutor.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/diagnostic/FromJsonLDValidatorExecutor.scala @@ -12,7 +12,7 @@ import amf.custom.validation.client.scala.{ import org.mulesoft.als.common.diff.FileAssertionTest import org.mulesoft.als.server.TimeoutFuture import org.scalatest.Assertion -import org.scalatest.Matchers.{fail, succeed} +import org.scalatest.Assertions.{fail, succeed} import scala.collection.mutable import scala.concurrent.ExecutionContext.Implicits.global diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/foldings/FoldingRangeTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/foldings/FoldingRangeTest.scala index 3cfcf60b4f..c68e4b54c8 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/foldings/FoldingRangeTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/foldings/FoldingRangeTest.scala @@ -3,19 +3,19 @@ package org.mulesoft.als.server.modules.foldings import amf.core.client.common.remote.Content import amf.core.client.scala.resource.ResourceLoader import org.mulesoft.als.logger.EmptyLogger +import org.mulesoft.als.server.MockDiagnosticClientNotifier import org.mulesoft.als.server.client.scala.LanguageServerBuilder import org.mulesoft.als.server.modules.WorkspaceManagerFactoryBuilder import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.als.server.protocol.configuration.AlsInitializeParams import org.mulesoft.als.server.workspace.WorkspaceManager -import org.mulesoft.als.server.{LanguageServerBaseTest, MockDiagnosticClientNotifier} import org.mulesoft.amfintegration.amfconfiguration.EditorConfiguration import org.mulesoft.lsp.configuration.TraceKind import org.mulesoft.lsp.feature.RequestHandler import org.mulesoft.lsp.feature.common.{TextDocumentIdentifier, TextDocumentItem} import org.mulesoft.lsp.feature.folding.{FoldingRange, FoldingRangeParams, FoldingRangeRequestType} import org.mulesoft.lsp.textsync.DidOpenTextDocumentParams -import org.scalatest.AsyncFreeSpecLike +import org.scalatest.freespec.AsyncFreeSpecLike import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/hover/HoverTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/hover/HoverTest.scala index 7500f1a3bd..54400f255f 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/hover/HoverTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/hover/HoverTest.scala @@ -5,10 +5,10 @@ import org.mulesoft.als.convert.LspRangeConverter import org.mulesoft.als.server.client.scala.LanguageServerBuilder import org.mulesoft.als.server.modules.WorkspaceManagerFactoryBuilder import org.mulesoft.als.server.protocol.LanguageServer -import org.mulesoft.als.server.{FailedLogs, MockTelemetryParsingClientNotifier, ServerWithMarkerTest} +import org.mulesoft.als.server.{MockTelemetryParsingClientNotifier, ServerWithMarkerTest} import org.mulesoft.lsp.feature.common.TextDocumentIdentifier import org.mulesoft.lsp.feature.hover.{HoverParams, HoverRequestType} -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/links/FindLinksTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/links/FindLinksTest.scala index dc8b39799c..dc3b5907b3 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/links/FindLinksTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/links/FindLinksTest.scala @@ -8,7 +8,7 @@ import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.als.server.{LanguageServerBaseTest, MockDiagnosticClientNotifier} import org.mulesoft.lsp.feature.common.TextDocumentIdentifier import org.mulesoft.lsp.feature.link.{DocumentLink, DocumentLinkParams, DocumentLinkRequestType} -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/reference/ServerReferencesTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/reference/ServerReferencesTest.scala index 961b7aa095..b1b61c224c 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/reference/ServerReferencesTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/reference/ServerReferencesTest.scala @@ -9,7 +9,7 @@ import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.als.server.{MockTelemetryParsingClientNotifier, ServerWithMarkerTest} import org.mulesoft.lsp.feature.common.{Location, TextDocumentIdentifier} import org.mulesoft.lsp.feature.implementation.{ImplementationParams, ImplementationRequestType} -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/rename/ServerRenameTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/rename/ServerRenameTest.scala index 2aa9145629..4a67cfab52 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/rename/ServerRenameTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/rename/ServerRenameTest.scala @@ -11,7 +11,7 @@ import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.als.server.{LanguageServerBaseTest, MockDiagnosticClientNotifier} import org.mulesoft.lsp.feature.common.TextDocumentIdentifier import org.mulesoft.lsp.feature.rename.{PrepareRenameParams, PrepareRenameRequestType, RenameParams, RenameRequestType} -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/serialization/ConversionRequestTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/serialization/ConversionRequestTest.scala index e77feca187..59a01baca3 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/serialization/ConversionRequestTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/serialization/ConversionRequestTest.scala @@ -11,7 +11,7 @@ import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.als.server.workspace.ChangesWorkspaceConfiguration import org.mulesoft.als.server.{LanguageServerBaseTest, MockDiagnosticClientNotifier} import org.mulesoft.lsp.workspace.ExecuteCommandParams -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/serialization/SerializationTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/serialization/SerializationTest.scala index 875913753c..dc150f93b6 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/serialization/SerializationTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/modules/serialization/SerializationTest.scala @@ -25,7 +25,7 @@ import org.mulesoft.amfintegration.amfconfiguration.EditorConfiguration import org.mulesoft.lsp.configuration.TraceKind import org.mulesoft.lsp.feature.common.TextDocumentItem import org.mulesoft.lsp.textsync.DidOpenTextDocumentParams -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import org.yaml.builder.{DocBuilder, JsonOutputBuilder} import org.yaml.model.{YDocument, YMap, YSequence} import org.yaml.parser.YamlParser diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/stagingarea/parser/ParserStagingAreaTests.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/stagingarea/parser/ParserStagingAreaTests.scala index c1d3bf8b6b..a7cf324c2f 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/stagingarea/parser/ParserStagingAreaTests.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/stagingarea/parser/ParserStagingAreaTests.scala @@ -7,12 +7,13 @@ import org.mulesoft.als.logger.MessageSeverity.MessageSeverity import org.mulesoft.als.server.modules.ast.{CHANGE_FILE, CLOSE_FILE, NotificationKind, OPEN_FILE} import org.mulesoft.als.server.modules.workspace.ParserStagingArea import org.mulesoft.als.server.textsync.{EnvironmentProvider, TextDocument} -import org.scalatest.{FlatSpec, Matchers} +import org.scalatest.flatspec.AnyFlatSpec +import org.scalatest.matchers.should.Matchers import scala.collection.mutable.ListBuffer import scala.concurrent.Future -class ParserStagingAreaTests extends FlatSpec with Matchers { +class ParserStagingAreaTests extends AnyFlatSpec with Matchers { private val dummyEnvironmentProvider = new EnvironmentProvider { override def getResourceLoader: ResourceLoader = new ResourceLoader { diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceCacheTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceCacheTest.scala index a4ecadd801..cba8689524 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceCacheTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceCacheTest.scala @@ -18,7 +18,8 @@ import org.mulesoft.als.server.textsync.{EnvironmentProvider, TextDocumentContai import org.mulesoft.amfintegration.amfconfiguration.EditorConfiguration import org.mulesoft.lsp.feature.diagnostic.PublishDiagnosticsParams import org.mulesoft.lsp.feature.telemetry.TelemetryMessage -import org.scalatest.{AsyncFunSuite, Matchers} +import org.scalatest.funsuite.AsyncFunSuite +import org.scalatest.matchers.should.Matchers import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerSymbolTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerSymbolTest.scala index e4367c50f8..16876f53d3 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerSymbolTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerSymbolTest.scala @@ -10,7 +10,7 @@ import org.mulesoft.lsp.configuration.TraceKind import org.mulesoft.lsp.feature.common.{TextDocumentIdentifier, TextDocumentItem} import org.mulesoft.lsp.feature.documentsymbol.{DocumentSymbolParams, DocumentSymbolRequestType} import org.mulesoft.lsp.textsync.DidOpenTextDocumentParams -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.ExecutionContext diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerTelemetryTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerTelemetryTest.scala index 75840b1f6a..2e0edc5b65 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerTelemetryTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerTelemetryTest.scala @@ -13,7 +13,7 @@ import org.mulesoft.lsp.feature.common.{TextDocumentIdentifier, TextDocumentItem import org.mulesoft.lsp.feature.documentsymbol.{DocumentSymbolParams, DocumentSymbolRequestType} import org.mulesoft.lsp.feature.telemetry.MessageTypes import org.mulesoft.lsp.textsync.DidOpenTextDocumentParams -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerTest.scala index ee7d4bce7e..c7b4acd750 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerTest.scala @@ -17,7 +17,7 @@ import org.mulesoft.lsp.feature.common.{Position, Range} import org.mulesoft.lsp.feature.diagnostic.PublishDiagnosticsParams import org.mulesoft.lsp.feature.telemetry.TelemetryMessage import org.mulesoft.lsp.workspace.ExecuteCommandParams -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerWithoutDiagnosticsTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerWithoutDiagnosticsTest.scala index bffbab21f3..a637c99236 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerWithoutDiagnosticsTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceManagerWithoutDiagnosticsTest.scala @@ -10,7 +10,7 @@ import org.mulesoft.als.server.{LanguageServerBaseTest, MockDiagnosticClientNoti import org.mulesoft.lsp.configuration.TraceKind import org.mulesoft.lsp.feature.common.TextDocumentIdentifier import org.mulesoft.lsp.feature.documentsymbol.{DocumentSymbolParams, DocumentSymbolRequestType} -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceParserRepositoryTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceParserRepositoryTest.scala index a45bc0c6b5..f1817962a0 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceParserRepositoryTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/WorkspaceParserRepositoryTest.scala @@ -5,7 +5,6 @@ import amf.core.client.scala.model.document.BaseUnit import amf.core.internal.unsafe.PlatformSecrets import org.mulesoft.als.logger.EmptyLogger import org.mulesoft.als.server.modules.workspace.{ParsedUnit, WorkspaceParserRepository} -import org.mulesoft.amfintegration.AmfImplicits.AmfAnnotationsImp import org.mulesoft.amfintegration.amfconfiguration.{ ALSConfigurationState, AmfParseResult, @@ -13,7 +12,8 @@ import org.mulesoft.amfintegration.amfconfiguration.{ EmptyProjectConfigurationState } import org.mulesoft.amfintegration.dialect.dialects.ExternalFragmentDialect -import org.scalatest.{AsyncFunSuite, Matchers} +import org.scalatest.funsuite.AsyncFunSuite +import org.scalatest.matchers.should.Matchers import scala.concurrent.ExecutionContext.Implicits.global import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/ServerFileUsageTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/ServerFileUsageTest.scala index 2d53be26c7..764e60216e 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/ServerFileUsageTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/fileusage/ServerFileUsageTest.scala @@ -13,7 +13,7 @@ import org.mulesoft.als.server.{LanguageServerBaseTest, MockDiagnosticClientNoti import org.mulesoft.amfintegration.amfconfiguration.EditorConfiguration import org.mulesoft.lsp.configuration.TraceKind import org.mulesoft.lsp.feature.common.{Location, TextDocumentIdentifier} -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.{ExecutionContext, Future} diff --git a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/highlights/DocumentHighlightTest.scala b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/highlights/DocumentHighlightTest.scala index f8b5f26112..838c0f218d 100644 --- a/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/highlights/DocumentHighlightTest.scala +++ b/als-server/shared/src/test/scala/org/mulesoft/als/server/workspace/highlights/DocumentHighlightTest.scala @@ -3,12 +3,12 @@ package org.mulesoft.als.server.workspace.highlights import amf.core.client.common.remote.Content import amf.core.client.scala.resource.ResourceLoader import org.mulesoft.als.logger.EmptyLogger +import org.mulesoft.als.server.MockDiagnosticClientNotifier import org.mulesoft.als.server.client.scala.LanguageServerBuilder import org.mulesoft.als.server.modules.WorkspaceManagerFactoryBuilder import org.mulesoft.als.server.protocol.LanguageServer import org.mulesoft.als.server.protocol.configuration.AlsInitializeParams import org.mulesoft.als.server.workspace.WorkspaceManager -import org.mulesoft.als.server.{LanguageServerBaseTest, MockDiagnosticClientNotifier} import org.mulesoft.amfintegration.amfconfiguration.EditorConfiguration import org.mulesoft.lsp.configuration.TraceKind import org.mulesoft.lsp.feature.RequestHandler @@ -20,7 +20,7 @@ import org.mulesoft.lsp.feature.highlight.{ DocumentHighlightRequestType } import org.mulesoft.lsp.textsync.DidOpenTextDocumentParams -import org.scalatest.{AsyncFreeSpec, AsyncFreeSpecLike} +import org.scalatest.freespec.AsyncFreeSpecLike import scala.concurrent.{ExecutionContext, Future} diff --git a/als-structure/js/package-lock.json b/als-structure/js/package-lock.json index 8f163663e7..9f7f48da4b 100644 --- a/als-structure/js/package-lock.json +++ b/als-structure/js/package-lock.json @@ -1,7 +1,7 @@ { "name": "als-structure", "version": "1.0.0", - "lockfileVersion": 3, + "lockfileVersion": 2, "requires": true, "packages": { "": { @@ -9,14 +9,14 @@ "version": "1.0.0", "license": "ISC", "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", "ajv": "6.12.6" } }, "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.6.23", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.23.tgz", - "integrity": "sha512-ZL5xQ1mwxdxausmSPObn7//rpJ4vTV55nCE1asszYFSZgpSFeZeP0YuJpxCZt+YvErk9Brv7v/guodGwG7iw7A==" + "version": "0.6.22-SCALAJS1.6-SNAPSHOT", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", + "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" }, "node_modules/ajv": { "version": "6.12.6", @@ -64,5 +64,51 @@ "punycode": "^2.1.0" } } + }, + "dependencies": { + "@aml-org/amf-antlr-parsers": { + "version": "0.6.22-SCALAJS1.6-SNAPSHOT", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", + "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + } } } diff --git a/als-structure/js/package.json b/als-structure/js/package.json index f7a7ceb214..61364572cc 100644 --- a/als-structure/js/package.json +++ b/als-structure/js/package.json @@ -6,7 +6,7 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", "ajv": "6.12.6" }, "author": "", diff --git a/als-structure/shared/src/test/resources/AML/AsyncAPI/fragment.json b/als-structure/shared/src/test/resources/AML/AsyncAPI/fragment.json index 9c5570af2b..3be1fdfd68 100644 --- a/als-structure/shared/src/test/resources/AML/AsyncAPI/fragment.json +++ b/als-structure/shared/src/test/resources/AML/AsyncAPI/fragment.json @@ -48,7 +48,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "key2", @@ -74,7 +76,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/AML/AsyncAPI/library.json b/als-structure/shared/src/test/resources/AML/AsyncAPI/library.json index eade9bb237..0b6ac96b3a 100644 --- a/als-structure/shared/src/test/resources/AML/AsyncAPI/library.json +++ b/als-structure/shared/src/test/resources/AML/AsyncAPI/library.json @@ -48,7 +48,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -151,7 +153,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "key2", @@ -177,7 +181,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/AML/complex-instance-with-dialect/dialect.json b/als-structure/shared/src/test/resources/AML/complex-instance-with-dialect/dialect.json index 2e34ee66d1..0bbe814ac2 100644 --- a/als-structure/shared/src/test/resources/AML/complex-instance-with-dialect/dialect.json +++ b/als-structure/shared/src/test/resources/AML/complex-instance-with-dialect/dialect.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "externals", @@ -100,7 +104,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -203,7 +209,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "n1", @@ -254,7 +262,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -336,7 +346,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "obj", @@ -362,7 +374,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "arrobj", @@ -388,7 +402,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "sca", @@ -414,7 +430,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "arr", @@ -440,7 +458,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -472,6 +492,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/AML/complex-instance-with-dialect/instance.json b/als-structure/shared/src/test/resources/AML/complex-instance-with-dialect/instance.json index 7b0e112427..58f5b2d6c6 100644 --- a/als-structure/shared/src/test/resources/AML/complex-instance-with-dialect/instance.json +++ b/als-structure/shared/src/test/resources/AML/complex-instance-with-dialect/instance.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "arrobj", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "arr", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "nested", @@ -126,7 +132,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "otherNested", @@ -152,7 +160,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/AML/meta-dialect/complete.json b/als-structure/shared/src/test/resources/AML/meta-dialect/complete.json index ce651ad4d4..f276e9e52f 100644 --- a/als-structure/shared/src/test/resources/AML/meta-dialect/complete.json +++ b/als-structure/shared/src/test/resources/AML/meta-dialect/complete.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "externals", @@ -100,7 +104,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -203,7 +209,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Mapping1", @@ -229,7 +237,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -309,7 +319,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Mapping2", @@ -335,7 +347,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -442,7 +456,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "schemes", @@ -468,7 +484,9 @@ "character": 27 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/AML/vocabulary/vocabulary.json b/als-structure/shared/src/test/resources/AML/vocabulary/vocabulary.json index 2ffd4110a7..5c7fe75945 100644 --- a/als-structure/shared/src/test/resources/AML/vocabulary/vocabulary.json +++ b/als-structure/shared/src/test/resources/AML/vocabulary/vocabulary.json @@ -48,7 +48,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "int", @@ -74,7 +76,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "full", @@ -125,7 +129,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -153,7 +159,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "uri", @@ -179,7 +187,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "empty-prop", @@ -205,7 +215,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "any", @@ -231,7 +243,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -309,7 +323,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -362,7 +378,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "subClassOf", @@ -388,7 +406,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -416,7 +436,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "displayName", @@ -442,7 +464,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/bindings/channel/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/bindings/channel/api-yaml-outline.json index ee7a4a93e3..70a6aac25a 100644 --- a/als-structure/shared/src/test/resources/Async20/bindings/channel/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/bindings/channel/api-yaml-outline.json @@ -48,7 +48,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/bindings/message/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/bindings/message/api-yaml-outline.json index f38a978bf3..ffe5be357d 100644 --- a/als-structure/shared/src/test/resources/Async20/bindings/message/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/bindings/message/api-yaml-outline.json @@ -98,7 +98,9 @@ "character": 26 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/bindings/operation/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/bindings/operation/api-yaml-outline.json index faee17a927..256ecbf5a5 100644 --- a/als-structure/shared/src/test/resources/Async20/bindings/operation/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/bindings/operation/api-yaml-outline.json @@ -73,7 +73,9 @@ "character": 23 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/bindings/server/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/bindings/server/api-yaml-outline.json index 5a451e4d23..b2fabe018b 100644 --- a/als-structure/shared/src/test/resources/Async20/bindings/server/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/bindings/server/api-yaml-outline.json @@ -73,7 +73,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/channel/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/channel/api-yaml-outline.json index 6fa539cbe6..11fe3a3ea1 100644 --- a/als-structure/shared/src/test/resources/Async20/channel/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/channel/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "test/first", @@ -99,7 +101,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -179,7 +183,9 @@ "character": 36 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/declarations/channel-bindings/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/declarations/channel-bindings/api-yaml-outline.json index ae1b76b6ef..ab324604be 100644 --- a/als-structure/shared/src/test/resources/Async20/declarations/channel-bindings/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/declarations/channel-bindings/api-yaml-outline.json @@ -48,7 +48,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/declarations/correlations-ids/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/declarations/correlations-ids/api-yaml-outline.json index b617ebd454..8a0bd7086c 100644 --- a/als-structure/shared/src/test/resources/Async20/declarations/correlations-ids/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/declarations/correlations-ids/api-yaml-outline.json @@ -48,7 +48,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/declarations/message-bindings/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/declarations/message-bindings/api-yaml-outline.json index ab04f99c86..4a9cf26faa 100644 --- a/als-structure/shared/src/test/resources/Async20/declarations/message-bindings/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/declarations/message-bindings/api-yaml-outline.json @@ -48,7 +48,9 @@ "character": 25 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/declarations/message-traits/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/declarations/message-traits/api-yaml-outline.json index 1ad0d666b2..cb01a003c6 100644 --- a/als-structure/shared/src/test/resources/Async20/declarations/message-traits/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/declarations/message-traits/api-yaml-outline.json @@ -48,7 +48,9 @@ "character": 18 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/declarations/messages/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/declarations/messages/api-yaml-outline.json index 2db50bd235..5132a7be83 100644 --- a/als-structure/shared/src/test/resources/Async20/declarations/messages/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/declarations/messages/api-yaml-outline.json @@ -123,7 +123,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "applicationInstanceId", @@ -149,7 +151,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -229,7 +233,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "signup", @@ -255,7 +261,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/declarations/operation-bindings/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/declarations/operation-bindings/api-yaml-outline.json index 600e997c2f..eeae79ad6c 100644 --- a/als-structure/shared/src/test/resources/Async20/declarations/operation-bindings/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/declarations/operation-bindings/api-yaml-outline.json @@ -48,7 +48,9 @@ "character": 18 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/declarations/operation-traits/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/declarations/operation-traits/api-yaml-outline.json index 0609d67660..e9ce938d47 100644 --- a/als-structure/shared/src/test/resources/Async20/declarations/operation-traits/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/declarations/operation-traits/api-yaml-outline.json @@ -48,7 +48,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/declarations/parameters/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/declarations/parameters/api-yaml-outline.json index 4a19519969..d332d5707d 100644 --- a/als-structure/shared/src/test/resources/Async20/declarations/parameters/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/declarations/parameters/api-yaml-outline.json @@ -98,7 +98,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "b", @@ -124,7 +126,9 @@ "character": 25 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/declarations/schemas/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/declarations/schemas/api-yaml-outline.json index c73212b4ee..91d2891945 100644 --- a/als-structure/shared/src/test/resources/Async20/declarations/schemas/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/declarations/schemas/api-yaml-outline.json @@ -98,7 +98,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/declarations/security-schemes/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/declarations/security-schemes/api-yaml-outline.json index 478d1df849..cbfee92a24 100644 --- a/als-structure/shared/src/test/resources/Async20/declarations/security-schemes/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/declarations/security-schemes/api-yaml-outline.json @@ -48,7 +48,9 @@ "character": 24 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/declarations/server-bindings/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/declarations/server-bindings/api-yaml-outline.json index e6fb8949fc..d8c2c6e985 100644 --- a/als-structure/shared/src/test/resources/Async20/declarations/server-bindings/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/declarations/server-bindings/api-yaml-outline.json @@ -48,7 +48,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/payload/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/payload/api-yaml-outline.json index b2633fdae7..f6b8b215d5 100644 --- a/als-structure/shared/src/test/resources/Async20/payload/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/payload/api-yaml-outline.json @@ -148,7 +148,9 @@ "character": 26 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/root/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/root/api-yaml-outline.json index 121dd33db0..15266f3556 100644 --- a/als-structure/shared/src/test/resources/Async20/root/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/root/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Contact", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "License", @@ -101,6 +107,8 @@ "character": 11 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/Async20/schemas/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/schemas/api-yaml-outline.json index 3ec27baaf0..f9f4da8c26 100644 --- a/als-structure/shared/src/test/resources/Async20/schemas/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/schemas/api-yaml-outline.json @@ -123,7 +123,9 @@ "character": 32 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/servers/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/servers/api-yaml-outline.json index 87ee7c6678..594671ac7c 100644 --- a/als-structure/shared/src/test/resources/Async20/servers/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/servers/api-yaml-outline.json @@ -48,7 +48,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "s2", @@ -74,7 +76,9 @@ "character": 29 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/Async20/servers/array/api-yaml-outline.json b/als-structure/shared/src/test/resources/Async20/servers/array/api-yaml-outline.json index 001b8b57c0..63296cde8b 100644 --- a/als-structure/shared/src/test/resources/Async20/servers/array/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/Async20/servers/array/api-yaml-outline.json @@ -123,7 +123,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/allof/allof.yml.json b/als-structure/shared/src/test/resources/OAS20/structure/allof/allof.yml.json index ae00010bc5..572d37d1ba 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/allof/allof.yml.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/allof/allof.yml.json @@ -48,7 +48,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/definitions/definitions-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/definitions/definitions-json-outline.json index fcc0a6208f..d557388483 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/definitions/definitions-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/definitions/definitions-json-outline.json @@ -98,7 +98,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -128,7 +130,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "Test3", @@ -204,7 +208,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/extensions/at-payload/api.yml.json b/als-structure/shared/src/test/resources/OAS20/structure/extensions/at-payload/api.yml.json index d24172a25f..e056463e1f 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/extensions/at-payload/api.yml.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/extensions/at-payload/api.yml.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Contact", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "License", @@ -101,7 +107,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "basePath", @@ -127,7 +135,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "host", @@ -153,7 +163,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "tags", @@ -179,7 +191,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "documentation", @@ -205,7 +219,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/v3/groups", @@ -381,7 +397,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -409,7 +427,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "properties", @@ -460,7 +480,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "name", @@ -486,7 +508,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "image", @@ -562,7 +586,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "width", @@ -588,7 +614,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "height", @@ -614,7 +642,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -681,7 +711,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "something", @@ -707,7 +739,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/inner-security/api.json.json b/als-structure/shared/src/test/resources/OAS20/structure/inner-security/api.json.json index 6fe7f00ee6..ed31088896 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/inner-security/api.json.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/inner-security/api.json.json @@ -73,7 +73,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -128,7 +130,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/parameters/endpoint-form-data.yml.json b/als-structure/shared/src/test/resources/OAS20/structure/parameters/endpoint-form-data.yml.json index bbaec02a20..74b27bd33b 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/parameters/endpoint-form-data.yml.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/parameters/endpoint-form-data.yml.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/aPath", @@ -125,7 +129,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "prop2", @@ -151,7 +157,9 @@ "character": 20 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/parameters/endpoint-param.yml.json b/als-structure/shared/src/test/resources/OAS20/structure/parameters/endpoint-param.yml.json index 489628d76a..ff1d5f1069 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/parameters/endpoint-param.yml.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/parameters/endpoint-param.yml.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/aPath", @@ -125,7 +129,9 @@ "character": 20 } }, - "children": [] + "children": [ + + ] } ] }, @@ -178,7 +184,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -231,7 +239,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -284,7 +294,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/parameters/operation-form-data.yml.json b/als-structure/shared/src/test/resources/OAS20/structure/parameters/operation-form-data.yml.json index c04448cc9b..edbbf2e6ef 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/parameters/operation-form-data.yml.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/parameters/operation-form-data.yml.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/aPath", @@ -150,7 +154,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -228,7 +234,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "prop2", @@ -254,7 +262,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/parameters/operation-param.yml.json b/als-structure/shared/src/test/resources/OAS20/structure/parameters/operation-param.yml.json index 89ead987f9..121a639fd4 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/parameters/operation-param.yml.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/parameters/operation-param.yml.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/aPath", @@ -150,7 +154,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -228,7 +234,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -281,7 +289,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -334,7 +344,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -387,7 +399,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/root/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/root/api-json-outline.json index 646542efd8..bebc11a555 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/root/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/root/api-json-outline.json @@ -23,7 +23,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 16 } }, - "children": [] + "children": [ + + ] }, { "name": "basePath", @@ -75,7 +79,9 @@ "character": 20 } }, - "children": [] + "children": [ + + ] }, { "name": "host", @@ -101,7 +107,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "Security", @@ -127,7 +135,9 @@ "character": 3 } }, - "children": [] + "children": [ + + ] }, { "name": "documentation", @@ -153,7 +163,9 @@ "character": 3 } }, - "children": [] + "children": [ + + ] }, { "name": "/aPath", @@ -179,7 +191,9 @@ "character": 16 } }, - "children": [] + "children": [ + + ] }, { "name": "securityDefinitions", @@ -230,7 +244,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/root/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/root/api-yaml-outline.json index dda2764f46..b78ed4a238 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/root/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/root/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "basePath", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "host", @@ -101,7 +107,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Security", @@ -127,7 +135,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "documentation", @@ -153,7 +163,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/aPath", @@ -179,7 +191,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "securityDefinitions", @@ -230,7 +244,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test001/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test001/api-json-outline.json index cbd77f8dc6..e296518797 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test001/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test001/api-json-outline.json @@ -23,7 +23,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "Contact", @@ -75,7 +79,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "License", @@ -101,7 +107,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "basePath", @@ -127,7 +135,9 @@ "character": 19 } }, - "children": [] + "children": [ + + ] }, { "name": "host", @@ -153,6 +163,8 @@ "character": 22 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test001/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test001/api-yaml-outline.json index f76ff78673..aee4f951c8 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test001/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test001/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Contact", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "License", @@ -101,7 +107,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "basePath", @@ -127,7 +135,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "host", @@ -153,6 +163,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test002/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test002/api-json-outline.json index cc47e5ef44..67aaa961fc 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test002/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test002/api-json-outline.json @@ -23,7 +23,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 27 } }, - "children": [] + "children": [ + + ] }, { "name": "parameters", @@ -100,7 +104,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test002/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test002/api-yaml-outline.json index 57645d16f0..cf9c463980 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test002/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test002/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "parameters", @@ -100,7 +104,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test003/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test003/api-json-outline.json index f8bc5eae09..015beb4d15 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test003/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test003/api-json-outline.json @@ -23,7 +23,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 27 } }, - "children": [] + "children": [ + + ] }, { "name": "definitions", @@ -150,7 +154,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "tag", @@ -176,7 +182,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -206,7 +214,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test003/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test003/api-yaml-outline.json index 3e48010eef..c58d994fa7 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test003/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test003/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "definitions", @@ -150,7 +154,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "tag", @@ -176,7 +182,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -206,7 +214,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test004/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test004/api-json-outline.json index 0e8f7c5915..b334e41abd 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test004/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test004/api-json-outline.json @@ -23,7 +23,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 27 } }, - "children": [] + "children": [ + + ] }, { "name": "Security", @@ -75,7 +79,9 @@ "character": 3 } }, - "children": [] + "children": [ + + ] }, { "name": "securityDefinitions", @@ -126,7 +132,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "internalApiKey", @@ -152,7 +160,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test004/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test004/api-yaml-outline.json index f4f94de888..c00f7152b3 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test004/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test004/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Security", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "securityDefinitions", @@ -126,7 +132,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "internalApiKey", @@ -152,7 +160,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test005/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test005/api-json-outline.json index 940c7bfb1d..d86e817509 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test005/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test005/api-json-outline.json @@ -23,7 +23,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 27 } }, - "children": [] + "children": [ + + ] }, { "name": "responses", @@ -100,7 +104,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "r2", @@ -126,7 +132,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test005/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test005/api-yaml-outline.json index 82872e3e96..65c37a6a4d 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test005/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test005/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "responses", @@ -100,7 +104,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "r2", @@ -126,7 +132,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test006/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test006/api-json-outline.json index 855d2e6cd8..5a9727873a 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test006/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test006/api-json-outline.json @@ -23,7 +23,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 27 } }, - "children": [] + "children": [ + + ] }, { "name": "tags", @@ -75,6 +79,8 @@ "character": 3 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test006/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test006/api-yaml-outline.json index b63e41ff42..c712100b9d 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test006/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test006/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "tags", @@ -75,6 +79,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test007/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test007/api-json-outline.json index b0eae17c5d..9f50f80ed9 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test007/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test007/api-json-outline.json @@ -23,7 +23,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 27 } }, - "children": [] + "children": [ + + ] }, { "name": "documentation", @@ -75,6 +79,8 @@ "character": 3 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test007/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test007/api-yaml-outline.json index bbfaa39ac4..23978cee5b 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test007/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test007/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "documentation", @@ -75,6 +79,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test008/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test008/api-json-outline.json index 4282d4aaa5..f1bb657c7f 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test008/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test008/api-json-outline.json @@ -23,7 +23,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 27 } }, - "children": [] + "children": [ + + ] }, { "name": "/pets/{id}", @@ -175,7 +179,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] }, { "name": "tag", @@ -201,7 +207,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test008/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test008/api-yaml-outline.json index 479abb2c6b..8279c3dfec 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test008/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test008/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/pets/{id}", @@ -175,7 +179,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "tag", @@ -201,7 +207,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test009/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test009/api-json-outline.json index 5e983f7491..a99d979803 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test009/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test009/api-json-outline.json @@ -23,7 +23,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 27 } }, - "children": [] + "children": [ + + ] }, { "name": "/pets/{id}", @@ -225,7 +229,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] }, { "name": "tag", @@ -251,7 +257,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test009/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test009/api-yaml-outline.json index 58f2189e00..9314800f8b 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test009/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test009/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/pets/{id}", @@ -225,7 +229,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "tag", @@ -251,7 +257,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test010/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test010/api-json-outline.json index 11a6439d5b..4cc506b850 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test010/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test010/api-json-outline.json @@ -23,7 +23,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 27 } }, - "children": [] + "children": [ + + ] }, { "name": "/pets/{id}", @@ -200,7 +204,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] }, { "name": "X-Rate-Limit-Remaining", @@ -226,7 +232,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] }, { "name": "X-Rate-Limit-Reset", @@ -252,7 +260,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] } ] }, @@ -305,7 +315,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] } ] } @@ -335,7 +347,9 @@ "character": 11 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test010/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test010/api-yaml-outline.json index ef26ac6511..d72493bde8 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test010/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test010/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/pets/{id}", @@ -200,7 +204,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "X-Rate-Limit-Remaining", @@ -226,7 +232,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "X-Rate-Limit-Reset", @@ -252,7 +260,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -305,7 +315,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -335,7 +347,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test011/api-json-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test011/api-json-outline.json index cbd77f8dc6..e296518797 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test011/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test011/api-json-outline.json @@ -23,7 +23,9 @@ "character": 33 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "Contact", @@ -75,7 +79,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "License", @@ -101,7 +107,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "basePath", @@ -127,7 +135,9 @@ "character": 19 } }, - "children": [] + "children": [ + + ] }, { "name": "host", @@ -153,6 +163,8 @@ "character": 22 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS20/structure/test011/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS20/structure/test011/api-yaml-outline.json index f76ff78673..aee4f951c8 100644 --- a/als-structure/shared/src/test/resources/OAS20/structure/test011/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS20/structure/test011/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Contact", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "License", @@ -101,7 +107,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "basePath", @@ -127,7 +135,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "host", @@ -153,6 +163,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS30/callbacks/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/callbacks/api-json-outline.json index 7ffe063499..2c606c6d07 100644 --- a/als-structure/shared/src/test/resources/OAS30/callbacks/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/callbacks/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -225,7 +229,9 @@ "character": 19 } }, - "children": [] + "children": [ + + ] } ] }, @@ -303,7 +309,9 @@ "character": 21 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/callbacks/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/callbacks/api-yaml-outline.json index 0ffc4abf50..40e1f2d327 100644 --- a/als-structure/shared/src/test/resources/OAS30/callbacks/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/callbacks/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -225,7 +229,9 @@ "character": 94 } }, - "children": [] + "children": [ + + ] } ] }, @@ -303,7 +309,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/components/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/components/api-json-outline.json index af2b2a2da2..eca8bf4905 100644 --- a/als-structure/shared/src/test/resources/OAS30/components/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/components/api-json-outline.json @@ -23,7 +23,9 @@ "character": 19 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 16 } }, - "children": [] + "children": [ + + ] }, { "name": "examples", @@ -100,7 +104,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] }, { "name": "bar", @@ -126,7 +132,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] } ] }, @@ -179,7 +187,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] }, { "name": "petstore_auth", @@ -205,7 +215,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] } ] }, @@ -283,7 +295,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] }, @@ -336,7 +350,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -391,7 +407,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] }, { "name": "header2", @@ -417,7 +435,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] } ] }, @@ -570,7 +590,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] } ] }, @@ -648,7 +670,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] } @@ -711,7 +735,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] }, { "name": "limitParam", @@ -737,7 +763,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] } ] }, @@ -890,7 +918,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] } ] } @@ -924,7 +954,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] } ] }, @@ -1027,7 +1059,9 @@ "character": 11 } }, - "children": [] + "children": [ + + ] }, { "name": "name", @@ -1053,7 +1087,9 @@ "character": 11 } }, - "children": [] + "children": [ + + ] } ] } @@ -1133,7 +1169,9 @@ "character": 11 } }, - "children": [] + "children": [ + + ] }, { "name": "name", @@ -1159,7 +1197,9 @@ "character": 11 } }, - "children": [] + "children": [ + + ] } ] } @@ -1216,7 +1256,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] }, { "name": "IllegalInput", @@ -1242,7 +1284,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] }, { "name": "GeneralError", @@ -1318,7 +1362,9 @@ "character": 11 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/components/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/components/api-yaml-outline.json index c3f578f0b3..ff995a30b5 100644 --- a/als-structure/shared/src/test/resources/OAS30/components/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/components/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "examples", @@ -100,7 +104,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "bar", @@ -126,7 +132,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -179,7 +187,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "petstore_auth", @@ -205,7 +215,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -283,7 +295,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -336,7 +350,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -391,7 +407,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "header2", @@ -417,7 +435,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -570,7 +590,9 @@ "character": 90 } }, - "children": [] + "children": [ + + ] } ] }, @@ -648,7 +670,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -711,7 +735,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "limitParam", @@ -737,7 +763,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -890,7 +918,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -924,7 +954,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -1027,7 +1059,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "name", @@ -1053,7 +1087,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -1133,7 +1169,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "name", @@ -1159,7 +1197,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -1216,7 +1256,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "IllegalInput", @@ -1242,7 +1284,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "GeneralError", @@ -1318,7 +1362,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/encoding/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/encoding/api-json-outline.json index 19ebee1ea1..cf72c449b3 100644 --- a/als-structure/shared/src/test/resources/OAS30/encoding/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/encoding/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -275,7 +279,9 @@ "character": 21 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/encoding/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/encoding/api-yaml-outline.json index 638ede642a..b2742f3528 100644 --- a/als-structure/shared/src/test/resources/OAS30/encoding/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/encoding/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -275,7 +279,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/inner-security/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/inner-security/api-json-outline.json index 8ed7c0cfb4..cd06edb594 100644 --- a/als-structure/shared/src/test/resources/OAS30/inner-security/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/inner-security/api-json-outline.json @@ -73,7 +73,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/inner-security/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/inner-security/api-yaml-outline.json index bc461b5344..9475cbaa94 100644 --- a/als-structure/shared/src/test/resources/OAS30/inner-security/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/inner-security/api-yaml-outline.json @@ -73,7 +73,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/link/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/link/api-json-outline.json index 44e4e2147c..94d9b46932 100644 --- a/als-structure/shared/src/test/resources/OAS30/link/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/link/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -225,7 +229,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/link/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/link/api-yaml-outline.json index b574050e98..8ac1146794 100644 --- a/als-structure/shared/src/test/resources/OAS30/link/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/link/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -225,7 +229,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/media-type/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/media-type/api-json-outline.json index 011a102994..27881a6d5c 100644 --- a/als-structure/shared/src/test/resources/OAS30/media-type/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/media-type/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -225,7 +229,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] }, @@ -278,7 +284,9 @@ "character": 28 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/media-type/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/media-type/api-yaml-outline.json index dc64789811..f061ded368 100644 --- a/als-structure/shared/src/test/resources/OAS30/media-type/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/media-type/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -225,7 +229,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -278,7 +284,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/operation/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/operation/api-json-outline.json index 6c7b12323b..7cd206dc12 100644 --- a/als-structure/shared/src/test/resources/OAS30/operation/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/operation/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -125,7 +129,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "Security", @@ -151,7 +157,9 @@ "character": 24 } }, - "children": [] + "children": [ + + ] }, { "name": "responses", @@ -202,7 +210,9 @@ "character": 21 } }, - "children": [] + "children": [ + + ] } ] }, @@ -280,7 +290,9 @@ "character": 11 } }, - "children": [] + "children": [ + + ] } ] }, @@ -333,7 +345,9 @@ "character": 11 } }, - "children": [] + "children": [ + + ] } ] } @@ -363,7 +377,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "servers", @@ -389,7 +405,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/operation/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/operation/api-yaml-outline.json index c69fa069b8..2ef7ec1f31 100644 --- a/als-structure/shared/src/test/resources/OAS30/operation/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/operation/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -125,7 +129,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Security", @@ -151,7 +157,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "responses", @@ -202,7 +210,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -280,7 +290,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -333,7 +345,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -363,7 +377,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "servers", @@ -389,7 +405,9 @@ "character": 40 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/operation/security/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/operation/security/api-json-outline.json index de3fdaf5ce..957601b21d 100644 --- a/als-structure/shared/src/test/resources/OAS30/operation/security/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/operation/security/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -125,7 +129,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/operation/security/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/operation/security/api-yaml-outline.json index 738ef4c42e..2aefe170d5 100644 --- a/als-structure/shared/src/test/resources/OAS30/operation/security/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/operation/security/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -125,7 +129,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/paths/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/paths/api-json-outline.json index c99e4232e3..cdcd4e9786 100644 --- a/als-structure/shared/src/test/resources/OAS30/paths/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/paths/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -75,7 +79,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint2", @@ -101,6 +107,8 @@ "character": 22 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS30/paths/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/paths/api-yaml-outline.json index 59d6eef879..11a6592bb0 100644 --- a/als-structure/shared/src/test/resources/OAS30/paths/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/paths/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint2", @@ -101,6 +107,8 @@ "character": 13 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS30/paths/path-object/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/paths/path-object/api-json-outline.json index ff6a686655..ce3ceb1d8f 100644 --- a/als-structure/shared/src/test/resources/OAS30/paths/path-object/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/paths/path-object/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -125,7 +129,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] }, @@ -178,7 +184,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] }, @@ -206,7 +214,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] }, { "name": "get", @@ -232,7 +242,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] }, { "name": "put", @@ -258,7 +270,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/paths/path-object/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/paths/path-object/api-yaml-outline.json index 101ea578c7..dab7fc8139 100644 --- a/als-structure/shared/src/test/resources/OAS30/paths/path-object/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/paths/path-object/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -125,7 +129,9 @@ "character": 18 } }, - "children": [] + "children": [ + + ] } ] }, @@ -178,7 +184,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -206,7 +214,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "get", @@ -232,7 +242,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "put", @@ -258,7 +270,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/request-body/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/request-body/api-json-outline.json index 04aa153ea4..4161d96899 100644 --- a/als-structure/shared/src/test/resources/OAS30/request-body/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/request-body/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -175,7 +179,9 @@ "character": 36 } }, - "children": [] + "children": [ + + ] } ] }, @@ -228,7 +234,9 @@ "character": 11 } }, - "children": [] + "children": [ + + ] } ] }, @@ -281,7 +289,9 @@ "character": 11 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/request-body/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/request-body/api-yaml-outline.json index 0ad54cd8e5..5473e35dff 100644 --- a/als-structure/shared/src/test/resources/OAS30/request-body/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/request-body/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -175,7 +179,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -228,7 +234,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -281,7 +289,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/responses/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/responses/api-json-outline.json index dd29e7c33c..7c891b219a 100644 --- a/als-structure/shared/src/test/resources/OAS30/responses/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/responses/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -200,7 +204,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] } ] }, @@ -253,7 +259,9 @@ "character": 26 } }, - "children": [] + "children": [ + + ] } ] }, @@ -306,7 +314,9 @@ "character": 26 } }, - "children": [] + "children": [ + + ] } ] } @@ -386,7 +396,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] } ] }, @@ -439,7 +451,9 @@ "character": 26 } }, - "children": [] + "children": [ + + ] } ] }, @@ -492,7 +506,9 @@ "character": 26 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/responses/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/responses/api-yaml-outline.json index 555d8f7a36..787123f2b1 100644 --- a/als-structure/shared/src/test/resources/OAS30/responses/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/responses/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint1", @@ -200,7 +204,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -253,7 +259,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -306,7 +314,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -386,7 +396,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -439,7 +451,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -492,7 +506,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/OAS30/root-level/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/root-level/api-json-outline.json index a3dd0d6352..e669f3df9b 100644 --- a/als-structure/shared/src/test/resources/OAS30/root-level/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/root-level/api-json-outline.json @@ -23,7 +23,9 @@ "character": 19 } }, - "children": [] + "children": [ + + ] }, { "name": "servers", @@ -49,7 +51,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] }, { "name": "tags", @@ -75,7 +79,9 @@ "character": 12 } }, - "children": [] + "children": [ + + ] }, { "name": "Security", @@ -101,7 +107,9 @@ "character": 16 } }, - "children": [] + "children": [ + + ] }, { "name": "documentation", @@ -127,6 +135,8 @@ "character": 22 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS30/root-level/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/root-level/api-yaml-outline.json index 999b702174..351b61ae3e 100644 --- a/als-structure/shared/src/test/resources/OAS30/root-level/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/root-level/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "servers", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "tags", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Security", @@ -101,7 +107,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "documentation", @@ -127,6 +135,8 @@ "character": 13 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS30/root-level/info/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/root-level/info/api-json-outline.json index 43dacbda5c..ac0bedb16e 100644 --- a/als-structure/shared/src/test/resources/OAS30/root-level/info/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/root-level/info/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] }, { "name": "Contact", @@ -75,7 +79,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "License", @@ -101,6 +107,8 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS30/root-level/info/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/root-level/info/api-yaml-outline.json index 45cba4c094..f616e81b90 100644 --- a/als-structure/shared/src/test/resources/OAS30/root-level/info/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/root-level/info/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Contact", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "License", @@ -101,6 +107,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS30/root-level/server/api-json-outline.json b/als-structure/shared/src/test/resources/OAS30/root-level/server/api-json-outline.json index 179fe4465a..ad28b99752 100644 --- a/als-structure/shared/src/test/resources/OAS30/root-level/server/api-json-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/root-level/server/api-json-outline.json @@ -23,7 +23,9 @@ "character": 35 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 16 } }, - "children": [] + "children": [ + + ] }, { "name": "servers", @@ -75,6 +79,8 @@ "character": 3 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/OAS30/root-level/server/api-yaml-outline.json b/als-structure/shared/src/test/resources/OAS30/root-level/server/api-yaml-outline.json index 76a720a9cc..a7ad20d1b9 100644 --- a/als-structure/shared/src/test/resources/OAS30/root-level/server/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/OAS30/root-level/server/api-yaml-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "servers", @@ -75,6 +79,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/RAML08/structure/included-example/api-outline.json b/als-structure/shared/src/test/resources/RAML08/structure/included-example/api-outline.json index 4d60fbf158..b816770aef 100644 --- a/als-structure/shared/src/test/resources/RAML08/structure/included-example/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML08/structure/included-example/api-outline.json @@ -173,7 +173,9 @@ "character": 43 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML08/structure/inlined-array/api-outline.json b/als-structure/shared/src/test/resources/RAML08/structure/inlined-array/api-outline.json index f74d2d2d5c..3e204adce5 100644 --- a/als-structure/shared/src/test/resources/RAML08/structure/inlined-array/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML08/structure/inlined-array/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/collaborations", @@ -225,7 +229,9 @@ "character": 45 } }, - "children": [] + "children": [ + + ] } ] } @@ -288,7 +294,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML08/structure/test028/api-outline.json b/als-structure/shared/src/test/resources/RAML08/structure/test028/api-outline.json index 3f9ed55519..9f4c97b4ce 100644 --- a/als-structure/shared/src/test/resources/RAML08/structure/test028/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML08/structure/test028/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "baseUri", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "schemas", @@ -126,7 +132,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML08/structure/test029/api-outline.json b/als-structure/shared/src/test/resources/RAML08/structure/test029/api-outline.json index 646996cbad..fb0b7119ab 100644 --- a/als-structure/shared/src/test/resources/RAML08/structure/test029/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML08/structure/test029/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "baseUri", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "securitySchemes", @@ -176,7 +182,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -229,7 +237,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -282,7 +292,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "403", @@ -308,7 +320,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -336,7 +350,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML08/structure/test030/api-outline.json b/als-structure/shared/src/test/resources/RAML08/structure/test030/api-outline.json index ab4b9d7bc9..2626fe4803 100644 --- a/als-structure/shared/src/test/resources/RAML08/structure/test030/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML08/structure/test030/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "baseUri", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "documentation", @@ -101,6 +107,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/RAML08/structure/test031/api-outline.json b/als-structure/shared/src/test/resources/RAML08/structure/test031/api-outline.json index fe71202906..351e39b0a0 100644 --- a/als-structure/shared/src/test/resources/RAML08/structure/test031/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML08/structure/test031/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/media/popular", @@ -225,7 +229,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -263,6 +269,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/enum-in-resourcetype-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/enum-in-resourcetype-outline.json index 76acafebc7..25014b67ac 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/enum-in-resourcetype-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/enum-in-resourcetype-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "resourceTypes", @@ -99,7 +101,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/is-in-resourcetype-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/is-in-resourcetype-outline.json index e2f137b99e..f50c5c475a 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/is-in-resourcetype-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/is-in-resourcetype-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "resourceTypes", @@ -99,7 +101,9 @@ "character": 7 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/optional-property-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/optional-property-outline.json index 77bc815c4d..134de09867 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/optional-property-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/avoid-duplicated/optional-property-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "types", @@ -124,7 +126,9 @@ "character": 25 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/custom/no-variable-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/custom/no-variable-outline.json index 098eb1e46e..e84cd08609 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/custom/no-variable-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/custom/no-variable-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "resourceTypes", @@ -125,7 +129,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "post", @@ -151,7 +157,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/declarations/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/declarations/api-outline.json index 9293f1ceda..bf33f6396b 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/declarations/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/declarations/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "securitySchemes", @@ -124,7 +126,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -154,7 +158,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -232,7 +238,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -285,7 +293,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -440,7 +450,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "d", @@ -466,7 +478,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -496,7 +510,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -553,7 +569,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "rt2", @@ -654,7 +672,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/included-example/structure.json b/als-structure/shared/src/test/resources/RAML10/structure/included-example/structure.json index 5b60dd61a3..902bef77dd 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/included-example/structure.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/included-example/structure.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/myEndpoint", @@ -174,7 +176,9 @@ "character": 38 } }, - "children": [] + "children": [ + + ] }, { "name": "properties", @@ -225,7 +229,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "b", @@ -251,7 +257,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/nested-files/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/nested-files/api-outline.json index dee9c9e378..3b28c0b539 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/nested-files/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/nested-files/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "types", @@ -74,7 +76,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "t2", @@ -100,7 +104,9 @@ "character": 14 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/nested-traits/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/nested-traits/api-outline.json index 12bbac30c6..73841deaed 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/nested-traits/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/nested-traits/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,6 +51,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/RAML10/structure/nested-types/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/nested-types/api-outline.json index 12bbac30c6..73841deaed 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/nested-types/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/nested-types/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,6 +51,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/RAML10/structure/optional-string/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/optional-string/api-outline.json index d721f6ce27..92790c560e 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/optional-string/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/optional-string/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "types", @@ -124,7 +126,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "zipcode", @@ -150,7 +154,9 @@ "character": 23 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/root/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/root/api-outline.json index 829981beb8..964d69f2f8 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/root/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/root/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/someChildUri", @@ -100,7 +104,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -128,7 +134,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Security", @@ -154,7 +162,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "documentation", @@ -180,7 +190,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "securitySchemes", @@ -231,7 +243,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test001/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test001/api-outline.json index 9c4e8c6c36..0a72e39a84 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test001/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test001/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/someChildUri", @@ -174,7 +176,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -308,7 +312,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -344,6 +350,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test002/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test002/api-outline.json index b8227f14b2..e5e2806473 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test002/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test002/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/someChildUri", @@ -174,7 +176,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -208,7 +212,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/anotherChild", @@ -334,7 +340,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -370,7 +378,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "resourceTypes", @@ -546,7 +556,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test003/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test003/api-outline.json index 9b432bd615..f390081ab1 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test003/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test003/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "types", @@ -74,7 +76,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "A", @@ -150,7 +154,9 @@ "character": 10 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test004/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test004/api-outline.json index ddcaeafead..046281d079 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test004/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test004/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/someChildUri", @@ -174,7 +176,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -308,7 +312,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -344,7 +350,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "traits", @@ -420,7 +428,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test006/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test006/api-outline.json index cc136dee96..33f4cc971c 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test006/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test006/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "baseUri", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "documentation", @@ -75,6 +79,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test007/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test007/api-outline.json index ca6b840fd0..3259f72671 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test007/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test007/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/resouce", @@ -199,7 +201,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "application/xml", @@ -225,7 +229,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -263,7 +269,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "types", @@ -364,7 +372,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Head", @@ -390,7 +400,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -470,7 +482,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "lastname", @@ -496,7 +510,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "title", @@ -522,7 +538,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -552,7 +570,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Manager", @@ -628,7 +648,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "phone", @@ -654,7 +676,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -734,7 +758,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -814,7 +840,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -844,7 +872,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test009/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test009/api-outline.json index 231e79e1ab..0cd35739ca 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test009/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test009/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "baseUri", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "types", @@ -150,7 +154,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "lastname", @@ -176,7 +182,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "title", @@ -202,7 +210,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -232,7 +242,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Manager", @@ -308,7 +320,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "phone", @@ -334,7 +348,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -414,7 +430,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -494,7 +512,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -524,7 +544,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test010/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test010/api-outline.json index 772c11c838..66debbab80 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test010/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test010/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/users/{id}", @@ -224,7 +226,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "lastname", @@ -250,7 +254,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "age", @@ -276,7 +282,9 @@ "character": 28 } }, - "children": [] + "children": [ + + ] } ] } @@ -314,7 +322,9 @@ "character": 1 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test011/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test011/api-outline.json index ab8bc6760c..ac744edb5c 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test011/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test011/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "types", @@ -124,7 +126,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "addresses", @@ -150,7 +154,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -230,7 +236,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "city", @@ -256,7 +264,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test012/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test012/api-outline.json index 93d3f8688c..dc3fa5837f 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test012/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test012/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/users", @@ -149,7 +151,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test013/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test013/api-outline.json index 78b2426dd4..5dc5d3cbb8 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test013/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test013/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/jobs", @@ -200,7 +204,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -253,7 +259,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -289,6 +297,8 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test014/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test014/api-outline.json index e9053722bf..d119b50294 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test014/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test014/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/locations", @@ -174,7 +176,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "second", @@ -200,7 +204,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "third", @@ -226,7 +232,9 @@ "character": 48 } }, - "children": [] + "children": [ + + ] } ] } @@ -337,7 +345,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "long", @@ -363,7 +373,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -443,7 +455,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -523,7 +537,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "page-size", @@ -549,7 +565,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test017/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test017/api-outline.json index 6fb9077495..76502e5d09 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test017/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test017/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "securitySchemes", @@ -99,7 +101,9 @@ "character": 46 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test018/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test018/api-outline.json index bf55a12302..6a9fd813a6 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test018/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test018/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "baseUri", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "securitySchemes", @@ -176,7 +182,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -229,7 +237,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -282,7 +292,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "403", @@ -308,7 +320,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -336,7 +350,9 @@ "character": 108 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test019/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test019/api-outline.json index 0a9e517e5d..92035ed3b9 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test019/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test019/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "baseUri", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "securitySchemes", @@ -126,7 +132,9 @@ "character": 30 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test020/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test020/api-outline.json index 482191967c..b6fb29b338 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test020/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test020/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "baseUri", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "securitySchemes", @@ -126,7 +132,9 @@ "character": 31 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test021/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test021/api-outline.json index cec1bc1ad8..7a2b9dcadd 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test021/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test021/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "baseUri", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "securitySchemes", @@ -176,7 +182,9 @@ "character": 22 } }, - "children": [] + "children": [ + + ] } ] }, @@ -229,7 +237,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test022/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test022/api-outline.json index 3e13cf22d9..50024d46c2 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test022/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test022/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "baseUri", @@ -75,7 +79,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "securitySchemes", @@ -176,7 +182,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] }, @@ -229,7 +237,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "403", @@ -255,7 +265,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test023/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test023/api-outline.json index a69a362c6d..bf1ab54f95 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test023/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test023/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "annotationTypes", @@ -74,7 +76,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "experimental", @@ -100,7 +104,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "feedbackRequested", @@ -126,7 +132,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "testHarness", @@ -152,7 +160,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "badge", @@ -178,7 +188,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "clearanceLevel", @@ -204,7 +216,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test024/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test024/api-outline.json index 1c334e5eac..26df8ee14a 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test024/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test024/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/resource", @@ -174,7 +176,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "text/yaml", @@ -200,7 +204,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "text/x-yaml", @@ -226,7 +232,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "application/yaml", @@ -252,7 +260,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "application/x-yaml", @@ -278,7 +288,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test025/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test025/api-outline.json index 58f4578d0d..e71db98e4c 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test025/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test025/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/resource", @@ -174,7 +176,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test027/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test027/api-outline.json index 6f78fd3262..3792f4bdc0 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test027/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test027/api-outline.json @@ -48,7 +48,9 @@ "character": 49 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/test028/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/test028/api-outline.json index 5c01372261..77886d47bf 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/test028/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/test028/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/groups", @@ -99,7 +101,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "feedbackRequested", @@ -125,7 +129,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -230,7 +236,9 @@ "character": 10 } }, - "children": [] + "children": [ + + ] } ] }, @@ -283,7 +291,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "experimental", @@ -309,7 +319,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "feedbackRequested", @@ -335,7 +347,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -390,7 +404,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "badge", @@ -416,7 +432,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "clearanceLevel", @@ -442,7 +460,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -497,7 +517,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "experimental", @@ -523,7 +545,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "feedbackRequested", @@ -549,7 +573,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "testHarness", @@ -575,7 +601,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "badge", @@ -601,7 +629,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "clearanceLevel", @@ -627,7 +657,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/RAML10/structure/traits/api-outline.json b/als-structure/shared/src/test/resources/RAML10/structure/traits/api-outline.json index 350e38f2ae..1a43e5edeb 100644 --- a/als-structure/shared/src/test/resources/RAML10/structure/traits/api-outline.json +++ b/als-structure/shared/src/test/resources/RAML10/structure/traits/api-outline.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "/endpoint", @@ -150,7 +154,9 @@ "character": 10 } }, - "children": [] + "children": [ + + ] } ] }, @@ -178,7 +184,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } @@ -283,7 +291,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/json-schema/draft-03/basic-schema-outline.json b/als-structure/shared/src/test/resources/json-schema/draft-03/basic-schema-outline.json index 1d54630a27..9e41e85f9a 100644 --- a/als-structure/shared/src/test/resources/json-schema/draft-03/basic-schema-outline.json +++ b/als-structure/shared/src/test/resources/json-schema/draft-03/basic-schema-outline.json @@ -48,7 +48,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:ConveyanceType", @@ -74,7 +76,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:ItemType", @@ -100,7 +104,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:AmountType", @@ -176,7 +182,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Currency", @@ -202,7 +210,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -232,7 +242,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "iso_4217:CurrencyCodeSimpleType", @@ -258,7 +270,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:IdentificationType", @@ -334,7 +348,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -364,7 +380,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "niem-xs:nonNegativeInteger", @@ -390,7 +408,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "niem-xs:string", @@ -416,7 +436,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "_base", @@ -492,7 +514,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "@base", @@ -518,7 +542,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "^ism:.*", @@ -544,7 +570,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "^ntk:.*", @@ -570,7 +598,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -627,7 +657,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleAxleQuantity", @@ -653,7 +685,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleMSRPAmount", @@ -679,7 +713,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Amount", @@ -705,7 +741,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Currency", @@ -731,7 +769,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:CurrencyCode", @@ -757,7 +797,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleIdentification", @@ -783,7 +825,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:IdentificationID", @@ -809,7 +853,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/json-schema/draft-04/basic-schema-outline.json b/als-structure/shared/src/test/resources/json-schema/draft-04/basic-schema-outline.json index 1d54630a27..9e41e85f9a 100644 --- a/als-structure/shared/src/test/resources/json-schema/draft-04/basic-schema-outline.json +++ b/als-structure/shared/src/test/resources/json-schema/draft-04/basic-schema-outline.json @@ -48,7 +48,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:ConveyanceType", @@ -74,7 +76,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:ItemType", @@ -100,7 +104,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:AmountType", @@ -176,7 +182,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Currency", @@ -202,7 +210,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -232,7 +242,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "iso_4217:CurrencyCodeSimpleType", @@ -258,7 +270,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:IdentificationType", @@ -334,7 +348,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -364,7 +380,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "niem-xs:nonNegativeInteger", @@ -390,7 +408,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "niem-xs:string", @@ -416,7 +436,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "_base", @@ -492,7 +514,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "@base", @@ -518,7 +542,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "^ism:.*", @@ -544,7 +570,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "^ntk:.*", @@ -570,7 +598,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -627,7 +657,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleAxleQuantity", @@ -653,7 +685,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleMSRPAmount", @@ -679,7 +713,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Amount", @@ -705,7 +741,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Currency", @@ -731,7 +769,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:CurrencyCode", @@ -757,7 +797,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleIdentification", @@ -783,7 +825,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:IdentificationID", @@ -809,7 +853,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/json-schema/draft-07/basic-schema-outline.json b/als-structure/shared/src/test/resources/json-schema/draft-07/basic-schema-outline.json index 1d54630a27..9e41e85f9a 100644 --- a/als-structure/shared/src/test/resources/json-schema/draft-07/basic-schema-outline.json +++ b/als-structure/shared/src/test/resources/json-schema/draft-07/basic-schema-outline.json @@ -48,7 +48,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:ConveyanceType", @@ -74,7 +76,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:ItemType", @@ -100,7 +104,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:AmountType", @@ -176,7 +182,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Currency", @@ -202,7 +210,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -232,7 +242,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "iso_4217:CurrencyCodeSimpleType", @@ -258,7 +270,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:IdentificationType", @@ -334,7 +348,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -364,7 +380,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "niem-xs:nonNegativeInteger", @@ -390,7 +408,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "niem-xs:string", @@ -416,7 +436,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "_base", @@ -492,7 +514,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "@base", @@ -518,7 +542,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "^ism:.*", @@ -544,7 +570,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "^ntk:.*", @@ -570,7 +598,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -627,7 +657,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleAxleQuantity", @@ -653,7 +685,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleMSRPAmount", @@ -679,7 +713,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Amount", @@ -705,7 +741,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Currency", @@ -731,7 +769,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:CurrencyCode", @@ -757,7 +797,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleIdentification", @@ -783,7 +825,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:IdentificationID", @@ -809,7 +853,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/json-schema/draft-2019-09/allof-definitions-outline.json b/als-structure/shared/src/test/resources/json-schema/draft-2019-09/allof-definitions-outline.json index 48a467b098..a27f25485e 100644 --- a/als-structure/shared/src/test/resources/json-schema/draft-2019-09/allof-definitions-outline.json +++ b/als-structure/shared/src/test/resources/json-schema/draft-2019-09/allof-definitions-outline.json @@ -48,7 +48,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "Test2", @@ -74,7 +76,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "Test3", @@ -100,7 +104,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "Test4", @@ -126,7 +132,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/json-schema/draft-2019-09/basic-schema-outline.json b/als-structure/shared/src/test/resources/json-schema/draft-2019-09/basic-schema-outline.json index 1d54630a27..9e41e85f9a 100644 --- a/als-structure/shared/src/test/resources/json-schema/draft-2019-09/basic-schema-outline.json +++ b/als-structure/shared/src/test/resources/json-schema/draft-2019-09/basic-schema-outline.json @@ -48,7 +48,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:ConveyanceType", @@ -74,7 +76,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:ItemType", @@ -100,7 +104,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:AmountType", @@ -176,7 +182,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Currency", @@ -202,7 +210,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -232,7 +242,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "iso_4217:CurrencyCodeSimpleType", @@ -258,7 +270,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:IdentificationType", @@ -334,7 +348,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -364,7 +380,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "niem-xs:nonNegativeInteger", @@ -390,7 +408,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "niem-xs:string", @@ -416,7 +436,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "_base", @@ -492,7 +514,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "@base", @@ -518,7 +542,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "^ism:.*", @@ -544,7 +570,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] }, { "name": "^ntk:.*", @@ -570,7 +598,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } @@ -627,7 +657,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleAxleQuantity", @@ -653,7 +685,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleMSRPAmount", @@ -679,7 +713,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Amount", @@ -705,7 +741,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Currency", @@ -731,7 +769,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:CurrencyCode", @@ -757,7 +797,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:VehicleIdentification", @@ -783,7 +825,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:IdentificationID", @@ -809,7 +853,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/json-schema/draft-2019-09/simple-definitions-outline.json b/als-structure/shared/src/test/resources/json-schema/draft-2019-09/simple-definitions-outline.json index 1c55728260..969cf6fdd9 100644 --- a/als-structure/shared/src/test/resources/json-schema/draft-2019-09/simple-definitions-outline.json +++ b/als-structure/shared/src/test/resources/json-schema/draft-2019-09/simple-definitions-outline.json @@ -48,7 +48,9 @@ "character": 5 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Test1", @@ -74,7 +76,9 @@ "character": 34 } }, - "children": [] + "children": [ + + ] }, { "name": "nc:Test2", @@ -150,7 +154,9 @@ "character": 9 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/no-document/json/api-json-outline.json b/als-structure/shared/src/test/resources/no-document/json/api-json-outline.json index 0637a088a0..c9c513b9b8 100644 --- a/als-structure/shared/src/test/resources/no-document/json/api-json-outline.json +++ b/als-structure/shared/src/test/resources/no-document/json/api-json-outline.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/no-document/yaml/api-yaml-outline.json b/als-structure/shared/src/test/resources/no-document/yaml/api-yaml-outline.json index 0637a088a0..c9c513b9b8 100644 --- a/als-structure/shared/src/test/resources/no-document/yaml/api-yaml-outline.json +++ b/als-structure/shared/src/test/resources/no-document/yaml/api-yaml-outline.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-structure/shared/src/test/resources/semantic/async2/simple1.json b/als-structure/shared/src/test/resources/semantic/async2/simple1.json index 59d10b6b59..1618da916e 100644 --- a/als-structure/shared/src/test/resources/semantic/async2/simple1.json +++ b/als-structure/shared/src/test/resources/semantic/async2/simple1.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Extensions", @@ -100,7 +104,9 @@ "character": 17 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/semantic/oas2/simple1.json b/als-structure/shared/src/test/resources/semantic/oas2/simple1.json index e5247bf7ea..5094cc58b0 100644 --- a/als-structure/shared/src/test/resources/semantic/oas2/simple1.json +++ b/als-structure/shared/src/test/resources/semantic/oas2/simple1.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Extensions", @@ -100,7 +104,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/semantic/oas3/simple1.json b/als-structure/shared/src/test/resources/semantic/oas3/simple1.json index e5247bf7ea..5094cc58b0 100644 --- a/als-structure/shared/src/test/resources/semantic/oas3/simple1.json +++ b/als-structure/shared/src/test/resources/semantic/oas3/simple1.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Extensions", @@ -100,7 +104,9 @@ "character": 15 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/resources/semantic/raml/simple1.json b/als-structure/shared/src/test/resources/semantic/raml/simple1.json index b567baec06..7838c80a08 100644 --- a/als-structure/shared/src/test/resources/semantic/raml/simple1.json +++ b/als-structure/shared/src/test/resources/semantic/raml/simple1.json @@ -23,7 +23,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "version", @@ -49,7 +51,9 @@ "character": 0 } }, - "children": [] + "children": [ + + ] }, { "name": "Extensions", @@ -100,7 +104,9 @@ "character": 19 } }, - "children": [] + "children": [ + + ] } ] } diff --git a/als-structure/shared/src/test/scala/org/mulesoft/language/outline/test/OutlineTest.scala b/als-structure/shared/src/test/scala/org/mulesoft/language/outline/test/OutlineTest.scala index 5367bed4d8..02334a9fed 100644 --- a/als-structure/shared/src/test/scala/org/mulesoft/language/outline/test/OutlineTest.scala +++ b/als-structure/shared/src/test/scala/org/mulesoft/language/outline/test/OutlineTest.scala @@ -13,7 +13,8 @@ import org.mulesoft.amfintegration.amfconfiguration.{ EditorConfiguration, EmptyProjectConfigurationState } -import org.scalatest.{Assertion, AsyncFunSuite} +import org.scalatest.compatible.Assertion +import org.scalatest.funsuite.AsyncFunSuite import scala.concurrent.{ExecutionContext, Future} diff --git a/als-structure/shared/src/test/scala/org/mulesoft/language/outline/test/aml/DialectStructureTest.scala b/als-structure/shared/src/test/scala/org/mulesoft/language/outline/test/aml/DialectStructureTest.scala index d7f7bea21c..6e30cd31f5 100644 --- a/als-structure/shared/src/test/scala/org/mulesoft/language/outline/test/aml/DialectStructureTest.scala +++ b/als-structure/shared/src/test/scala/org/mulesoft/language/outline/test/aml/DialectStructureTest.scala @@ -6,7 +6,7 @@ import org.mulesoft.amfintegration.amfconfiguration.{ EmptyProjectConfigurationState } import org.mulesoft.language.outline.test.BaseStructureTest -import org.scalatest.compatible.Assertion +import org.scalatest.Assertion import scala.concurrent.Future diff --git a/als-suggestions/js/package-lock.json b/als-suggestions/js/package-lock.json index ea3a692d83..eea282561e 100644 --- a/als-suggestions/js/package-lock.json +++ b/als-suggestions/js/package-lock.json @@ -1,7 +1,7 @@ { "name": "als-suggestions", "version": "1.0.0", - "lockfileVersion": 3, + "lockfileVersion": 2, "requires": true, "packages": { "": { @@ -9,14 +9,14 @@ "version": "1.0.0", "license": "ISC", "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", "ajv": "6.12.6" } }, "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.6.23", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.23.tgz", - "integrity": "sha512-ZL5xQ1mwxdxausmSPObn7//rpJ4vTV55nCE1asszYFSZgpSFeZeP0YuJpxCZt+YvErk9Brv7v/guodGwG7iw7A==" + "version": "0.6.22-SCALAJS1.6-SNAPSHOT", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", + "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" }, "node_modules/ajv": { "version": "6.12.6", @@ -64,5 +64,51 @@ "punycode": "^2.1.0" } } + }, + "dependencies": { + "@aml-org/amf-antlr-parsers": { + "version": "0.6.22-SCALAJS1.6-SNAPSHOT", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", + "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + } } } diff --git a/als-suggestions/js/package.json b/als-suggestions/js/package.json index dd20fa8724..3199c1c418 100644 --- a/als-suggestions/js/package.json +++ b/als-suggestions/js/package.json @@ -6,7 +6,7 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.23", + "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", "ajv": "6.12.6" }, "author": "", diff --git a/als-suggestions/jvm/src/test/scala/org/mulesoft/als/suggestions/client/jvm/JvmSuggestionsTest.scala b/als-suggestions/jvm/src/test/scala/org/mulesoft/als/suggestions/client/jvm/JvmSuggestionsTest.scala index aa583ccd3c..d78322144a 100644 --- a/als-suggestions/jvm/src/test/scala/org/mulesoft/als/suggestions/client/jvm/JvmSuggestionsTest.scala +++ b/als-suggestions/jvm/src/test/scala/org/mulesoft/als/suggestions/client/jvm/JvmSuggestionsTest.scala @@ -13,7 +13,8 @@ import org.mulesoft.amfintegration.amfconfiguration.{ EditorConfiguration, EmptyProjectConfigurationState } -import org.scalatest.{AsyncFunSuite, Matchers} +import org.scalatest.funsuite.AsyncFunSuite +import org.scalatest.matchers.should.Matchers import scala.concurrent.{ExecutionContext, Future} diff --git a/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test001.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test001.yaml.json index c748b66f2c..84846b308d 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test001.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test001.yaml.json @@ -1,11 +1,17 @@ [ { "label": "str", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "str", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10str", "filterText": "str: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test002.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test002.yaml.json index c748b66f2c..84846b308d 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test002.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test002.yaml.json @@ -1,11 +1,17 @@ [ { "label": "str", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "str", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10str", "filterText": "str: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test003.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test003.yaml.json index afb5f654cb..f7c07e11a6 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test003.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test003.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New a", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New a", "filterText": "a:\n str: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New b", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "b", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New b", "filterText": "b:\n str: $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11a", "filterText": "a:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "b", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "b", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11b", "filterText": "b:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test004-snnipet.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test004-snnipet.yaml.json index d86284bc57..1702afb697 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test004-snnipet.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/instances/expected/test004-snnipet.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New declaresA", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "declaresA", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New declaresA", "filterText": "declaresA:\n \\$name: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "declaresA", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "declaresA", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11declaresA", "filterText": "declaresA:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-domain-inside.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-domain-inside.yaml.json index 7be9d64266..fedd62178f 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-domain-inside.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-domain-inside.yaml.json @@ -1,11 +1,17 @@ [ { "label": "age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11age", "filterText": "my-voc.age", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "model", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Model", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11model", "filterText": "my-voc.model", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "my-voc.name", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-domain.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-domain.yaml.json index e2857522b7..8dd9593e8d 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-domain.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-domain.yaml.json @@ -1,11 +1,17 @@ [ { "label": "my-voc", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "my-voc", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11my-voc", "filterText": "my-voc", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "schema-org", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schema-org", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-org", "filterText": "schema-org", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-name.yaml.json index a18d582bcf..77334a3a54 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-name.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New annotationMapping", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New annotationMapping", "filterText": "$1:\n domain: $2\n propertyTerm: $3\n range: $4", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term-from-reference.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term-from-reference.yaml.json index 525859e3a6..318c8236f2 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term-from-reference.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term-from-reference.yaml.json @@ -1,11 +1,17 @@ [ { "label": "schema-org", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schema-org", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-org", "filterText": "schema-org", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11test", "filterText": "test", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term-value.yaml.json index 34e0008571..65ab66280a 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11age", "filterText": "my-voc.age", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "model", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Model", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11model", "filterText": "my-voc.model", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "my-voc.name", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term.yaml.json index f1526a7a89..fd94796b37 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping-term.yaml.json @@ -1,11 +1,17 @@ [ { "label": "schema-org", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schema-org", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-org", "filterText": "schema-org", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping.yaml.json index 113b912c55..7ec98a10ab 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/expected/annotation-mapping.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allowMultiple", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowMultiple", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowMultiple", "filterText": "allowMultiple: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "domain", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "domain", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10domain", "filterText": "domain: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "mandatory", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mandatory", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mandatory", "filterText": "mandatory: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10range", "filterText": "range: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "sorted", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sorted", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sorted", "filterText": "sorted: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "typeDiscriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminator", "filterText": "typeDiscriminator:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "typeDiscriminatorName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminatorName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminatorName", "filterText": "typeDiscriminatorName:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "unique", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "unique", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11unique", "filterText": "unique: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-allow-multiple.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-allow-multiple.yaml.json index d4a87db7c2..185b141a0b 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-allow-multiple.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-allow-multiple.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-before-property.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-before-property.yaml.json index 2d561373a4..017eb3475e 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-before-property.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-before-property.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allowMultiple", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowMultiple", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowMultiple", "filterText": "allowMultiple: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "domain", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "domain", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10domain", "filterText": "domain: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "mandatory", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mandatory", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mandatory", "filterText": "mandatory: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "sorted", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sorted", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sorted", "filterText": "sorted: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "typeDiscriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminator", "filterText": "typeDiscriminator:\n - ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "typeDiscriminatorName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminatorName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminatorName", "filterText": "typeDiscriminatorName:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "unique", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "unique", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11unique", "filterText": "unique: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-extends.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-extends.yaml.json index fb64db056b..00aeb75112 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-extends.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-extends.yaml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "otherMapping", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "otherMapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11otherMapping", "filterText": "otherMapping", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-mandatory.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-mandatory.yaml.json index fc1e05ec0a..422420ee98 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-mandatory.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-mandatory.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-sorted.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-sorted.yaml.json index a6c34ef5d8..e132d2f9fc 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-sorted.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-sorted.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-unique.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-unique.yaml.json index a6c34ef5d8..e132d2f9fc 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-unique.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/annotation-mapping/mappings/expected/mapping-unique.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/expected/documents.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/expected/documents.yaml.json index 675acaa8ec..7d90e46b5f 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/expected/documents.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/expected/documents.yaml.json @@ -1,11 +1,17 @@ [ { "label": "fragments", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "fragments", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11fragments", "filterText": "fragments:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "library", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "library", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11library", "filterText": "library:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "root", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "root", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11root", "filterText": "root:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/extension/expected/annotation-mapping-value-second.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/extension/expected/annotation-mapping-value-second.yaml.json index 0b0af251a9..a7991fa387 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/extension/expected/annotation-mapping-value-second.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/extension/expected/annotation-mapping-value-second.yaml.json @@ -1,11 +1,17 @@ [ { "label": "myNodeMapping", - "kind": [], + "kind": [ + + ], "detail": "Annotation Mapping", "documentation": "myNodeMapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11myNodeMapping", "filterText": "myNodeMapping", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/extension/expected/annotation-mapping-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/extension/expected/annotation-mapping-value.yaml.json index c97d48b8df..a2f9244d5c 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/extension/expected/annotation-mapping-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/extension/expected/annotation-mapping-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "myNodeMapping", - "kind": [], + "kind": [ + + ], "detail": "Annotation Mapping", "documentation": "myNodeMapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11myNodeMapping", "filterText": "myNodeMapping", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/encoded-range.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/encoded-range.yaml.json index 48863b52ae..41778843d4 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/encoded-range.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/encoded-range.yaml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "myClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "myClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11myClass", "filterText": "myClass", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/encodes.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/encodes.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/encodes.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/encodes.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/fragments.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/fragments.yaml.json index 316d442175..db4aac6b11 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/fragments.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/fragments/expected/fragments.yaml.json @@ -1,11 +1,17 @@ [ { "label": "encodes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "encodes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11encodes", "filterText": "encodes: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/declared-range.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/declared-range.yaml.json index 48863b52ae..41778843d4 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/declared-range.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/declared-range.yaml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "myClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "myClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11myClass", "filterText": "myClass", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/declares.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/declares.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/declares.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/declares.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/library.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/library.yaml.json index 72a8495460..bfb1fb2109 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/library.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/library/expected/library.yaml.json @@ -1,11 +1,17 @@ [ { "label": "declares", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "declares", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11declares", "filterText": "declares:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "encodes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "encodes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11encodes", "filterText": "encodes: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/empty-mapping-declaration.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/empty-mapping-declaration.yaml.json index a89a009e7b..4106996ddd 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/empty-mapping-declaration.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/empty-mapping-declaration.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "classTerm", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "classTerm", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10classTerm", "filterText": "classTerm: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "extends", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "extends", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extends", "filterText": "extends: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "idTemplate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "idTemplate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11idTemplate", "filterText": "idTemplate: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "mapping", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapping", "filterText": "mapping:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "typeDiscriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminator", "filterText": "typeDiscriminator: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "typeDiscriminatorName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminatorName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminatorName", "filterText": "typeDiscriminatorName: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "union", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "union", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11union", "filterText": "union:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name-after-declaration.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name-after-declaration.yaml.json index ad338afedd..cb6b2620e4 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name-after-declaration.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name-after-declaration.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New nodeMapping", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New nodeMapping", "filterText": "$1:\n classTerm: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name-before-declaration.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name-before-declaration.yaml.json index ddeb80965e..eacf003d1e 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name-before-declaration.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name-before-declaration.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New nodeMapping", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New nodeMapping", "filterText": "$1:\n classTerm: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name.yaml.json index ddeb80965e..eacf003d1e 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-name.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New nodeMapping", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New nodeMapping", "filterText": "$1:\n classTerm: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-patch.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-patch.yaml.json index 6f30c667b1..2c9fb1f13d 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-patch.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-patch.yaml.json @@ -1,11 +1,17 @@ [ { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "fail", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "fail", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11fail", "filterText": "fail", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "ignore", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ignore", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ignore", "filterText": "ignore", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "insert", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "insert", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11insert", "filterText": "insert", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "update", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "update", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11update", "filterText": "update", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "upsert", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "upsert", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11upsert", "filterText": "upsert", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-from-reference.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-from-reference.yaml.json index 5c86f0e294..5f2fbb92e4 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-from-reference.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-from-reference.yaml.json @@ -1,11 +1,17 @@ [ { "label": "schema-org", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schema-org", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-org", "filterText": "schema-org", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11test", "filterText": "test", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value-no-filter.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value-no-filter.yaml.json index 55427c8a31..661ce9e4bc 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value-no-filter.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value-no-filter.yaml.json @@ -1,11 +1,17 @@ [ { "label": "Person", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Person", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Person", "filterText": "my-voc.Person", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "Plane", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Airplane", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Plane", "filterText": "my-voc.Plane", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value-unfinished-alias.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value-unfinished-alias.yaml.json index b251937f2f..012581b3e0 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value-unfinished-alias.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value-unfinished-alias.yaml.json @@ -1,11 +1,17 @@ [ { "label": "my-voc", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "my-voc", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11my-voc", "filterText": "my-voc", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value.yaml.json index bbf68d193c..c8bb0bcd3d 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "Person", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Person", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Person", "filterText": "my-voc.Person", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "Plane", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Airplane", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Plane", "filterText": "my-voc.Plane", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term.yaml.json index 411e22ec9f..237f680f89 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping-term.yaml.json @@ -1,11 +1,17 @@ [ { "label": "schema-org", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schema-org", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-org", "filterText": "schema-org", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping.yaml.json index 1aafa677f3..baa8d381fe 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/node-mapping.yaml.json @@ -1,11 +1,17 @@ [ { "label": "extends", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "extends", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extends", "filterText": "extends: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "idTemplate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "idTemplate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11idTemplate", "filterText": "idTemplate: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "mapping", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapping", "filterText": "mapping:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/type-discriminator-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/type-discriminator-name.yaml.json index fd2da37bfe..abc4797f62 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/type-discriminator-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/type-discriminator-name.yaml.json @@ -1,11 +1,17 @@ [ { "label": "typeDiscriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminator", "filterText": "typeDiscriminator: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "union", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "union", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11union", "filterText": "union:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/union-mapping.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/union-mapping.yaml.json index c4f88dee00..de104c5021 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/union-mapping.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/union-mapping.yaml.json @@ -1,11 +1,17 @@ [ { "label": "typeDiscriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminator", "filterText": "typeDiscriminator: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "typeDiscriminatorName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminatorName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminatorName", "filterText": "typeDiscriminatorName: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/union-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/union-value.yaml.json index dcdaa9d9b5..7850d9b37d 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/union-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/expected/union-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "Member", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Member", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Member", "filterText": "Member", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "Plane", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Plane", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Plane", "filterText": "Plane", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-allow-multiple.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-allow-multiple.yaml.json index 8d101344f2..d09beae4fa 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-allow-multiple.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-allow-multiple.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-before-property.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-before-property.yaml.json index 70ea968258..b20f86eab3 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-before-property.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-before-property.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allowMultiple", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowMultiple", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowMultiple", "filterText": "allowMultiple: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "mandatory", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mandatory", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mandatory", "filterText": "mandatory: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "mapKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapKey", "filterText": "mapKey: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "mapTermKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapTermKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapTermKey", "filterText": "mapTermKey: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "mapTermValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapTermValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapTermValue", "filterText": "mapTermValue: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mapValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapValue", "filterText": "mapValue: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "propertyTerm", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyTerm", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyTerm", "filterText": "propertyTerm: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "sorted", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sorted", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sorted", "filterText": "sorted: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "typeDiscriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminator", "filterText": "typeDiscriminator:\n - ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "typeDiscriminatorName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminatorName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminatorName", "filterText": "typeDiscriminatorName:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "unique", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "unique", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11unique", "filterText": "unique: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-extends.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-extends.yaml.json index fb64db056b..00aeb75112 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-extends.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-extends.yaml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "otherMapping", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "otherMapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11otherMapping", "filterText": "otherMapping", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-mandatory.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-mandatory.yaml.json index 79a92c7263..d71556f15a 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-mandatory.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-mandatory.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-key.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-key.yaml.json index 9fe85a31c6..f4e316ebdf 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-key.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-key.yaml.json @@ -1,11 +1,17 @@ [ { "label": "otherLabel", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "otherLabel", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11otherLabel", "filterText": "otherLabel", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-key-filter.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-key-filter.yaml.json index 3fa78c2d3a..6e06c020a5 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-key-filter.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-key-filter.yaml.json @@ -1,11 +1,17 @@ [ { "label": "age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11age", "filterText": "my-voc.age", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "model", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Model", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11model", "filterText": "my-voc.model", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "my-voc.name", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-key.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-key.yaml.json index 243c718752..8802f515c1 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-key.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-key.yaml.json @@ -1,11 +1,17 @@ [ { "label": "schema-org", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schema-org", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-org", "filterText": "schema-org", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-value-filter.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-value-filter.yaml.json index 7a97569a42..7036e75d7f 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-value-filter.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-value-filter.yaml.json @@ -1,11 +1,17 @@ [ { "label": "age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11age", "filterText": "my-voc.age", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "model", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Model", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11model", "filterText": "my-voc.model", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "my-voc.name", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-value.yaml.json index 684451eb97..ae5f49a065 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-term-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "schema-org", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schema-org", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-org", "filterText": "schema-org", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-value.yaml.json index ea616d61f7..30814ffd2c 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-map-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "otherLabel", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "otherLabel", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11otherLabel", "filterText": "otherLabel", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-range.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-range.yaml.json index ca9e86ed2e..642fdabf42 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-range.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-range.yaml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10any", "filterText": "any", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyNode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyNode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10anyNode", "filterText": "anyNode", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10anyType", "filterText": "anyType", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyUri", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10anyUri", "filterText": "anyUri", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "date", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10date", "filterText": "date", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "dateTime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "dateTime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10dateTime", "filterText": "dateTime", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "decimal", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "decimal", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10decimal", "filterText": "decimal", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "double", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "double", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10double", "filterText": "double", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "duration", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "duration", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10duration", "filterText": "duration", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "float", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "float", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10float", "filterText": "float", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "link", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "link", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10link", "filterText": "link", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "myNodeMapping", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "myNodeMapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11myNodeMapping", "filterText": "myNodeMapping", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "otherMapping", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "otherMapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11otherMapping", "filterText": "otherMapping", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "time", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10time", "filterText": "time", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "uri", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10uri", "filterText": "uri", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-sorted.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-sorted.yaml.json index 6fdca69f66..79f8838748 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-sorted.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-sorted.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-unfinished-alias.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-unfinished-alias.yaml.json index e3a2d610de..3778814c7c 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-unfinished-alias.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-unfinished-alias.yaml.json @@ -1,11 +1,17 @@ [ { "label": "my-voc", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "my-voc", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11my-voc", "filterText": "my-voc", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-value-filter.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-value-filter.yaml.json index 43db51d515..6b60e0fcd2 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-value-filter.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-value-filter.yaml.json @@ -1,11 +1,17 @@ [ { "label": "age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11age", "filterText": "my-voc.age", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "model", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Model", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11model", "filterText": "my-voc.model", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-value.yaml.json index 2ce8377cf4..5214f849b0 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11age", "filterText": "my-voc.age", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "model", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Model", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11model", "filterText": "my-voc.model", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "my-voc.name", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term.yaml.json index ef2f58fb32..83081e6452 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-term.yaml.json @@ -1,11 +1,17 @@ [ { "label": "schema-org", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schema-org", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-org", "filterText": "schema-org", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-unique.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-unique.yaml.json index 6fdca69f66..79f8838748 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-unique.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping-unique.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping.yaml.json index f686fe374b..30ec12a56a 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/node-mappings/mappings/expected/mapping.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allowMultiple", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowMultiple", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowMultiple", "filterText": "allowMultiple: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "mandatory", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mandatory", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mandatory", "filterText": "mandatory: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "mapKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapKey", "filterText": "mapKey: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "mapTermKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapTermKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapTermKey", "filterText": "mapTermKey: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "mapTermValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapTermValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapTermValue", "filterText": "mapTermValue: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mapValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapValue", "filterText": "mapValue: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "propertyTerm", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyTerm", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyTerm", "filterText": "propertyTerm: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10range", "filterText": "range: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "sorted", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sorted", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sorted", "filterText": "sorted: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "typeDiscriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminator", "filterText": "typeDiscriminator:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "typeDiscriminatorName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "typeDiscriminatorName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11typeDiscriminatorName", "filterText": "typeDiscriminatorName:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "unique", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "unique", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11unique", "filterText": "unique: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/key-property.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/key-property.yaml.json index ca0aaaf219..c09deab6b6 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/key-property.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/key-property.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/options.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/options.yaml.json index 97211f2f88..30257fe4be 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/options.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/options.yaml.json @@ -1,11 +1,17 @@ [ { "label": "declarationsPath", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "declarationsPath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11declarationsPath", "filterText": "declarationsPath: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "keyProperty", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "keyProperty", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11keyProperty", "filterText": "keyProperty: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "referenceStyle", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "referenceStyle", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11referenceStyle", "filterText": "referenceStyle: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "selfEncoded", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "selfEncoded", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11selfEncoded", "filterText": "selfEncoded: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/reference-style.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/reference-style.yaml.json index 9e3d2c65a8..a54fa0fd65 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/reference-style.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/reference-style.yaml.json @@ -1,11 +1,17 @@ [ { "label": "JsonSchemaStyle", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "JsonSchemaStyle", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11JsonSchemaStyle", "filterText": "JsonSchemaStyle", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "RamlStyle", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "RamlStyle", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11RamlStyle", "filterText": "RamlStyle", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/self-encoded.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/self-encoded.yaml.json index ca0aaaf219..c09deab6b6 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/self-encoded.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/options/expected/self-encoded.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/declared-range.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/declared-range.yaml.json index 83d323c58a..153cefb8e0 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/declared-range.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/declared-range.yaml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "myClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "myClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11myClass", "filterText": "myClass", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/declares.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/declares.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/declares.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/declares.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/encodes.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/encodes.yaml.json index dbe668c0a5..8539ee542c 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/encodes.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/encodes.yaml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "myClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "myClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11myClass", "filterText": "myClass", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/root-document.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/root-document.yaml.json index dd546c8f2d..97ec9938b6 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/root-document.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/documents/root/expected/root-document.yaml.json @@ -1,11 +1,17 @@ [ { "label": "declares", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "declares", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11declares", "filterText": "declares:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "encodes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "encodes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11encodes", "filterText": "encodes: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/has-name-version.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/has-name-version.yaml.json index 4a2e1e5326..e518d7e317 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/has-name-version.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/has-name-version.yaml.json @@ -1,11 +1,17 @@ [ { "label": "annotationMappings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "annotationMappings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationMappings", "filterText": "annotationMappings:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "documents", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "documents", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documents", "filterText": "documents:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "extensions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "extensions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extensions", "filterText": "extensions:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "external", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "external", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11external", "filterText": "external:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "nodeMappings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nodeMappings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nodeMappings", "filterText": "nodeMappings:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "usage", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "usage", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11usage", "filterText": "usage: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/header.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/header.yaml.json index 2f48267f30..fde6a12034 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/header.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/header.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#%Dialect 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Dialect 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Dialect 1.0", "filterText": "#%Dialect 1.0", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/root.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/root.yaml.json index d71b43df15..a581c5bdb1 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/root.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/meta-dialect/expected/root.yaml.json @@ -1,11 +1,17 @@ [ { "label": "annotationMappings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "annotationMappings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationMappings", "filterText": "annotationMappings:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "dialect", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "dialect", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dialect", "filterText": "dialect: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "documents", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "documents", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documents", "filterText": "documents:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "extensions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "extensions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extensions", "filterText": "extensions:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "external", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "external", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11external", "filterText": "external:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "nodeMappings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nodeMappings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nodeMappings", "filterText": "nodeMappings:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "usage", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "usage", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11usage", "filterText": "usage: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11version", "filterText": "version: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-with-annotation-declaration.raml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-with-annotation-declaration.raml.json index d5af0ccb7c..fd7fc0d653 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-with-annotation-declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-with-annotation-declaration.raml.json @@ -1,11 +1,17 @@ [ { "label": "(maintainer)", - "kind": [], + "kind": [ + + ], "detail": "extensions", "documentation": "(maintainer)", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21(maintainer)", "filterText": "(maintainer):\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "(rateLimiting)", - "kind": [], + "kind": [ + + ], "detail": "extensions", "documentation": "(rateLimiting)", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21(rateLimiting)", "filterText": "(rateLimiting): ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-with-annotation-different-target.raml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-with-annotation-different-target.raml.json index fe51488c70..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-with-annotation-different-target.raml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-with-annotation-different-target.raml.json @@ -1 +1,3 @@ -[] +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-without-annotation-declaration.raml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-without-annotation-declaration.raml.json index fe51488c70..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-without-annotation-declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/api-without-annotation-declaration.raml.json @@ -1 +1,3 @@ -[] +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/async2.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/async2.yaml.json index 3cb2cdc6b4..74c4a29308 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/async2.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/async2.yaml.json @@ -1,11 +1,17 @@ [ { "label": "x-maintainer", - "kind": [], + "kind": [ + + ], "detail": "extensions", "documentation": "x-maintainer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11x-maintainer", "filterText": "x-maintainer:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/oas2.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/oas2.yaml.json index 578d0b3420..2ce21478d7 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/oas2.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/oas2.yaml.json @@ -1,11 +1,17 @@ [ { "label": "x-maintainer", - "kind": [], + "kind": [ + + ], "detail": "extensions", "documentation": "x-maintainer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11x-maintainer", "filterText": "x-maintainer:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "x-rateLimiting", - "kind": [], + "kind": [ + + ], "detail": "extensions", "documentation": "x-rateLimiting", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11x-rateLimiting", "filterText": "x-rateLimiting: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/oas3.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/oas3.yaml.json index 578d0b3420..2ce21478d7 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/oas3.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/basic/expected/oas3.yaml.json @@ -1,11 +1,17 @@ [ { "label": "x-maintainer", - "kind": [], + "kind": [ + + ], "detail": "extensions", "documentation": "x-maintainer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11x-maintainer", "filterText": "x-maintainer:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "x-rateLimiting", - "kind": [], + "kind": [ + + ], "detail": "extensions", "documentation": "x-rateLimiting", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11x-rateLimiting", "filterText": "x-rateLimiting: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api-inner-value.raml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api-inner-value.raml.json index 2f515c1d51..64c636f706 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api-inner-value.raml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api-inner-value.raml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api-inner.raml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api-inner.raml.json index 0870ecfda0..d411c9968d 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api-inner.raml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api-inner.raml.json @@ -1,11 +1,17 @@ [ { "label": "inner", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inner", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11inner", "filterText": "inner: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api.raml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api.raml.json index 2cbfdb91b6..a557df3d24 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api.raml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/api.raml.json @@ -1,11 +1,17 @@ [ { "label": "email", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "email", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11email", "filterText": "email:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "enumTest", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "enumTest", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enumTest", "filterText": "enumTest: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2-inner-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2-inner-value.yaml.json index 50fe0f2f0f..1d7b2deb8f 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2-inner-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2-inner-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "First", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "First", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11First", "filterText": "First", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "Fourth", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Fourth", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Fourth", "filterText": "Fourth", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "Second", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Second", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Second", "filterText": "Second", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "Third", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Third", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Third", "filterText": "Third", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2-inner.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2-inner.yaml.json index 2b5937397f..0cd0d2c902 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2-inner.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2-inner.yaml.json @@ -1,11 +1,17 @@ [ { "label": "inner", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inner", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11inner", "filterText": "inner: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2.yaml.json index 045eb91f58..beef4609c8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/async2.yaml.json @@ -1,11 +1,17 @@ [ { "label": "email", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "email", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11email", "filterText": "email:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "enumTest", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "enumTest", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enumTest", "filterText": "enumTest: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas2-inner.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas2-inner.yaml.json index f596d563bd..3176abf3d5 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas2-inner.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas2-inner.yaml.json @@ -1,11 +1,17 @@ [ { "label": "inner", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inner", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11inner", "filterText": "inner: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas2.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas2.yaml.json index 5a1a4d2b69..af5a6bb689 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas2.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas2.yaml.json @@ -1,11 +1,17 @@ [ { "label": "email", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "email", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11email", "filterText": "email:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "enumTest", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "enumTest", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enumTest", "filterText": "enumTest: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas3-inner.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas3-inner.yaml.json index f596d563bd..3176abf3d5 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas3-inner.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas3-inner.yaml.json @@ -1,11 +1,17 @@ [ { "label": "inner", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inner", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11inner", "filterText": "inner: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas3.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas3.yaml.json index 5a1a4d2b69..af5a6bb689 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas3.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/inner/expected/oas3.yaml.json @@ -1,11 +1,17 @@ [ { "label": "email", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "email", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11email", "filterText": "email:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "enumTest", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "enumTest", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enumTest", "filterText": "enumTest: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/api.raml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/api.raml.json index 386c8c06ea..665ac23333 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/api.raml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/api.raml.json @@ -1,11 +1,17 @@ [ { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "annotationTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "annotationTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationTypes", "filterText": "annotationTypes:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUri", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "baseUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUri", "filterText": "baseUri: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mediaType", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "mediaType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mediaType", "filterText": "mediaType: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/async2.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/async2.yaml.json index ca4931caba..e80408d705 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/async2.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/async2.yaml.json @@ -1,11 +1,17 @@ [ { "label": "contact", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "contact", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contact", "filterText": "contact:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "license", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "license", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11license", "filterText": "license:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "termsOfService", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "termsOfService", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11termsOfService", "filterText": "termsOfService: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/oas2.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/oas2.yaml.json index ca4931caba..e80408d705 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/oas2.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/oas2.yaml.json @@ -1,11 +1,17 @@ [ { "label": "contact", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "contact", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contact", "filterText": "contact:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "license", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "license", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11license", "filterText": "license:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "termsOfService", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "termsOfService", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11termsOfService", "filterText": "termsOfService: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/oas3.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/oas3.yaml.json index ca4931caba..e80408d705 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/oas3.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/outside/expected/oas3.yaml.json @@ -1,11 +1,17 @@ [ { "label": "contact", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "contact", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contact", "filterText": "contact:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "license", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "license", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11license", "filterText": "license:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "termsOfService", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "termsOfService", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11termsOfService", "filterText": "termsOfService: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/semantic-with-null-document/expected/api.raml.json b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/semantic-with-null-document/expected/api.raml.json index a276fdf671..8294c810e1 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/semantic-with-null-document/expected/api.raml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/semantic-extensions/semantic-with-null-document/expected/api.raml.json @@ -1,11 +1,17 @@ [ { "label": "pageSize", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "pageSize", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10pageSize", "filterText": "pageSize: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/discriminator-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/discriminator-value.yaml.json index 47a79c3674..c2920a4df8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/discriminator-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/discriminator-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "TypeA", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TypeA", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TypeA", "filterText": "TypeA", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "TypeB", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TypeB", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TypeB", "filterText": "TypeB", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-distinct.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-distinct.yaml.json index 2ed4564f92..07da4c4537 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-distinct.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-distinct.yaml.json @@ -1,11 +1,17 @@ [ { "label": "propertyX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyX", "filterText": "propertyX: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-with-discriminator-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-with-discriminator-value.yaml.json index 14e1fa9296..b5037e2c6b 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-with-discriminator-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-with-discriminator-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "TypeA", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TypeA", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TypeA", "filterText": "TypeA", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "TypeB", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TypeB", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TypeB", "filterText": "TypeB", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-with-discriminator.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-with-discriminator.yaml.json index de0c618ec0..ed123ad829 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-with-discriminator.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares-with-discriminator.yaml.json @@ -1,11 +1,17 @@ [ { "label": "propertyA", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyA", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyA", "filterText": "propertyA: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "propertyX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyX", "filterText": "propertyX: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares.yaml.json index 7811c01adf..84d420bd01 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/instance-declares.yaml.json @@ -1,11 +1,17 @@ [ { "label": "propertyA", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyA", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyA", "filterText": "propertyA: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "propertyB", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyB", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11propertyB", "filterText": "propertyB: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "propertyX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyX", "filterText": "propertyX: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-not-mandatory-prop.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-not-mandatory-prop.yaml.json index 355c710749..7249d5261e 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-not-mandatory-prop.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-not-mandatory-prop.yaml.json @@ -1,11 +1,17 @@ [ { "label": "propertyX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyX", "filterText": "propertyX: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-not-shared-prop.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-not-shared-prop.yaml.json index 355c710749..7249d5261e 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-not-shared-prop.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-not-shared-prop.yaml.json @@ -1,11 +1,17 @@ [ { "label": "propertyX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyX", "filterText": "propertyX: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-root.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-root.yaml.json index 6196bcdf7a..9b88c131ed 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-root.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-root.yaml.json @@ -1,11 +1,17 @@ [ { "label": "propertyA", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyA", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyA", "filterText": "propertyA: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "propertyB", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyB", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11propertyB", "filterText": "propertyB: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "propertyX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyX", "filterText": "propertyX: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-shared-prop.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-shared-prop.yaml.json index fd2229483c..615aebda53 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-shared-prop.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-explicit-shared-prop.yaml.json @@ -1,11 +1,17 @@ [ { "label": "propertyA", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyA", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyA", "filterText": "propertyA: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "propertyB", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyB", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11propertyB", "filterText": "propertyB: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-root-union.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-root-union.yaml.json index 4ac341f46a..31e87b903f 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-root-union.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/non-root-union.yaml.json @@ -1,11 +1,17 @@ [ { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10discriminator", "filterText": "discriminator: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "newProp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "newProp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11newProp", "filterText": "newProp: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "text", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text", "filterText": "text:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "text", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text", "filterText": "text: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/root.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/root.yaml.json index b89cdf7b5a..09bc7efb4f 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/root.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/root.yaml.json @@ -1,11 +1,17 @@ [ { "label": "kind", - "kind": [], + "kind": [ + + ], "detail": "", "documentation": "kind", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10kind", "filterText": "kind: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "newProp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "newProp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11newProp", "filterText": "newProp: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "text", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text", "filterText": "text:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "text", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text", "filterText": "text: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/typeA.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/typeA.yaml.json index 9110a9a66c..182fc135e5 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/typeA.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/typeA.yaml.json @@ -1,11 +1,17 @@ [ { "label": "text", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text", "filterText": "text:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/union/expected/typeB.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/union/expected/typeB.yaml.json index a60488f19e..66bf14f80e 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/union/expected/typeB.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/union/expected/typeB.yaml.json @@ -1,11 +1,17 @@ [ { "label": "newProp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "newProp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11newProp", "filterText": "newProp: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "text", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text", "filterText": "text: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/expected/root.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/expected/root.yaml.json index 28cbb1723d..6a3ae4a98c 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/expected/root.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/expected/root.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New full validations", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "validations", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full validations", "filterText": "validations:\n $1:\n then:\n if:\n if:\n $2:\n then:\n $3:\n then:\n $3:\n if:\n if:\n $3:\n then:\n if:\n $4:\n then:\n $5: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New validations", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "validations", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New validations", "filterText": "validations:\n $1:\n then:\n $2:\n if:\n $3: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "disabled", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "disabled", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11disabled", "filterText": "disabled:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "extends", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "extends", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extends", "filterText": "extends: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11info", "filterText": "info:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "prefixes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "prefixes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prefixes", "filterText": "prefixes:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "profile", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "profile", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10profile", "filterText": "profile: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "validations", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "validations", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11validations", "filterText": "validations:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "violation", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "violation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11violation", "filterText": "violation:\n - ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "warning", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "warning", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11warning", "filterText": "warning:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/and/expected/and.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/and/expected/and.yaml.json index 7e0c07a3ba..85d7d48f7c 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/and/expected/and.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/and/expected/and.yaml.json @@ -1,11 +1,17 @@ [ { "label": "and", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "and", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11and", "filterText": "and:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "classConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "classConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11classConstraints", "filterText": "classConstraints:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "code", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "code", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10code", "filterText": "code: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10if", "filterText": "if:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "libraries", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "libraries", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11libraries", "filterText": "libraries:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10not", "filterText": "not:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "or", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "or", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11or", "filterText": "or:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "propertyConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyConstraints", "filterText": "propertyConstraints:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "rego", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rego", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10rego", "filterText": "rego: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10then", "filterText": "then:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xone", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "xone", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xone", "filterText": "xone:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/conditional/expected/conditional.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/conditional/expected/conditional.yaml.json index 6e6a82d8df..60696bb3d2 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/conditional/expected/conditional.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/conditional/expected/conditional.yaml.json @@ -1,11 +1,17 @@ [ { "label": "and", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "and", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11and", "filterText": "and:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "classConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "classConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11classConstraints", "filterText": "classConstraints:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10if", "filterText": "if:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "libraries", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "libraries", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11libraries", "filterText": "libraries:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10not", "filterText": "not:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "or", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "or", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11or", "filterText": "or:\n - ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "propertyConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyConstraints", "filterText": "propertyConstraints:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "rego", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rego", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10rego", "filterText": "rego: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "regoModule", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "regoModule", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10regoModule", "filterText": "regoModule:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10then", "filterText": "then:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xone", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "xone", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xone", "filterText": "xone:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/conditional-validation.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/conditional-validation.yaml.json index f643771b2c..164019c808 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/conditional-validation.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/conditional-validation.yaml.json @@ -1,11 +1,17 @@ [ { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10then", "filterText": "then:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/not-validation.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/not-validation.yaml.json index 23ed7a5d4d..268debc3af 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/not-validation.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/not-validation.yaml.json @@ -1,11 +1,17 @@ [ { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/propertyConstraints.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/propertyConstraints.yaml.json index 0e198d2e90..2d2328e4f8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/propertyConstraints.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/propertyConstraints.yaml.json @@ -1,11 +1,17 @@ [ { "label": "http://vocabularies/aml_doc.yaml#design-link-target", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#design-link-target", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#design-link-target", "filterText": "http://vocabularies/aml_doc.yaml#design-link-target: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#designAnnotation", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#designAnnotation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#designAnnotation", "filterText": "http://vocabularies/aml_doc.yaml#designAnnotation: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#extends", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#extends", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#extends", "filterText": "http://vocabularies/aml_doc.yaml#extends: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#binding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#binding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#binding", "filterText": "http://vocabularies/api_binding.yaml#binding: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#accepts", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#accepts", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#accepts", "filterText": "http://vocabularies/api_contract.yaml#accepts: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#callback", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#callback", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#callback", "filterText": "http://vocabularies/api_contract.yaml#callback: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#expects", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#expects", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#expects", "filterText": "http://vocabularies/api_contract.yaml#expects: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#guiSummary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#guiSummary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#guiSummary", "filterText": "http://vocabularies/api_contract.yaml#guiSummary: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#isAbstract", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#isAbstract", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#isAbstract", "filterText": "http://vocabularies/api_contract.yaml#isAbstract: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#method", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#method", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#method", "filterText": "http://vocabularies/api_contract.yaml#method: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#operationId", "filterText": "http://vocabularies/api_contract.yaml#operationId: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#returns", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#returns", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#returns", "filterText": "http://vocabularies/api_contract.yaml#returns: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#scheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#scheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#scheme", "filterText": "http://vocabularies/api_contract.yaml#scheme: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#server", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#server", "filterText": "http://vocabularies/api_contract.yaml#server: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#tag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#tag", "filterText": "http://vocabularies/api_contract.yaml#tag: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "http://vocabularies/core.yaml#deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/core.yaml#deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/core.yaml#deprecated", "filterText": "http://vocabularies/core.yaml#deprecated: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "http://vocabularies/core.yaml#description", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/core.yaml#description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/core.yaml#description", "filterText": "http://vocabularies/core.yaml#description: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "http://vocabularies/core.yaml#documentation", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/core.yaml#documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/core.yaml#documentation", "filterText": "http://vocabularies/core.yaml#documentation: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "http://vocabularies/core.yaml#mediaType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/core.yaml#mediaType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/core.yaml#mediaType", "filterText": "http://vocabularies/core.yaml#mediaType: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "http://vocabularies/core.yaml#name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/core.yaml#name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/core.yaml#name", "filterText": "http://vocabularies/core.yaml#name: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "http://vocabularies/security.yaml#security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#security", "filterText": "http://vocabularies/security.yaml#security: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/rego-validation.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/rego-validation.yaml.json index bcbd306785..37295babef 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/rego-validation.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/rego-validation.yaml.json @@ -1,11 +1,17 @@ [ { "label": "libraries", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "libraries", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11libraries", "filterText": "libraries:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "regoModule", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "regoModule", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10regoModule", "filterText": "regoModule:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/targetClass.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/targetClass.yaml.json index 2db0e66bf6..d7abac35a4 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/targetClass.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/targetClass.yaml.json @@ -1,11 +1,17 @@ [ { "label": "http://vocabularies/aml_doc.yaml#AbstractDeclaration", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#AbstractDeclaration", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#AbstractDeclaration", "filterText": "http://vocabularies/aml_doc.yaml#AbstractDeclaration", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#Document", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#Document", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#Document", "filterText": "http://vocabularies/aml_doc.yaml#Document", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#DocumentExtension", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#DocumentExtension", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#DocumentExtension", "filterText": "http://vocabularies/aml_doc.yaml#DocumentExtension", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#DomainProperty", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#DomainProperty", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#DomainProperty", "filterText": "http://vocabularies/aml_doc.yaml#DomainProperty", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#ExternalDomainElement", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#ExternalDomainElement", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#ExternalDomainElement", "filterText": "http://vocabularies/aml_doc.yaml#ExternalDomainElement", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#ExternalFragment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#ExternalFragment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#ExternalFragment", "filterText": "http://vocabularies/aml_doc.yaml#ExternalFragment", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#ExternalSource", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#ExternalSource", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#ExternalSource", "filterText": "http://vocabularies/aml_doc.yaml#ExternalSource", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#Fragment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#Fragment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#Fragment", "filterText": "http://vocabularies/aml_doc.yaml#Fragment", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#Module", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#Module", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#Module", "filterText": "http://vocabularies/aml_doc.yaml#Module", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#ParametrizedDeclaration", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#ParametrizedDeclaration", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#ParametrizedDeclaration", "filterText": "http://vocabularies/aml_doc.yaml#ParametrizedDeclaration", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#Unit", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#Unit", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#Unit", "filterText": "http://vocabularies/aml_doc.yaml#Unit", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "http://vocabularies/aml_doc.yaml#VariableValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/aml_doc.yaml#VariableValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/aml_doc.yaml#VariableValue", "filterText": "http://vocabularies/aml_doc.yaml#VariableValue", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#Amqp091ChannelBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#Amqp091ChannelBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#Amqp091ChannelBinding", "filterText": "http://vocabularies/api_binding.yaml#Amqp091ChannelBinding", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#Amqp091ChannelExchange", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#Amqp091ChannelExchange", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#Amqp091ChannelExchange", "filterText": "http://vocabularies/api_binding.yaml#Amqp091ChannelExchange", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#Amqp091ChannelQueue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#Amqp091ChannelQueue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#Amqp091ChannelQueue", "filterText": "http://vocabularies/api_binding.yaml#Amqp091ChannelQueue", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#Amqp091MessageBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#Amqp091MessageBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#Amqp091MessageBinding", "filterText": "http://vocabularies/api_binding.yaml#Amqp091MessageBinding", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#Amqp091OperationBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#Amqp091OperationBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#Amqp091OperationBinding", "filterText": "http://vocabularies/api_binding.yaml#Amqp091OperationBinding", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#ChannelBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#ChannelBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#ChannelBinding", "filterText": "http://vocabularies/api_binding.yaml#ChannelBinding", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#ChannelBindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#ChannelBindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#ChannelBindings", "filterText": "http://vocabularies/api_binding.yaml#ChannelBindings", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#EmptyBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#EmptyBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#EmptyBinding", "filterText": "http://vocabularies/api_binding.yaml#EmptyBinding", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#HttpMessageBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#HttpMessageBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#HttpMessageBinding", "filterText": "http://vocabularies/api_binding.yaml#HttpMessageBinding", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#HttpOperationBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#HttpOperationBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#HttpOperationBinding", "filterText": "http://vocabularies/api_binding.yaml#HttpOperationBinding", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#KafkaMessageBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#KafkaMessageBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#KafkaMessageBinding", "filterText": "http://vocabularies/api_binding.yaml#KafkaMessageBinding", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#KafkaOperationBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#KafkaOperationBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#KafkaOperationBinding", "filterText": "http://vocabularies/api_binding.yaml#KafkaOperationBinding", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#MessageBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#MessageBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#MessageBinding", "filterText": "http://vocabularies/api_binding.yaml#MessageBinding", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#MessageBindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#MessageBindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#MessageBindings", "filterText": "http://vocabularies/api_binding.yaml#MessageBindings", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#MqttMessageBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#MqttMessageBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#MqttMessageBinding", "filterText": "http://vocabularies/api_binding.yaml#MqttMessageBinding", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#MqttOperationBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#MqttOperationBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#MqttOperationBinding", "filterText": "http://vocabularies/api_binding.yaml#MqttOperationBinding", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#MqttServerBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#MqttServerBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#MqttServerBinding", "filterText": "http://vocabularies/api_binding.yaml#MqttServerBinding", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#MqttServerLastWill", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#MqttServerLastWill", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#MqttServerLastWill", "filterText": "http://vocabularies/api_binding.yaml#MqttServerLastWill", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#OperationBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#OperationBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#OperationBinding", "filterText": "http://vocabularies/api_binding.yaml#OperationBinding", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#OperationBindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#OperationBindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#OperationBindings", "filterText": "http://vocabularies/api_binding.yaml#OperationBindings", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#ServerBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#ServerBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#ServerBinding", "filterText": "http://vocabularies/api_binding.yaml#ServerBinding", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#ServerBindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#ServerBindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#ServerBindings", "filterText": "http://vocabularies/api_binding.yaml#ServerBindings", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "http://vocabularies/api_binding.yaml#WebSocketsChannelBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_binding.yaml#WebSocketsChannelBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_binding.yaml#WebSocketsChannelBinding", "filterText": "http://vocabularies/api_binding.yaml#WebSocketsChannelBinding", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#API", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#API", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#API", "filterText": "http://vocabularies/api_contract.yaml#API", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#AnnotationTypeDeclarationFragment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#AnnotationTypeDeclarationFragment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#AnnotationTypeDeclarationFragment", "filterText": "http://vocabularies/api_contract.yaml#AnnotationTypeDeclarationFragment", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#AsyncAPI", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#AsyncAPI", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#AsyncAPI", "filterText": "http://vocabularies/api_contract.yaml#AsyncAPI", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Callback", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Callback", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Callback", "filterText": "http://vocabularies/api_contract.yaml#Callback", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#DomainExtension", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#DomainExtension", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#DomainExtension", "filterText": "http://vocabularies/api_contract.yaml#DomainExtension", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Encoding", "filterText": "http://vocabularies/api_contract.yaml#Encoding", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#EndPoint", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#EndPoint", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#EndPoint", "filterText": "http://vocabularies/api_contract.yaml#EndPoint", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Example", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Example", "filterText": "http://vocabularies/api_contract.yaml#Example", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Extension", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Extension", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Extension", "filterText": "http://vocabularies/api_contract.yaml#Extension", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#IriTemplateMapping", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#IriTemplateMapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#IriTemplateMapping", "filterText": "http://vocabularies/api_contract.yaml#IriTemplateMapping", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Message", "filterText": "http://vocabularies/api_contract.yaml#Message", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#NamedExampleFragment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#NamedExampleFragment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#NamedExampleFragment", "filterText": "http://vocabularies/api_contract.yaml#NamedExampleFragment", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Operation", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Operation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Operation", "filterText": "http://vocabularies/api_contract.yaml#Operation", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Overlay", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Overlay", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Overlay", "filterText": "http://vocabularies/api_contract.yaml#Overlay", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Parameter", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Parameter", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Parameter", "filterText": "http://vocabularies/api_contract.yaml#Parameter", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#ParametrizedResourceType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#ParametrizedResourceType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#ParametrizedResourceType", "filterText": "http://vocabularies/api_contract.yaml#ParametrizedResourceType", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#ParametrizedTrait", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#ParametrizedTrait", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#ParametrizedTrait", "filterText": "http://vocabularies/api_contract.yaml#ParametrizedTrait", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Payload", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Payload", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Payload", "filterText": "http://vocabularies/api_contract.yaml#Payload", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#PayloadFragment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#PayloadFragment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#PayloadFragment", "filterText": "http://vocabularies/api_contract.yaml#PayloadFragment", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Request", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Request", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Request", "filterText": "http://vocabularies/api_contract.yaml#Request", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#ResourceType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#ResourceType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#ResourceType", "filterText": "http://vocabularies/api_contract.yaml#ResourceType", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#ResourceTypeFragment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#ResourceTypeFragment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#ResourceTypeFragment", "filterText": "http://vocabularies/api_contract.yaml#ResourceTypeFragment", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Response", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Response", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Response", "filterText": "http://vocabularies/api_contract.yaml#Response", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Server", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Server", "filterText": "http://vocabularies/api_contract.yaml#Server", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#ShapeExtension", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#ShapeExtension", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#ShapeExtension", "filterText": "http://vocabularies/api_contract.yaml#ShapeExtension", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Tag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Tag", "filterText": "http://vocabularies/api_contract.yaml#Tag", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#TemplatedLink", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#TemplatedLink", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#TemplatedLink", "filterText": "http://vocabularies/api_contract.yaml#TemplatedLink", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#Trait", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#Trait", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#Trait", "filterText": "http://vocabularies/api_contract.yaml#Trait", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#TraitFragment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#TraitFragment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#TraitFragment", "filterText": "http://vocabularies/api_contract.yaml#TraitFragment", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#UserDocumentationFragment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#UserDocumentationFragment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#UserDocumentationFragment", "filterText": "http://vocabularies/api_contract.yaml#UserDocumentationFragment", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "http://vocabularies/api_contract.yaml#WebAPI", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/api_contract.yaml#WebAPI", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/api_contract.yaml#WebAPI", "filterText": "http://vocabularies/api_contract.yaml#WebAPI", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "http://vocabularies/core.yaml#CorrelationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/core.yaml#CorrelationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/core.yaml#CorrelationId", "filterText": "http://vocabularies/core.yaml#CorrelationId", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "http://vocabularies/core.yaml#CreativeWork", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/core.yaml#CreativeWork", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/core.yaml#CreativeWork", "filterText": "http://vocabularies/core.yaml#CreativeWork", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "http://vocabularies/core.yaml#License", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/core.yaml#License", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/core.yaml#License", "filterText": "http://vocabularies/core.yaml#License", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "http://vocabularies/core.yaml#Organization", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/core.yaml#Organization", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/core.yaml#Organization", "filterText": "http://vocabularies/core.yaml#Organization", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "http://vocabularies/data_model.yaml#Array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_model.yaml#Array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_model.yaml#Array", "filterText": "http://vocabularies/data_model.yaml#Array", "insertText": null, @@ -2131,11 +2557,17 @@ }, { "label": "http://vocabularies/data_model.yaml#Link", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_model.yaml#Link", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_model.yaml#Link", "filterText": "http://vocabularies/data_model.yaml#Link", "insertText": null, @@ -2161,11 +2593,17 @@ }, { "label": "http://vocabularies/data_model.yaml#Node", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_model.yaml#Node", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_model.yaml#Node", "filterText": "http://vocabularies/data_model.yaml#Node", "insertText": null, @@ -2191,11 +2629,17 @@ }, { "label": "http://vocabularies/data_model.yaml#Object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_model.yaml#Object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_model.yaml#Object", "filterText": "http://vocabularies/data_model.yaml#Object", "insertText": null, @@ -2221,11 +2665,17 @@ }, { "label": "http://vocabularies/data_model.yaml#Property", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_model.yaml#Property", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_model.yaml#Property", "filterText": "http://vocabularies/data_model.yaml#Property", "insertText": null, @@ -2251,11 +2701,17 @@ }, { "label": "http://vocabularies/data_model.yaml#Scalar", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_model.yaml#Scalar", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_model.yaml#Scalar", "filterText": "http://vocabularies/data_model.yaml#Scalar", "insertText": null, @@ -2281,11 +2737,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#AnyShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#AnyShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#AnyShape", "filterText": "http://vocabularies/data_shapes.yaml#AnyShape", "insertText": null, @@ -2311,11 +2773,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#ArrayShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#ArrayShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#ArrayShape", "filterText": "http://vocabularies/data_shapes.yaml#ArrayShape", "insertText": null, @@ -2341,11 +2809,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#DataTypeFragment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#DataTypeFragment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#DataTypeFragment", "filterText": "http://vocabularies/data_shapes.yaml#DataTypeFragment", "insertText": null, @@ -2371,11 +2845,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#DiscriminatorValueMapping", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#DiscriminatorValueMapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#DiscriminatorValueMapping", "filterText": "http://vocabularies/data_shapes.yaml#DiscriminatorValueMapping", "insertText": null, @@ -2401,11 +2881,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#FileShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#FileShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#FileShape", "filterText": "http://vocabularies/data_shapes.yaml#FileShape", "insertText": null, @@ -2431,11 +2917,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#MatrixShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#MatrixShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#MatrixShape", "filterText": "http://vocabularies/data_shapes.yaml#MatrixShape", "insertText": null, @@ -2461,11 +2953,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#NilShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#NilShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#NilShape", "filterText": "http://vocabularies/data_shapes.yaml#NilShape", "insertText": null, @@ -2491,11 +2989,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#PropertyDependencies", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#PropertyDependencies", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#PropertyDependencies", "filterText": "http://vocabularies/data_shapes.yaml#PropertyDependencies", "insertText": null, @@ -2521,11 +3025,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#RecursiveShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#RecursiveShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#RecursiveShape", "filterText": "http://vocabularies/data_shapes.yaml#RecursiveShape", "insertText": null, @@ -2551,11 +3061,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#ScalarShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#ScalarShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#ScalarShape", "filterText": "http://vocabularies/data_shapes.yaml#ScalarShape", "insertText": null, @@ -2581,11 +3097,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#SchemaDependencies", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#SchemaDependencies", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#SchemaDependencies", "filterText": "http://vocabularies/data_shapes.yaml#SchemaDependencies", "insertText": null, @@ -2611,11 +3133,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#SchemaShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#SchemaShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#SchemaShape", "filterText": "http://vocabularies/data_shapes.yaml#SchemaShape", "insertText": null, @@ -2641,11 +3169,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#TupleShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#TupleShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#TupleShape", "filterText": "http://vocabularies/data_shapes.yaml#TupleShape", "insertText": null, @@ -2671,11 +3205,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#UnionShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#UnionShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#UnionShape", "filterText": "http://vocabularies/data_shapes.yaml#UnionShape", "insertText": null, @@ -2701,11 +3241,17 @@ }, { "label": "http://vocabularies/data_shapes.yaml#XMLSerializer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/data_shapes.yaml#XMLSerializer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/data_shapes.yaml#XMLSerializer", "filterText": "http://vocabularies/data_shapes.yaml#XMLSerializer", "insertText": null, @@ -2731,11 +3277,17 @@ }, { "label": "http://vocabularies/security.yaml#ApiKeySettings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#ApiKeySettings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#ApiKeySettings", "filterText": "http://vocabularies/security.yaml#ApiKeySettings", "insertText": null, @@ -2761,11 +3313,17 @@ }, { "label": "http://vocabularies/security.yaml#HttpApiKeySettings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#HttpApiKeySettings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#HttpApiKeySettings", "filterText": "http://vocabularies/security.yaml#HttpApiKeySettings", "insertText": null, @@ -2791,11 +3349,17 @@ }, { "label": "http://vocabularies/security.yaml#HttpSettings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#HttpSettings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#HttpSettings", "filterText": "http://vocabularies/security.yaml#HttpSettings", "insertText": null, @@ -2821,11 +3385,17 @@ }, { "label": "http://vocabularies/security.yaml#OAuth1Settings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#OAuth1Settings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#OAuth1Settings", "filterText": "http://vocabularies/security.yaml#OAuth1Settings", "insertText": null, @@ -2851,11 +3421,17 @@ }, { "label": "http://vocabularies/security.yaml#OAuth2Flow", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#OAuth2Flow", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#OAuth2Flow", "filterText": "http://vocabularies/security.yaml#OAuth2Flow", "insertText": null, @@ -2881,11 +3457,17 @@ }, { "label": "http://vocabularies/security.yaml#OAuth2Settings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#OAuth2Settings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#OAuth2Settings", "filterText": "http://vocabularies/security.yaml#OAuth2Settings", "insertText": null, @@ -2911,11 +3493,17 @@ }, { "label": "http://vocabularies/security.yaml#OpenIdConnectSettings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#OpenIdConnectSettings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#OpenIdConnectSettings", "filterText": "http://vocabularies/security.yaml#OpenIdConnectSettings", "insertText": null, @@ -2941,11 +3529,17 @@ }, { "label": "http://vocabularies/security.yaml#ParametrizedSecurityScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#ParametrizedSecurityScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#ParametrizedSecurityScheme", "filterText": "http://vocabularies/security.yaml#ParametrizedSecurityScheme", "insertText": null, @@ -2971,11 +3565,17 @@ }, { "label": "http://vocabularies/security.yaml#Scope", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#Scope", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#Scope", "filterText": "http://vocabularies/security.yaml#Scope", "insertText": null, @@ -3001,11 +3601,17 @@ }, { "label": "http://vocabularies/security.yaml#SecurityRequirement", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#SecurityRequirement", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#SecurityRequirement", "filterText": "http://vocabularies/security.yaml#SecurityRequirement", "insertText": null, @@ -3031,11 +3637,17 @@ }, { "label": "http://vocabularies/security.yaml#SecurityScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#SecurityScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#SecurityScheme", "filterText": "http://vocabularies/security.yaml#SecurityScheme", "insertText": null, @@ -3061,11 +3673,17 @@ }, { "label": "http://vocabularies/security.yaml#SecuritySchemeFragment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#SecuritySchemeFragment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#SecuritySchemeFragment", "filterText": "http://vocabularies/security.yaml#SecuritySchemeFragment", "insertText": null, @@ -3091,11 +3709,17 @@ }, { "label": "http://vocabularies/security.yaml#Settings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://vocabularies/security.yaml#Settings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://vocabularies/security.yaml#Settings", "filterText": "http://vocabularies/security.yaml#Settings", "insertText": null, @@ -3121,11 +3745,17 @@ }, { "label": "http://www.w3.org/ns/shacl#NodeShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://www.w3.org/ns/shacl#NodeShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://www.w3.org/ns/shacl#NodeShape", "filterText": "http://www.w3.org/ns/shacl#NodeShape", "insertText": null, @@ -3151,11 +3781,17 @@ }, { "label": "http://www.w3.org/ns/shacl#PropertyShape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://www.w3.org/ns/shacl#PropertyShape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://www.w3.org/ns/shacl#PropertyShape", "filterText": "http://www.w3.org/ns/shacl#PropertyShape", "insertText": null, @@ -3181,11 +3817,17 @@ }, { "label": "http://www.w3.org/ns/shacl#Shape", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http://www.w3.org/ns/shacl#Shape", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http://www.w3.org/ns/shacl#Shape", "filterText": "http://www.w3.org/ns/shacl#Shape", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/undefined-union-range-validation.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/undefined-union-range-validation.yaml.json index e9a4bab7bc..dc1167c51c 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/undefined-union-range-validation.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/undefined-union-range-validation.yaml.json @@ -1,11 +1,17 @@ [ { "label": "and", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "and", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11and", "filterText": "and:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "classConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "classConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11classConstraints", "filterText": "classConstraints:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10if", "filterText": "if:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "libraries", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "libraries", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11libraries", "filterText": "libraries:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10not", "filterText": "not:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "or", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "or", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11or", "filterText": "or:\n - ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "propertyConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyConstraints", "filterText": "propertyConstraints:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "rego", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rego", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10rego", "filterText": "rego: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "regoModule", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "regoModule", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10regoModule", "filterText": "regoModule:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10then", "filterText": "then:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xone", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "xone", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xone", "filterText": "xone:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/validation.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/validation.yaml.json index 25912f50d6..d9ff5eaccc 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/validation.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/validation.yaml.json @@ -1,11 +1,17 @@ [ { "label": "and", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "and", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11and", "filterText": "and:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "classConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "classConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11classConstraints", "filterText": "classConstraints:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10if", "filterText": "if:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "libraries", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "libraries", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11libraries", "filterText": "libraries:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10not", "filterText": "not:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "or", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "or", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11or", "filterText": "or:\n - ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "propertyConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyConstraints", "filterText": "propertyConstraints:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "rego", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rego", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10rego", "filterText": "rego: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "regoModule", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "regoModule", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10regoModule", "filterText": "regoModule:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10then", "filterText": "then:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xone", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "xone", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xone", "filterText": "xone:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/xone-validation.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/xone-validation.yaml.json index 23ed7a5d4d..268debc3af 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/xone-validation.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/expected/xone-validation.yaml.json @@ -1,11 +1,17 @@ [ { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/not/expected/not.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/not/expected/not.yaml.json index 7e0c07a3ba..85d7d48f7c 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/not/expected/not.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/not/expected/not.yaml.json @@ -1,11 +1,17 @@ [ { "label": "and", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "and", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11and", "filterText": "and:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "classConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "classConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11classConstraints", "filterText": "classConstraints:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "code", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "code", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10code", "filterText": "code: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10if", "filterText": "if:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "libraries", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "libraries", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11libraries", "filterText": "libraries:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10not", "filterText": "not:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "or", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "or", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11or", "filterText": "or:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "propertyConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyConstraints", "filterText": "propertyConstraints:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "rego", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rego", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10rego", "filterText": "rego: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10then", "filterText": "then:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xone", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "xone", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xone", "filterText": "xone:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/shape/expected/class.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/shape/expected/class.yaml.json index 6e6a82d8df..60696bb3d2 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/shape/expected/class.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/shape/expected/class.yaml.json @@ -1,11 +1,17 @@ [ { "label": "and", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "and", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11and", "filterText": "and:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "classConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "classConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11classConstraints", "filterText": "classConstraints:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10if", "filterText": "if:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "libraries", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "libraries", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11libraries", "filterText": "libraries:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10not", "filterText": "not:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "or", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "or", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11or", "filterText": "or:\n - ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "propertyConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyConstraints", "filterText": "propertyConstraints:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "rego", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rego", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10rego", "filterText": "rego: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "regoModule", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "regoModule", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10regoModule", "filterText": "regoModule:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10then", "filterText": "then:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xone", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "xone", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xone", "filterText": "xone:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/shape/expected/property.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/shape/expected/property.yaml.json index 6e6a82d8df..60696bb3d2 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/shape/expected/property.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/shape/expected/property.yaml.json @@ -1,11 +1,17 @@ [ { "label": "and", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "and", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11and", "filterText": "and:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "classConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "classConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11classConstraints", "filterText": "classConstraints:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10if", "filterText": "if:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "libraries", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "libraries", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11libraries", "filterText": "libraries:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10not", "filterText": "not:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "or", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "or", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11or", "filterText": "or:\n - ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "propertyConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyConstraints", "filterText": "propertyConstraints:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "rego", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rego", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10rego", "filterText": "rego: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "regoModule", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "regoModule", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10regoModule", "filterText": "regoModule:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10then", "filterText": "then:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xone", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "xone", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xone", "filterText": "xone:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/xone/expected/xone.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/xone/expected/xone.yaml.json index 7e0c07a3ba..85d7d48f7c 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/xone/expected/xone.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/validation-profile/validations/xone/expected/xone.yaml.json @@ -1,11 +1,17 @@ [ { "label": "and", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "and", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11and", "filterText": "and:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "classConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "classConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11classConstraints", "filterText": "classConstraints:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "code", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "code", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10code", "filterText": "code: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10if", "filterText": "if:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "libraries", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "libraries", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11libraries", "filterText": "libraries:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10not", "filterText": "not:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "or", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "or", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11or", "filterText": "or:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "propertyConstraints", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyConstraints", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10propertyConstraints", "filterText": "propertyConstraints:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "rego", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rego", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10rego", "filterText": "rego: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "targetClass", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "targetClass", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11targetClass", "filterText": "targetClass: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10then", "filterText": "then:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xone", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "xone", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xone", "filterText": "xone:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/classTerm-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/classTerm-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/classTerm-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/classTerm-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/classTerm.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/classTerm.yaml.json index bbd3b82198..1d5b61796c 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/classTerm.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/classTerm.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "extends", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "extends", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extends", "filterText": "extends: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/description.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/description.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/description.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/description.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/displayName.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/displayName.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/displayName.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/displayName.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/extends.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/extends.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/extends.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/extends.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-in-array.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-in-array.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-in-array.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-in-array.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-suggest-propertyTerms.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-suggest-propertyTerms.yaml.json index 9d8fb389ca..fa4df5b679 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-suggest-propertyTerms.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-suggest-propertyTerms.yaml.json @@ -1,11 +1,17 @@ [ { "label": "prop1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "prop1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prop1", "filterText": "prop1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "prop2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "prop2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prop2", "filterText": "prop2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-will-filter.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-will-filter.yaml.json index bc12036609..4bba619f6a 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-will-filter.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties-will-filter.yaml.json @@ -1,11 +1,17 @@ [ { "label": "prop2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "prop2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prop2", "filterText": "prop2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/classTerms/expected/properties.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/base.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/base.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/base.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/base.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/external-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/external-value.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/external-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/external-value.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/external.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/external.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/external.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/external.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/header.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/header.yaml.json index 81ee87aa25..cdf115e443 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/header.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/header.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#%Dialect 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Dialect 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Dialect 1.0", "filterText": "#%Dialect 1.0", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "#%Library / Dialect 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Library / Dialect 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Library / Dialect 1.0", "filterText": "#%Library / Dialect 1.0", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "#%Library / Validation Profile 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Library / Validation Profile 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Library / Validation Profile 1.0", "filterText": "#%Library / Validation Profile 1.0", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "#%Library / Vocabulary 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Library / Vocabulary 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Library / Vocabulary 1.0", "filterText": "#%Library / Vocabulary 1.0", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "#%Patch / Dialect 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Patch / Dialect 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Patch / Dialect 1.0", "filterText": "#%Patch / Dialect 1.0", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "#%Patch / Validation Profile 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Patch / Validation Profile 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Patch / Validation Profile 1.0", "filterText": "#%Patch / Validation Profile 1.0", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "#%Patch / Vocabulary 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Patch / Vocabulary 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Patch / Vocabulary 1.0", "filterText": "#%Patch / Vocabulary 1.0", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "#%RegoValidation / Validation Profile 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %RegoValidation / Validation Profile 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RegoValidation / Validation Profile 1.0", "filterText": "#%RegoValidation / Validation Profile 1.0", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "#%Validation Profile 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Validation Profile 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Validation Profile 1.0", "filterText": "#%Validation Profile 1.0", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "#%Vocabulary 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Vocabulary 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Vocabulary 1.0", "filterText": "#%Vocabulary 1.0", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/root.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/root.yaml.json index 1f90b38188..dc89ff1a82 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/root.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/root.yaml.json @@ -1,11 +1,17 @@ [ { "label": "base", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "base", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10base", "filterText": "base: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "classTerms", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "classTerms", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11classTerms", "filterText": "classTerms:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "external", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "external", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11external", "filterText": "external:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "propertyTerms", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyTerms", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11propertyTerms", "filterText": "propertyTerms:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "usage", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "usage", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11usage", "filterText": "usage: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "vocabulary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "vocabulary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10vocabulary", "filterText": "vocabulary: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/usage.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/usage.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/usage.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/usage.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/uses-value.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/uses-value.yaml.json index 7c3f8baa6a..ccd9c8b289 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/uses-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/uses-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "base.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11base.yaml", "filterText": "base.yaml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "classTerms/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11classTerms/", "filterText": "classTerms/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "external-value.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11external-value.yaml", "filterText": "external-value.yaml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "external.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11external.yaml", "filterText": "external.yaml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "header.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11header.yaml", "filterText": "header.yaml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "propertyTerms/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11propertyTerms/", "filterText": "propertyTerms/", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "root.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11root.yaml", "filterText": "root.yaml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "usage.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11usage.yaml", "filterText": "usage.yaml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "uses.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses.yaml", "filterText": "uses.yaml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "vocabulary.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11vocabulary.yaml", "filterText": "vocabulary.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/uses.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/uses.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/uses.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/uses.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/vocabulary.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/vocabulary.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/vocabulary.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/expected/vocabulary.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/description.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/description.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/description.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/description.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/displayName.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/displayName.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/displayName.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/displayName.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/extends.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/extends.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/extends.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/extends.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propTermRange.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propTermRange.yaml.json index ff79e9b623..c03afc9c40 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propTermRange.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propTermRange.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "extends", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "extends", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extends", "filterText": "extends: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propertyTerm-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propertyTerm-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propertyTerm-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propertyTerm-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propertyTerm.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propertyTerm.yaml.json index 8108cfdfa3..13d62ceb36 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propertyTerm.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/propertyTerm.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "extends", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "extends", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extends", "filterText": "extends: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11range", "filterText": "range: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/range-suggests-classTerms.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/range-suggests-classTerms.yaml.json index f72eb268b6..d711f7d1a1 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/range-suggests-classTerms.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/range-suggests-classTerms.yaml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "double", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "double", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11double", "filterText": "double", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "fakeTerm", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "fakeTerm", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11fakeTerm", "filterText": "fakeTerm", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "float", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "float", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11float", "filterText": "float", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "myTerm", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "myTerm", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11myTerm", "filterText": "myTerm", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "uri", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uri", "filterText": "uri", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/range.yaml.json b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/range.yaml.json index 2f7183cdeb..44c34956f1 100644 --- a/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/range.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AML/vocabulary/propertyTerms/expected/range.yaml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "double", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "double", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11double", "filterText": "double", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "float", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "float", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11float", "filterText": "float", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "uri", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uri", "filterText": "uri", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/bindings.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/bindings.yaml.json index f91ec782d5..93c9f995ae 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/bindings.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/bindings.yaml.json @@ -1,11 +1,17 @@ [ { "label": "amqp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp", "filterText": "amqp:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "amqp1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp1", "filterText": "amqp1:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "http:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "jms", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jms", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jms", "filterText": "jms:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "kafka", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "kafka", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11kafka", "filterText": "kafka:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "mqtt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt", "filterText": "mqtt:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mqtt5", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt5", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt5", "filterText": "mqtt5:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "nats", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nats", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nats", "filterText": "nats:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "redis", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "redis", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11redis", "filterText": "redis:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "sns", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sns", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sns", "filterText": "sns:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "sqs", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sqs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sqs", "filterText": "sqs:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "stomp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "stomp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11stomp", "filterText": "stomp:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "ws:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/channel.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/channel.yaml.json index c2f41d10cf..dbb173c130 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/channel.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/channel.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindings", "filterText": "bindings:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "publish", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "publish", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11publish", "filterText": "publish:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "subscribe", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "subscribe", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11subscribe", "filterText": "subscribe:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/channels.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/channels.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/channels.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/channels.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/parameter.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/parameter.yaml.json index 31d143bf1d..e006ed1343 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/parameter.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/channels/expected/parameter.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11location", "filterText": "location: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/channel-binding-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/channel-binding-ref.yaml.json index 98d8197c4b..d363d184af 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/channel-binding-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/channel-binding-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/channelBindings/channelBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/channelBindings/channelBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/channelBindings/channelBinding", "filterText": "\"#/components/channelBindings/channelBinding\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "message-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message-binding-ref.yaml", "filterText": "message-binding-ref.yaml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "operation-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operation-binding-ref.yaml", "filterText": "operation-binding-ref.yaml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "server-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11server-binding-ref.yaml", "filterText": "server-binding-ref.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/message-binding-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/message-binding-ref.yaml.json index a8f862726a..27d9dbd3e7 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/message-binding-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/message-binding-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/messageBindings/messageBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/messageBindings/messageBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/messageBindings/messageBinding", "filterText": "\"#/components/messageBindings/messageBinding\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "channel-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11channel-binding-ref.yaml", "filterText": "channel-binding-ref.yaml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "operation-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operation-binding-ref.yaml", "filterText": "operation-binding-ref.yaml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "server-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11server-binding-ref.yaml", "filterText": "server-binding-ref.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/operation-binding-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/operation-binding-ref.yaml.json index 275a6958b6..ef493f8887 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/operation-binding-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/operation-binding-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/operationBindings/operationBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/operationBindings/operationBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/operationBindings/operationBinding", "filterText": "\"#/components/operationBindings/operationBinding\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "channel-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11channel-binding-ref.yaml", "filterText": "channel-binding-ref.yaml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "message-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message-binding-ref.yaml", "filterText": "message-binding-ref.yaml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "server-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11server-binding-ref.yaml", "filterText": "server-binding-ref.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/server-binding-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/server-binding-ref.yaml.json index d36fcf9299..032b7f9cd1 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/server-binding-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/bindings-ref/expected/server-binding-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/serverBindings/serverBinding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/serverBindings/serverBinding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/serverBindings/serverBinding", "filterText": "\"#/components/serverBindings/serverBinding\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "channel-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11channel-binding-ref.yaml", "filterText": "channel-binding-ref.yaml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "message-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message-binding-ref.yaml", "filterText": "message-binding-ref.yaml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "operation-binding-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operation-binding-ref.yaml", "filterText": "operation-binding-ref.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-is.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-is.yaml.json index f64355d0a0..1336448769 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-is.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-is.yaml.json @@ -1,11 +1,17 @@ [ { "label": "queue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "queue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queue", "filterText": "queue", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "routingKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "routingKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11routingKey", "filterText": "routingKey", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-queue-props.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-queue-props.yaml.json index 8a88652fde..58015b516d 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-queue-props.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-queue-props.yaml.json @@ -1,11 +1,17 @@ [ { "label": "autoDelete", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "autoDelete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11autoDelete", "filterText": "autoDelete: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "durable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "durable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11durable", "filterText": "durable: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "exclusive", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusive", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusive", "filterText": "exclusive: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "vhost", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "vhost", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11vhost", "filterText": "vhost: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-queue.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-queue.yaml.json index a6df84a7f3..69c624f142 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-queue.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-queue.yaml.json @@ -1,11 +1,17 @@ [ { "label": "queue", - "kind": [], + "kind": [ + + ], "detail": "AMQP", "documentation": "queue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10queue", "filterText": "queue:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-routing-key-props.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-routing-key-props.yaml.json index d7823d0cb8..666e50d521 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-routing-key-props.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-routing-key-props.yaml.json @@ -1,11 +1,17 @@ [ { "label": "autoDelete", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "autoDelete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11autoDelete", "filterText": "autoDelete: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "durable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "durable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11durable", "filterText": "durable: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name\t", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name\t", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name\t", "filterText": "\"name\\t\": ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11type", "filterText": "type: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "vhost", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "vhost", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11vhost", "filterText": "vhost: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-routing-key.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-routing-key.yaml.json index 62cdc074e8..341e8dde43 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-routing-key.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/amqp/expected/amqp-binding-routing-key.yaml.json @@ -1,11 +1,17 @@ [ { "label": "exchange", - "kind": [], + "kind": [ + + ], "detail": "AMQP", "documentation": "exchange", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10exchange", "filterText": "exchange:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/amqp-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/amqp-binding.yaml.json index 348adbcf1e..33b2295e76 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/amqp-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/amqp-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/amqp1-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/amqp1-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/amqp1-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/amqp1-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/channel-bindings-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/channel-bindings-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/channel-bindings-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/channel-bindings-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/channel-bindings.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/channel-bindings.yaml.json index f91ec782d5..93c9f995ae 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/channel-bindings.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/channel-bindings.yaml.json @@ -1,11 +1,17 @@ [ { "label": "amqp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp", "filterText": "amqp:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "amqp1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp1", "filterText": "amqp1:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "http:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "jms", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jms", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jms", "filterText": "jms:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "kafka", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "kafka", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11kafka", "filterText": "kafka:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "mqtt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt", "filterText": "mqtt:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mqtt5", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt5", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt5", "filterText": "mqtt5:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "nats", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nats", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nats", "filterText": "nats:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "redis", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "redis", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11redis", "filterText": "redis:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "sns", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sns", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sns", "filterText": "sns:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "sqs", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sqs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sqs", "filterText": "sqs:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "stomp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "stomp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11stomp", "filterText": "stomp:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "ws:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/http-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/http-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/http-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/http-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/jms-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/jms-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/jms-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/jms-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/kafka-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/kafka-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/kafka-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/kafka-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/mqtt-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/mqtt-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/mqtt-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/mqtt-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/mqtt5-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/mqtt5-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/mqtt5-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/mqtt5-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/nats-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/nats-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/nats-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/nats-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/redis-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/redis-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/redis-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/redis-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/sns-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/sns-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/sns-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/sns-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/sqs-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/sqs-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/sqs-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/sqs-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/stomp-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/stomp-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/stomp-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/stomp-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding-headers.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding-headers.yaml.json index d3db4214b7..5577f43843 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding-headers.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding-headers.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding-query.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding-query.yaml.json index d3db4214b7..5577f43843 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding-query.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding-query.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding.yaml.json index eab65507ff..40845a3c17 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/channel-bindings/expected/ws-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New headers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New headers", "filterText": "headers:\n description: $1\n type: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New query", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "query", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New query", "filterText": "query:\n description: $1\n type: $2", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "bindingVersion", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindingVersion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindingVersion", "filterText": "bindingVersion: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "method", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "method", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11method", "filterText": "method: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "query", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "query", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11query", "filterText": "query:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-ref-message.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-ref-message.yaml.json index eb71974441..3ce90a276d 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-ref-message.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-ref-message.yaml.json @@ -1,11 +1,17 @@ [ { "label": "components/correlationIds/correlationName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/correlationIds/correlationName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11components/correlationIds/correlationName", "filterText": "\"#/components/correlationIds/correlationName\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-runtime.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-runtime.yaml.json index 091ca1e0dd..250400360c 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-runtime.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation-runtime.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$message.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "$message.", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$message.", "filterText": "$message.", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation.yaml.json index efab0454ee..35e81186e0 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/correlations/expected/correlation.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11location", "filterText": "location: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/amqp-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/amqp-binding.yaml.json index c9c4a5f36e..2c9b49c4c7 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/amqp-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/amqp-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindingVersion", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindingVersion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindingVersion", "filterText": "bindingVersion: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "contentEncoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "contentEncoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contentEncoding", "filterText": "contentEncoding: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "messageType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "messageType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11messageType", "filterText": "messageType: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/amqp1-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/amqp1-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/amqp1-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/amqp1-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/http-binding-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/http-binding-schema.yaml.json index 8e8888f4ea..4bcf7f6146 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/http-binding-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/http-binding-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/http-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/http-binding.yaml.json index 7969bfb293..7b39fdc385 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/http-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/http-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindingVersion", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindingVersion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindingVersion", "filterText": "bindingVersion: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/jms-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/jms-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/jms-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/jms-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/kafka-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/kafka-binding.yaml.json index 3ae5425ed5..5e600b4105 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/kafka-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/kafka-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindingVersion", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindingVersion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindingVersion", "filterText": "bindingVersion: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11key", "filterText": "key: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/message-binding-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/message-binding-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/message-binding-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/message-binding-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/message-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/message-binding.yaml.json index f91ec782d5..93c9f995ae 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/message-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/message-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "amqp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp", "filterText": "amqp:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "amqp1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp1", "filterText": "amqp1:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "http:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "jms", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jms", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jms", "filterText": "jms:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "kafka", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "kafka", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11kafka", "filterText": "kafka:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "mqtt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt", "filterText": "mqtt:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mqtt5", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt5", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt5", "filterText": "mqtt5:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "nats", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nats", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nats", "filterText": "nats:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "redis", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "redis", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11redis", "filterText": "redis:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "sns", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sns", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sns", "filterText": "sns:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "sqs", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sqs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sqs", "filterText": "sqs:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "stomp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "stomp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11stomp", "filterText": "stomp:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "ws:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/mqtt-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/mqtt-binding.yaml.json index 5915a66a3c..d83c5fa6d7 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/mqtt-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/mqtt-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindingVersion", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindingVersion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindingVersion", "filterText": "bindingVersion: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/mqtt5-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/mqtt5-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/mqtt5-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/mqtt5-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/nats-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/nats-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/nats-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/nats-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/redis-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/redis-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/redis-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/redis-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/sns-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/sns-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/sns-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/sns-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/sqs-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/sqs-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/sqs-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/sqs-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/stomp-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/stomp-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/stomp-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/stomp-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/ws-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/ws-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/ws-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-bindings/expected/ws-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-ref-path.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-ref-path.yaml.json index 6a6a7860e4..87db87f42c 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-ref-path.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-ref-path.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/messageTraits/mTr", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/messageTraits/mTr", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/messageTraits/mTr", "filterText": "\"#/components/messageTraits/mTr\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "message-trait-name.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message-trait-name.yaml", "filterText": "message-trait-name.yaml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "message-trait-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message-trait-ref.yaml", "filterText": "message-trait-ref.yaml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "message-trait.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message-trait.yaml", "filterText": "message-trait.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-ref.yaml.json index 5c24852e92..48fc0f1f41 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait.yaml.json index 19355d6207..927ad0ec50 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/message-traits/expected/message-trait.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New headers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New headers", "filterText": "headers:\n description: $1\n type: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "tags:\n -\n name: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "bindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindings", "filterText": "bindings:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "contentType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "contentType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contentType", "filterText": "contentType: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "correlationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "correlationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11correlationId", "filterText": "correlationId:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "schemaFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemaFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemaFormat", "filterText": "schemaFormat: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-name-after-declaration.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-name-after-declaration.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-name-after-declaration.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-name-after-declaration.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-ref-operation.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-ref-operation.yaml.json index 440a1b40a1..106968b4ea 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-ref-operation.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-ref-operation.yaml.json @@ -1,11 +1,17 @@ [ { "label": "components/messages/messageDef", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/messages/messageDef", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11components/messages/messageDef", "filterText": "\"#/components/messages/messageDef\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-ref.yaml.json index 465a276a4f..3c4c6f86b3 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "components/messages/messageDef", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/messages/messageDef", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11components/messages/messageDef", "filterText": "\"#/components/messages/messageDef\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message.yaml.json index 852865c432..0dc3ac315c 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/messages/expected/message.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New headers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New headers", "filterText": "headers:\n description: $1\n type: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "tags:\n -\n name: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "bindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindings", "filterText": "bindings:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "contentType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "contentType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contentType", "filterText": "contentType: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "correlationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "correlationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11correlationId", "filterText": "correlationId:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "payload", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "payload", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11payload", "filterText": "payload:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemaFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemaFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemaFormat", "filterText": "schemaFormat: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/amqp-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/amqp-binding.yaml.json index b92fbe865f..fc67c34470 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/amqp-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/amqp-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "ack", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ack", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ack", "filterText": "ack: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "bcc", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bcc", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bcc", "filterText": "bcc:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "bindingVersion", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindingVersion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindingVersion", "filterText": "bindingVersion: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "cc", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "cc", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11cc", "filterText": "cc:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deliveryMode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deliveryMode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deliveryMode", "filterText": "deliveryMode: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "expiration", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "expiration", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expiration", "filterText": "expiration: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mandatory", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mandatory", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mandatory", "filterText": "mandatory:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "priority", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "priority", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11priority", "filterText": "priority: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "replyTo", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "replyTo", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11replyTo", "filterText": "replyTo: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "timestamp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "timestamp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11timestamp", "filterText": "timestamp: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "userId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "userId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11userId", "filterText": "userId: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/amqp1-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/amqp1-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/amqp1-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/amqp1-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/http-binding-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/http-binding-schema.yaml.json index 434da09084..0885c4d9d2 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/http-binding-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/http-binding-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/http-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/http-binding.yaml.json index 3adfdff746..6b2e30c97f 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/http-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/http-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindingVersion", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindingVersion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindingVersion", "filterText": "bindingVersion: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "method", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "method", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11method", "filterText": "method: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/jms-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/jms-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/jms-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/jms-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/kafka-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/kafka-binding.yaml.json index 0a2f75368a..a65faf55a6 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/kafka-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/kafka-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindingVersion", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindingVersion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindingVersion", "filterText": "bindingVersion: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "clientId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "clientId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11clientId", "filterText": "clientId: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "groupId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "groupId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11groupId", "filterText": "groupId: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/mqtt-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/mqtt-binding.yaml.json index 4280c47559..1e1b496aca 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/mqtt-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/mqtt-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindingVersion", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindingVersion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindingVersion", "filterText": "bindingVersion: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "qos", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "qos", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11qos", "filterText": "qos: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "retain", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "retain", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11retain", "filterText": "retain: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/mqtt5-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/mqtt5-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/mqtt5-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/mqtt5-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/nats-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/nats-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/nats-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/nats-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/operation-binding-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/operation-binding-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/operation-binding-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/operation-binding-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/operation-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/operation-binding.yaml.json index f91ec782d5..93c9f995ae 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/operation-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/operation-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "amqp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp", "filterText": "amqp:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "amqp1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp1", "filterText": "amqp1:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "http:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "jms", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jms", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jms", "filterText": "jms:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "kafka", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "kafka", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11kafka", "filterText": "kafka:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "mqtt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt", "filterText": "mqtt:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mqtt5", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt5", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt5", "filterText": "mqtt5:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "nats", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nats", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nats", "filterText": "nats:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "redis", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "redis", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11redis", "filterText": "redis:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "sns", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sns", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sns", "filterText": "sns:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "sqs", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sqs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sqs", "filterText": "sqs:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "stomp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "stomp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11stomp", "filterText": "stomp:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "ws:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/redis-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/redis-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/redis-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/redis-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/sns-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/sns-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/sns-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/sns-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/sqs-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/sqs-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/sqs-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/sqs-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/stomp-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/stomp-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/stomp-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/stomp-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/ws-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/ws-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/ws-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-bindings/expected/ws-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-bindings.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-bindings.yaml.json index 95ef5434aa..853233f00b 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-bindings.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-bindings.yaml.json @@ -1,11 +1,17 @@ [ { "label": "amqp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp", "filterText": "amqp:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "amqp1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp1", "filterText": "amqp1:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "http:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "jms", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jms", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jms", "filterText": "jms:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "kafka", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "kafka", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11kafka", "filterText": "kafka:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "mqtt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt", "filterText": "mqtt:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mqtt5", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt5", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt5", "filterText": "mqtt5:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "nats", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nats", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nats", "filterText": "nats:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "redis", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "redis", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11redis", "filterText": "redis:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "sns", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sns", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sns", "filterText": "sns:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "sqs", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sqs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sqs", "filterText": "sqs:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "stomp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "stomp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11stomp", "filterText": "stomp:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "ws:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-external-doc.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-external-doc.yaml.json index fceaac40e7..90d3a5ef83 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-external-doc.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-external-doc.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-name-after-declaration.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-name-after-declaration.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-name-after-declaration.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-name-after-declaration.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-ref-path.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-ref-path.yaml.json index d8b1c3782b..73701860a4 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-ref-path.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-ref-path.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/operationTraits/tr", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/operationTraits/tr", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/operationTraits/tr", "filterText": "\"#/components/operationTraits/tr\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "trait-bindings.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait-bindings.yaml", "filterText": "trait-bindings.yaml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "trait-external-doc.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait-external-doc.yaml", "filterText": "trait-external-doc.yaml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "trait-name-after-declaration.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait-name-after-declaration.yaml", "filterText": "trait-name-after-declaration.yaml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "trait-name.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait-name.yaml", "filterText": "trait-name.yaml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "trait-ref.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait-ref.yaml", "filterText": "trait-ref.yaml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "trait-tags.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait-tags.yaml", "filterText": "trait-tags.yaml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "trait.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.yaml", "filterText": "trait.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-ref.yaml.json index 3a3303ecd9..17a0a1c259 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-tags.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-tags.yaml.json index bc8312efba..5512e1297a 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-tags.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait-tags.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait.yaml.json index 4bf2339e1e..56c0f3b532 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/operation-traits/expected/trait.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n -\n url: $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "tags:\n -\n name: $1", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "bindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindings", "filterText": "bindings:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-channel-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-channel-ref.yaml.json index a43e6c54d0..52fda5e053 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-channel-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-channel-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "components/parameters/other", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/parameters/other", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11components/parameters/other", "filterText": "\"#/components/parameters/other\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-name-after-declaration.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-name-after-declaration.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-name-after-declaration.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-name-after-declaration.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-ref.yaml.json index 069e52fa60..fda8edd941 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "components/parameters/other", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/parameters/other", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11components/parameters/other", "filterText": "\"#/components/parameters/other\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-runtime.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-runtime.yaml.json index 091ca1e0dd..250400360c 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-runtime.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-runtime.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$message.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "$message.", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$message.", "filterText": "$message.", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-schema.yaml.json index dd079c5bc2..a75de8e560 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter.yaml.json index 19dde6ca76..f4a250fcd9 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/parameters/expected/parameter.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11location", "filterText": "location: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/array-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/array-schema.yaml.json index c18294c832..310ca75a4a 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/array-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/array-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "additionalItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalItems", "filterText": "additionalItems:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "contains", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "contains", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contains", "filterText": "contains:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/boolean-format.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/boolean-format.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/boolean-format.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/boolean-format.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/external-docs-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/external-docs-schema.yaml.json index fceaac40e7..90d3a5ef83 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/external-docs-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/external-docs-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/integer-format.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/integer-format.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/integer-format.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/integer-format.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/items-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/items-schema.yaml.json index 0d955f2b29..0237917dea 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/items-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/items-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/nested-format-applies.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/nested-format-applies.yaml.json index b1bdb92bdb..eec2774468 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/nested-format-applies.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/nested-format-applies.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/number-format.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/number-format.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/number-format.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/number-format.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/number-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/number-schema.yaml.json index 86c786e1d4..c351a230fb 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/number-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/number-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/object-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/object-schema.yaml.json index 80189d0a31..dc6095d867 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/object-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/object-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "additionalProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalProperties", "filterText": "additionalProperties: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "dependencies", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "dependencies", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dependencies", "filterText": "dependencies:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "discriminator: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "maxProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxProperties", "filterText": "maxProperties: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "minProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minProperties", "filterText": "minProperties: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "patternProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "patternProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patternProperties", "filterText": "patternProperties: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/properties-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/properties-schema.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/properties-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/properties-schema.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/property-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/property-schema.yaml.json index a3495eb64d..f0ac5e058e 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/property-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/property-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/required.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/required.yaml.json index 4d7b972ad1..e1de6cde5c 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/required.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/required.yaml.json @@ -1,11 +1,17 @@ [ { "label": "a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11a", "filterText": "a", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "b", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "b", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11b", "filterText": "b", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-name-after-declaration.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-name-after-declaration.yaml.json index b1c37a1eac..c48fecfcf8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-name-after-declaration.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-name-after-declaration.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "$1:\n type: $2\n description: $3", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-name.yaml.json index d9454d99c8..7e849ea1ad 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-name.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "$1:\n type: $2\n description: $3", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-ref.yaml.json index b0ad634507..0c32a27a06 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/schemas/schema1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/schemas/schema1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/schemas/schema1", "filterText": "\"#/components/schemas/schema1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array-schema.yaml", "filterText": "array-schema.yaml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean-format.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean-format.yaml", "filterText": "boolean-format.yaml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "external-docs-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11external-docs-schema.yaml", "filterText": "external-docs-schema.yaml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "integer-format.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer-format.yaml", "filterText": "integer-format.yaml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "items-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items-schema.yaml", "filterText": "items-schema.yaml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "nested-format-applies.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nested-format-applies.yaml", "filterText": "nested-format-applies.yaml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "number-format.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number-format.yaml", "filterText": "number-format.yaml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number-schema.yaml", "filterText": "number-schema.yaml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object-schema.yaml", "filterText": "object-schema.yaml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "properties-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties-schema.yaml", "filterText": "properties-schema.yaml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "property-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11property-schema.yaml", "filterText": "property-schema.yaml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "required.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required.yaml", "filterText": "required.yaml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "schema-name-after-declaration.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-name-after-declaration.yaml", "filterText": "schema-name-after-declaration.yaml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "schema-name.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-name.yaml", "filterText": "schema-name.yaml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema.yaml", "filterText": "schema.yaml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "string-format.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string-format.yaml", "filterText": "string-format.yaml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "string-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string-schema.yaml", "filterText": "string-schema.yaml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "types-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types-schema.yaml", "filterText": "types-schema.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema.yaml.json index faa13bf827..7679ac6f7c 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/string-format.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/string-format.yaml.json index b995c8c3ca..be25fc079c 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/string-format.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/string-format.yaml.json @@ -1,11 +1,17 @@ [ { "label": "binary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "binary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11binary", "filterText": "binary", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "byte", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "byte", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11byte", "filterText": "byte", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "date", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date", "filterText": "date", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-time", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-time", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-time", "filterText": "date-time", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11password", "filterText": "password", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/string-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/string-schema.yaml.json index 0b86c8dec5..87cff8df6a 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/string-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/string-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/types-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/types-schema.yaml.json index 016ee9db63..b2530cc354 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/types-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/schemas/expected/types-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "array", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10null", "filterText": "\"null\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "object", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/api-key/expected/security-scheme-api-key.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/api-key/expected/security-scheme-api-key.yaml.json index 873215806d..7ef3236a8f 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/api-key/expected/security-scheme-api-key.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/api-key/expected/security-scheme-api-key.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/api-key/expected/security-scheme-in.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/api-key/expected/security-scheme-in.yaml.json index b155ad39c2..f15a38f067 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/api-key/expected/security-scheme-in.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/api-key/expected/security-scheme-in.yaml.json @@ -1,11 +1,17 @@ [ { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10password", "filterText": "password", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "user", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "user", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10user", "filterText": "user", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme-name.yaml.json index 5ff10d85ce..93f012e3a5 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme-name.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New securityScheme", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New securityScheme", "filterText": "$1:\n type: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme-type.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme-type.yaml.json index a6723a7df5..6a722bdf66 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme-type.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme-type.yaml.json @@ -1,11 +1,17 @@ [ { "label": "X509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "X509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10X509", "filterText": "X509", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "apiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "apiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10apiKey", "filterText": "apiKey", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "asymmetricEncryption", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "asymmetricEncryption", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10asymmetricEncryption", "filterText": "asymmetricEncryption", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10http", "filterText": "http", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "httpApiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "httpApiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10httpApiKey", "filterText": "httpApiKey", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10oauth2", "filterText": "oauth2", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "openIdConnect", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "openIdConnect", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10openIdConnect", "filterText": "openIdConnect", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "symmetricEncryption", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "symmetricEncryption", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10symmetricEncryption", "filterText": "symmetricEncryption", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "userPassword", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "userPassword", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10userPassword", "filterText": "userPassword", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme.yaml.json index d4f0a2ecdf..1d933f6919 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/security-scheme.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/server-security-requirement-scopes.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/server-security-requirement-scopes.yaml.json index ff19a22b6c..afad6352fc 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/server-security-requirement-scopes.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/server-security-requirement-scopes.yaml.json @@ -1,11 +1,17 @@ [ { "label": "scope2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "scope2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scope2", "filterText": "scope2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/server-security-requirement.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/server-security-requirement.yaml.json index 6087c7ca5c..8af2c6002c 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/server-security-requirement.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/expected/server-security-requirement.yaml.json @@ -1,11 +1,17 @@ [ { "label": "mySecurity", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mySecurity", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mySecurity", "filterText": "\n- mySecurity", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http-api-key/expected/security-scheme-http-api-key.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http-api-key/expected/security-scheme-http-api-key.yaml.json index d63f0f973c..10c8fed6b6 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http-api-key/expected/security-scheme-http-api-key.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http-api-key/expected/security-scheme-http-api-key.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http-api-key/expected/security-scheme-in.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http-api-key/expected/security-scheme-in.yaml.json index e7df255335..84da358dc6 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http-api-key/expected/security-scheme-in.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http-api-key/expected/security-scheme-in.yaml.json @@ -1,11 +1,17 @@ [ { "label": "cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10cookie", "filterText": "cookie", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "header", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "header", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10header", "filterText": "header", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "query", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "query", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10query", "filterText": "query", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http/expected/security-scheme-http.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http/expected/security-scheme-http.yaml.json index 2b35b437fa..a4e7e405f2 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http/expected/security-scheme-http.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/http/expected/security-scheme-http.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bearerFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bearerFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bearerFormat", "filterText": "bearerFormat: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "scheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "scheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10scheme", "filterText": "scheme: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-authorizationCode.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-authorizationCode.yaml.json index caef6f96f8..564f0ccc4a 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-authorizationCode.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-authorizationCode.yaml.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "authorizationUrl: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "flow", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "flow", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10flow", "filterText": "flow: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "scopes:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "tokenUrl: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-clientCredentials.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-clientCredentials.yaml.json index caef6f96f8..564f0ccc4a 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-clientCredentials.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-clientCredentials.yaml.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "authorizationUrl: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "flow", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "flow", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10flow", "filterText": "flow: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "scopes:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "tokenUrl: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-flows.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-flows.yaml.json index d6b2a3291c..e73d8b5d08 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-flows.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-flows.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New flows", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "flows", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New flows", "filterText": "flows:\n $1:\n authorizationUrl: $2\n tokenUrl: $3", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "flows", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "flows", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10flows", "filterText": "flows:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-implicit.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-implicit.yaml.json index caef6f96f8..564f0ccc4a 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-implicit.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-implicit.yaml.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "authorizationUrl: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "flow", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "flow", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10flow", "filterText": "flow: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "scopes:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "tokenUrl: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-oauth2.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-oauth2.yaml.json index d6b2a3291c..e73d8b5d08 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-oauth2.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-oauth2.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New flows", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "flows", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New flows", "filterText": "flows:\n $1:\n authorizationUrl: $2\n tokenUrl: $3", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "flows", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "flows", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10flows", "filterText": "flows:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-password.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-password.yaml.json index caef6f96f8..564f0ccc4a 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-password.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/oauth2/expected/security-scheme-password.yaml.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "authorizationUrl: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "flow", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "flow", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10flow", "filterText": "flow: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "scopes:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "tokenUrl: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/open-id-connect/expected/security-scheme-open-id-connect.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/open-id-connect/expected/security-scheme-open-id-connect.yaml.json index 453bf2af65..1160388113 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/open-id-connect/expected/security-scheme-open-id-connect.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/security-schemes/open-id-connect/expected/security-scheme-open-id-connect.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "openIdConnectUrl", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "openIdConnectUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10openIdConnectUrl", "filterText": "openIdConnectUrl: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/amqp-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/amqp-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/amqp-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/amqp-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/amqp1-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/amqp1-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/amqp1-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/amqp1-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/http-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/http-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/http-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/http-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/jms-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/jms-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/jms-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/jms-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/kafka-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/kafka-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/kafka-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/kafka-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt-binding-last-will.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt-binding-last-will.yaml.json index d209933594..30ea3a8b98 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt-binding-last-will.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt-binding-last-will.yaml.json @@ -1,11 +1,17 @@ [ { "label": "qos", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "qos", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11qos", "filterText": "qos: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "retain", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "retain", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11retain", "filterText": "retain: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "topic", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "topic", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11topic", "filterText": "topic: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt-binding.yaml.json index 9ec5250c95..5c709e8bc6 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindingVersion", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindingVersion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindingVersion", "filterText": "bindingVersion: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "cleanSession", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "cleanSession", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11cleanSession", "filterText": "cleanSession: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "clientId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "clientId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11clientId", "filterText": "clientId: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "keepAlive", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "keepAlive", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11keepAlive", "filterText": "keepAlive: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "lastWill", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "lastWill", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11lastWill", "filterText": "lastWill:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt5-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt5-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt5-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/mqtt5-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/nats-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/nats-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/nats-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/nats-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/redis-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/redis-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/redis-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/redis-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/server-bindings-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/server-bindings-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/server-bindings-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/server-bindings-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/server-bindings.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/server-bindings.yaml.json index f91ec782d5..93c9f995ae 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/server-bindings.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/server-bindings.yaml.json @@ -1,11 +1,17 @@ [ { "label": "amqp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp", "filterText": "amqp:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "amqp1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp1", "filterText": "amqp1:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "http:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "jms", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jms", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jms", "filterText": "jms:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "kafka", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "kafka", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11kafka", "filterText": "kafka:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "mqtt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt", "filterText": "mqtt:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mqtt5", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt5", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt5", "filterText": "mqtt5:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "nats", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nats", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nats", "filterText": "nats:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "redis", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "redis", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11redis", "filterText": "redis:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "sns", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sns", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sns", "filterText": "sns:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "sqs", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sqs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sqs", "filterText": "sqs:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "stomp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "stomp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11stomp", "filterText": "stomp:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "ws:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/sns-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/sns-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/sns-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/sns-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/sqs-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/sqs-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/sqs-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/sqs-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/stomp-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/stomp-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/stomp-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/stomp-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/ws-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/ws-binding.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/ws-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/components/server-bindings/expected/ws-binding.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info-contact.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info-contact.yaml.json index 8fb8030a1b..93285f1f75 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info-contact.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info-contact.yaml.json @@ -1,11 +1,17 @@ [ { "label": "email", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "email", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11email", "filterText": "email: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info-license.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info-license.yaml.json index 0aa68ab145..e91ba39056 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info-license.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info-license.yaml.json @@ -1,11 +1,17 @@ [ { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info.yaml.json index 6f4d92e205..289afc7fed 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/info/expected/info.yaml.json @@ -1,11 +1,17 @@ [ { "label": "contact", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "contact", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contact", "filterText": "contact:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "license", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "license", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11license", "filterText": "license:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "termsOfService", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "termsOfService", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11termsOfService", "filterText": "termsOfService: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10version", "filterText": "version: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/bindings/expected/protocols.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/bindings/expected/protocols.yaml.json index 326e50ec1d..97ffe48129 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/bindings/expected/protocols.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/bindings/expected/protocols.yaml.json @@ -1,11 +1,17 @@ [ { "label": "amqp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp", "filterText": "amqp:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "amqp1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp1", "filterText": "amqp1:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "http:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "jms", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jms", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jms", "filterText": "jms:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "kafka", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "kafka", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11kafka", "filterText": "kafka:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "mqtt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt", "filterText": "mqtt:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mqtt5", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt5", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt5", "filterText": "mqtt5:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "nats", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nats", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nats", "filterText": "nats:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "redis", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "redis", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11redis", "filterText": "redis:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "sns", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sns", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sns", "filterText": "sns:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "sqs", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sqs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sqs", "filterText": "sqs:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "stomp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "stomp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11stomp", "filterText": "stomp:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "ws:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/examples.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/examples.yaml.json index 00ae4585a5..2ca2893b00 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/examples.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/examples.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/headers.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/headers.yaml.json index 83d330429e..20a058ce1c 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/headers.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/headers.yaml.json @@ -1,11 +1,17 @@ [ { "label": "header1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "header1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11header1", "filterText": "header1: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/in-header.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/in-header.yaml.json index 0b2202f93f..4155acf3de 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/in-header.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/in-header.yaml.json @@ -1,11 +1,17 @@ [ { "label": "header1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "header1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11header1", "filterText": "header1: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/inner-prop.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/inner-prop.yaml.json index 1c31e4d23c..d42c380dd9 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/inner-prop.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/inner-prop.yaml.json @@ -1,11 +1,17 @@ [ { "label": "innerProp", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "innerProp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11innerProp", "filterText": "innerProp: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/payload.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/payload.yaml.json index ab8195a659..23832e7aac 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/payload.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/examples/expected/payload.yaml.json @@ -1,11 +1,17 @@ [ { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -29,4 +35,4 @@ "commitCharacters": null, "command": null } -] +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/content-type.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/content-type.yaml.json index 92c4f85527..6d3b3258a0 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/content-type.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/content-type.yaml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "application/vnd.github+json", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "application/vnd.github.v3+json", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "application/vnd.github.v3.full+json", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "application/vnd.github.v3.html+json", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "application/vnd.github.v3.patch", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "application/vnd.github.v3.raw+json", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "application/vnd.github.v3.text+json", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "appxlication/vnd.github.v3.diff", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "text/plain; charset=utf-8", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/correlation.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/correlation.yaml.json index 2b4a102f42..550be86098 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/correlation.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/correlation.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11location", "filterText": "location: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/external-doc.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/external-doc.yaml.json index a860ec999a..32593c8bc4 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/external-doc.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/external-doc.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/headers.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/headers.yaml.json index 9103b06023..d312fd0db6 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/headers.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/headers.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "additionalProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalProperties", "filterText": "additionalProperties: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "dependencies", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "dependencies", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dependencies", "filterText": "dependencies:\n - ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "discriminator: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "maxProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxProperties", "filterText": "maxProperties: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "minProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minProperties", "filterText": "minProperties: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "patternProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "patternProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patternProperties", "filterText": "patternProperties: ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/message.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/message.yaml.json index c84bff4928..5cbb4ed0b6 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/message.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/message.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New headers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New headers", "filterText": "headers:\n description: $1\n type: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "tags:\n -\n name: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "bindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindings", "filterText": "bindings:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "contentType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "contentType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contentType", "filterText": "contentType: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "correlationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "correlationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11correlationId", "filterText": "correlationId:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "payload", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "payload", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11payload", "filterText": "payload:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "schemaFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemaFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemaFormat", "filterText": "schemaFormat: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/one-of.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/one-of.yaml.json index 31c6cd24c9..a9e3b897a7 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/one-of.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/one-of.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/schema-format.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/schema-format.yaml.json index f60aacfe48..3f4f6d13e6 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/schema-format.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/schema-format.yaml.json @@ -1,11 +1,17 @@ [ { "label": "application/raml+yaml;version=1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/raml+yaml;version=1.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/raml+yaml;version=1.0", "filterText": "application/raml+yaml;version=1.0", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/schema+json;version=draft-07", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/schema+json;version=draft-07", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/schema+json;version=draft-07", "filterText": "application/schema+json;version=draft-07", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/schema+yaml;version=draft-07", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/schema+yaml;version=draft-07", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/schema+yaml;version=draft-07", "filterText": "application/schema+yaml;version=draft-07", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.aai.asyncapi+json;version=2.0.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.aai.asyncapi+json;version=2.0.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.aai.asyncapi+json;version=2.0.0", "filterText": "application/vnd.aai.asyncapi+json;version=2.0.0", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.aai.asyncapi+yaml;version=2.0.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.aai.asyncapi+yaml;version=2.0.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.aai.asyncapi+yaml;version=2.0.0", "filterText": "application/vnd.aai.asyncapi+yaml;version=2.0.0", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.aai.asyncapi;version=2.0.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.aai.asyncapi;version=2.0.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.aai.asyncapi;version=2.0.0", "filterText": "application/vnd.aai.asyncapi;version=2.0.0", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.oai.openapi+json;version=3.0.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.oai.openapi+json;version=3.0.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.oai.openapi+json;version=3.0.0", "filterText": "application/vnd.oai.openapi+json;version=3.0.0", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.oai.openapi+yaml;version=3.0.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.oai.openapi+yaml;version=3.0.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.oai.openapi+yaml;version=3.0.0", "filterText": "application/vnd.oai.openapi+yaml;version=3.0.0", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "application/vnd.oai.openapi;version=3.0.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.oai.openapi;version=3.0.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.oai.openapi;version=3.0.0", "filterText": "application/vnd.oai.openapi;version=3.0.0", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/tags.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/tags.yaml.json index aa3915d2e8..806108bb67 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/tags.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/expected/tags.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-array.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-array.yaml.json index 265863a88e..c2e9e37244 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-array.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-array.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "additionalItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalItems", "filterText": "additionalItems:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "contains", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "contains", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contains", "filterText": "contains:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-integer.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-integer.yaml.json index 64966653dd..bd68a668d3 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-integer.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-integer.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-number.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-number.yaml.json index 64966653dd..bd68a668d3 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-number.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-number.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-object.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-object.yaml.json index b19d59bf80..ee242d193d 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-object.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-object.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "additionalProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalProperties", "filterText": "additionalProperties: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "dependencies", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "dependencies", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dependencies", "filterText": "dependencies:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "discriminator: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "maxProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxProperties", "filterText": "maxProperties: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "minProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minProperties", "filterText": "minProperties: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "patternProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "patternProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patternProperties", "filterText": "patternProperties: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-string.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-string.yaml.json index e597b0634e..70c0e81537 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-string.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/asyncapi-format/expected/asyncapi-2.0-string.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-default.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-default.yaml.json index d3db4214b7..5577f43843 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-default.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-default.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-json.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-json.yaml.json index a3495eb64d..f0ac5e058e 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-json.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-json.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-type.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-type.yaml.json index 28e4f1721e..bd61c0c462 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-type.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-type.yaml.json @@ -1,11 +1,17 @@ [ { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "array", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10null", "filterText": "\"null\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "object", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-yaml.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-yaml.yaml.json index a3495eb64d..f0ac5e058e 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-yaml.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0-yaml.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0.yaml.json index a3495eb64d..f0ac5e058e 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/asyncapi-2.0.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/example.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/example.yaml.json index 542c0a45e0..a6b73eb65e 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/example.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/example.yaml.json @@ -1,11 +1,17 @@ [ { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/jsonschema-7-json.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/jsonschema-7-json.yaml.json index 6bbfd4eb61..d0ef1cdd53 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/jsonschema-7-json.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/jsonschema-7-json.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "const: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/jsonschema-7-yaml.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/jsonschema-7-yaml.yaml.json index 6bbfd4eb61..d0ef1cdd53 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/jsonschema-7-yaml.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/jsonschema-7-yaml.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "const: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0-json.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0-json.yaml.json index 272ef3863e..5eb99325a3 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0-json.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0-json.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0-yaml.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0-yaml.yaml.json index 272ef3863e..5eb99325a3 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0-yaml.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0-yaml.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0.yaml.json index 272ef3863e..5eb99325a3 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/openapi-3.0.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/raml-1.0-yaml.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/raml-1.0-yaml.yaml.json index 4e1d32882d..b3bc7a4f59 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/raml-1.0-yaml.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/raml-1.0-yaml.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/raml-1.0.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/raml-1.0.yaml.json index 4e1d32882d..b3bc7a4f59 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/raml-1.0.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/expected/raml-1.0.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-any.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-any.yaml.json index 35fa444ace..61ebdb367e 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-any.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-any.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-array.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-array.yaml.json index 38f0d62af9..0de839ced8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-array.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-array.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-boolean.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-boolean.yaml.json index a1f7ba6540..270ed54526 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-boolean.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-boolean.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-date.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-date.yaml.json index a1f7ba6540..270ed54526 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-date.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-date.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-datetime-only.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-datetime-only.yaml.json index a1f7ba6540..270ed54526 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-datetime-only.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-datetime-only.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-datetime.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-datetime.yaml.json index a1f7ba6540..270ed54526 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-datetime.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-datetime.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-file.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-file.yaml.json index 6bbfe3b381..7f104d22ee 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-file.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-file.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "fileTypes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "fileTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11fileTypes", "filterText": "fileTypes: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-include-path.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-include-path.yaml.json index c7ee5b396e..5c60096b0e 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-include-path.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-include-path.yaml.json @@ -1,11 +1,17 @@ [ { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "raml-1.0-yaml-any.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-any.yaml", "filterText": "raml-1.0-yaml-any.yaml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "raml-1.0-yaml-array.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-array.yaml", "filterText": "raml-1.0-yaml-array.yaml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "raml-1.0-yaml-boolean.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-boolean.yaml", "filterText": "raml-1.0-yaml-boolean.yaml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "raml-1.0-yaml-date.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-date.yaml", "filterText": "raml-1.0-yaml-date.yaml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "raml-1.0-yaml-datetime-only.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-datetime-only.yaml", "filterText": "raml-1.0-yaml-datetime-only.yaml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "raml-1.0-yaml-datetime.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-datetime.yaml", "filterText": "raml-1.0-yaml-datetime.yaml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "raml-1.0-yaml-file.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-file.yaml", "filterText": "raml-1.0-yaml-file.yaml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "raml-1.0-yaml-include-tag.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-include-tag.yaml", "filterText": "raml-1.0-yaml-include-tag.yaml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "raml-1.0-yaml-integer.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-integer.yaml", "filterText": "raml-1.0-yaml-integer.yaml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "raml-1.0-yaml-nil.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-nil.yaml", "filterText": "raml-1.0-yaml-nil.yaml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "raml-1.0-yaml-number.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-number.yaml", "filterText": "raml-1.0-yaml-number.yaml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "raml-1.0-yaml-object.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-object.yaml", "filterText": "raml-1.0-yaml-object.yaml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "raml-1.0-yaml-properties.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-properties.yaml", "filterText": "raml-1.0-yaml-properties.yaml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "raml-1.0-yaml-property-include-path.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-property-include-path.yaml", "filterText": "raml-1.0-yaml-property-include-path.yaml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "raml-1.0-yaml-string.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-string.yaml", "filterText": "raml-1.0-yaml-string.yaml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "raml-1.0-yaml-time.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-time.yaml", "filterText": "raml-1.0-yaml-time.yaml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "raml-1.0-yaml-types.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-types.yaml", "filterText": "raml-1.0-yaml-types.yaml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "raml-1.0-yaml-union.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-union.yaml", "filterText": "raml-1.0-yaml-union.yaml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "raml-1.0-yaml-with-declared.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-with-declared.yaml", "filterText": "raml-1.0-yaml-with-declared.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-include-tag.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-include-tag.yaml.json index 433f8ffe15..9e2e494981 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-include-tag.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-include-tag.yaml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-integer.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-integer.yaml.json index 3aef238b65..263ca013ba 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-integer.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-integer.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-nil.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-nil.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-nil.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-nil.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-number.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-number.yaml.json index 3aef238b65..263ca013ba 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-number.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-number.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-object.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-object.yaml.json index c87ab1cc42..929562aa5c 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-object.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-object.yaml.json @@ -1,11 +1,17 @@ [ { "label": "additionalProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalProperties", "filterText": "additionalProperties: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "discriminator: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "discriminatorValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "discriminatorValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminatorValue", "filterText": "discriminatorValue: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxProperties", "filterText": "maxProperties: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "minProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minProperties", "filterText": "minProperties: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-properties.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-properties.yaml.json index 246ecb7edc..67b1ee9b5f 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-properties.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-properties.yaml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-property-include-path.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-property-include-path.yaml.json index b30160a53e..ddeb6f23d2 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-property-include-path.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-property-include-path.yaml.json @@ -1,11 +1,17 @@ [ { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "raml-1.0-yaml-any.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-any.yaml", "filterText": "raml-1.0-yaml-any.yaml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "raml-1.0-yaml-array.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-array.yaml", "filterText": "raml-1.0-yaml-array.yaml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "raml-1.0-yaml-boolean.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-boolean.yaml", "filterText": "raml-1.0-yaml-boolean.yaml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "raml-1.0-yaml-date.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-date.yaml", "filterText": "raml-1.0-yaml-date.yaml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "raml-1.0-yaml-datetime-only.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-datetime-only.yaml", "filterText": "raml-1.0-yaml-datetime-only.yaml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "raml-1.0-yaml-datetime.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-datetime.yaml", "filterText": "raml-1.0-yaml-datetime.yaml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "raml-1.0-yaml-file.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-file.yaml", "filterText": "raml-1.0-yaml-file.yaml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "raml-1.0-yaml-include-path.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-include-path.yaml", "filterText": "raml-1.0-yaml-include-path.yaml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "raml-1.0-yaml-include-tag.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-include-tag.yaml", "filterText": "raml-1.0-yaml-include-tag.yaml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "raml-1.0-yaml-integer.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-integer.yaml", "filterText": "raml-1.0-yaml-integer.yaml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "raml-1.0-yaml-nil.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-nil.yaml", "filterText": "raml-1.0-yaml-nil.yaml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "raml-1.0-yaml-number.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-number.yaml", "filterText": "raml-1.0-yaml-number.yaml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "raml-1.0-yaml-object.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-object.yaml", "filterText": "raml-1.0-yaml-object.yaml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "raml-1.0-yaml-properties.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-properties.yaml", "filterText": "raml-1.0-yaml-properties.yaml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "raml-1.0-yaml-string.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-string.yaml", "filterText": "raml-1.0-yaml-string.yaml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "raml-1.0-yaml-time.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-time.yaml", "filterText": "raml-1.0-yaml-time.yaml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "raml-1.0-yaml-types.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-types.yaml", "filterText": "raml-1.0-yaml-types.yaml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "raml-1.0-yaml-union.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-union.yaml", "filterText": "raml-1.0-yaml-union.yaml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "raml-1.0-yaml-with-declared.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11raml-1.0-yaml-with-declared.yaml", "filterText": "raml-1.0-yaml-with-declared.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-string.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-string.yaml.json index a1f7ba6540..270ed54526 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-string.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-string.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-time.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-time.yaml.json index a1f7ba6540..270ed54526 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-time.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-time.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-types.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-types.yaml.json index ffd6e3edc4..479e51e51e 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-types.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-types.yaml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10date-only", "filterText": "date-only", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10datetime", "filterText": "datetime", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10datetime-only", "filterText": "datetime-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10file", "filterText": "file", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10nil", "filterText": "nil", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "object", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-union.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-union.yaml.json index 35fa444ace..61ebdb367e 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-union.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-union.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-with-declared.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-with-declared.yaml.json index 09eab1ec2f..7d15df4d10 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-with-declared.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/message/payloads/raml-type-format/expected/raml-1.0-yaml-with-declared.yaml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10date-only", "filterText": "date-only", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10datetime", "filterText": "datetime", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10datetime-only", "filterText": "datetime-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10file", "filterText": "file", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10nil", "filterText": "nil", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "object", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/bindings/expected/protocols.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/bindings/expected/protocols.yaml.json index 95ef5434aa..853233f00b 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/bindings/expected/protocols.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/bindings/expected/protocols.yaml.json @@ -1,11 +1,17 @@ [ { "label": "amqp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp", "filterText": "amqp:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "amqp1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp1", "filterText": "amqp1:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "http:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "jms", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jms", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jms", "filterText": "jms:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "kafka", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "kafka", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11kafka", "filterText": "kafka:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "mqtt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt", "filterText": "mqtt:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mqtt5", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt5", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt5", "filterText": "mqtt5:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "nats", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nats", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nats", "filterText": "nats:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "redis", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "redis", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11redis", "filterText": "redis:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "sns", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sns", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sns", "filterText": "sns:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "sqs", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sqs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sqs", "filterText": "sqs:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "stomp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "stomp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11stomp", "filterText": "stomp:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "ws:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/external-doc.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/external-doc.yaml.json index fceaac40e7..90d3a5ef83 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/external-doc.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/external-doc.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/publish.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/publish.yaml.json index ce6ac3e27a..850ba95e40 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/publish.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/publish.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindings", "filterText": "bindings:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/subscribe.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/subscribe.yaml.json index ce6ac3e27a..850ba95e40 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/subscribe.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/expected/subscribe.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindings", "filterText": "bindings:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "message", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "message", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11message", "filterText": "message:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/traits/expected/traits.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/traits/expected/traits.yaml.json index befe64c422..bf39a3230b 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/traits/expected/traits.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/operations/traits/expected/traits.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/operationTraits/b", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/operationTraits/b", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/operationTraits/b", "filterText": "\"#/components/operationTraits/b\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/between-entries-in-array/expected/between-entries.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/between-entries-in-array/expected/between-entries.yaml.json index 956669825b..19bedb6e78 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/between-entries-in-array/expected/between-entries.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/between-entries-in-array/expected/between-entries.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New headers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New headers", "filterText": "headers:\n description: $1\n type: $2", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "tags:\n -\n name: $1", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "bindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindings", "filterText": "bindings:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "contentType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "contentType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contentType", "filterText": "contentType: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "correlationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "correlationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11correlationId", "filterText": "correlationId:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "schemaFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemaFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemaFormat", "filterText": "schemaFormat: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/type-stack-overflow/expected/async-facets.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/type-stack-overflow/expected/async-facets.yaml.json index 4752df1f6d..27c833a39a 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/type-stack-overflow/expected/async-facets.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/type-stack-overflow/expected/async-facets.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "$comment: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "$id: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "else:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "if:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:\n - ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "then:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/type-stack-overflow/expected/async.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/type-stack-overflow/expected/async.yaml.json index 22b3f7acf6..046c99dde6 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/type-stack-overflow/expected/async.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/other/type-stack-overflow/expected/async.yaml.json @@ -1,11 +1,17 @@ [ { "label": "A", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A", "filterText": "A", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10null", "filterText": "\"null\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "object", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/external-doc.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/external-doc.yaml.json index 17580f5137..86d70b8143 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/external-doc.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/external-doc.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/key.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/key.yaml.json index 08a90a7eb0..1fb6cbbc24 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/key.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/key.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#%Dialect 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Dialect 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Dialect 1.0", "filterText": "#%Dialect 1.0", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "#%Library / Dialect 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Library / Dialect 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Library / Dialect 1.0", "filterText": "#%Library / Dialect 1.0", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "#%Library / Validation Profile 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Library / Validation Profile 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Library / Validation Profile 1.0", "filterText": "#%Library / Validation Profile 1.0", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "#%Library / Vocabulary 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Library / Vocabulary 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Library / Vocabulary 1.0", "filterText": "#%Library / Vocabulary 1.0", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "#%Patch / Dialect 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Patch / Dialect 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Patch / Dialect 1.0", "filterText": "#%Patch / Dialect 1.0", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "#%Patch / Validation Profile 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Patch / Validation Profile 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Patch / Validation Profile 1.0", "filterText": "#%Patch / Validation Profile 1.0", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "#%Patch / Vocabulary 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Patch / Vocabulary 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Patch / Vocabulary 1.0", "filterText": "#%Patch / Vocabulary 1.0", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "#%RegoValidation / Validation Profile 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %RegoValidation / Validation Profile 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RegoValidation / Validation Profile 1.0", "filterText": "#%RegoValidation / Validation Profile 1.0", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "#%Validation Profile 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Validation Profile 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Validation Profile 1.0", "filterText": "#%Validation Profile 1.0", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "#%Vocabulary 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a %Vocabulary 1.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%Vocabulary 1.0", "filterText": "#%Vocabulary 1.0", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "asyncapi: \"2.0.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a asyncapi 2.0.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11asyncapi: \"2.0.0\"", "filterText": "asyncapi: \"2.0.0\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "openapi: \"3.0.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a openapi 3.0.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11openapi: \"3.0.0\"", "filterText": "openapi: \"3.0.0\"", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "swagger: \"2.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a openapi 2.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11swagger: \"2.0\"", "filterText": "swagger: \"2.0\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/root.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/root.yaml.json index bd8fc312b9..96c3f01828 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/root.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/root.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New info", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New info", "filterText": "info:\n title: $1\n version: $2", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "servers:\n $1:\n url: $2\n protocol: $3\n protocolVersion: $4", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "tags:\n -\n name: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "channels", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "channels", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11channels", "filterText": "channels:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "components", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "components", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11components", "filterText": "components:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "id: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10info", "filterText": "info:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "servers:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/tag.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/tag.yaml.json index d295c66bf8..31f6bd8972 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/tag.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/tag.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/version.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/version.yaml.json index 87ff38e7e1..d6058a6e56 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/version.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/root/expected/version.yaml.json @@ -1,11 +1,17 @@ [ { "label": "asyncapi: \"2.0.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a asyncapi 2.0.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11asyncapi: \"2.0.0\"", "filterText": "asyncapi: \"2.0.0\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/bindings/expected/protocols.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/bindings/expected/protocols.yaml.json index a994af64ad..60615a88d8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/bindings/expected/protocols.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/bindings/expected/protocols.yaml.json @@ -1,11 +1,17 @@ [ { "label": "amqp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp", "filterText": "amqp:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "amqp1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "amqp1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11amqp1", "filterText": "amqp1:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "http:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "jms", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jms", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jms", "filterText": "jms:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "kafka", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "kafka", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11kafka", "filterText": "kafka:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "mqtt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt", "filterText": "mqtt:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mqtt5", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mqtt5", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mqtt5", "filterText": "mqtt5:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "nats", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nats", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nats", "filterText": "nats:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "redis", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "redis", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11redis", "filterText": "redis:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "sns", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sns", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sns", "filterText": "sns:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "sqs", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sqs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sqs", "filterText": "sqs:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "stomp", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "stomp", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11stomp", "filterText": "stomp:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "ws:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/expected/server-name.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/expected/server-name.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/expected/server-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/expected/server-name.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/expected/server.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/expected/server.yaml.json index ba2fcb1283..98b2aadef7 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/expected/server.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/expected/server.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bindings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bindings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bindings", "filterText": "bindings:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "protocol", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "protocol", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10protocol", "filterText": "protocol: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "protocolVersion", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "protocolVersion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10protocolVersion", "filterText": "protocolVersion: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "variables", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "variables", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11variables", "filterText": "variables:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/security/expected/security-array.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/security/expected/security-array.yaml.json index 6dcbceb86f..b429d6046c 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/security/expected/security-array.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/security/expected/security-array.yaml.json @@ -1,11 +1,17 @@ [ { "label": "oauth1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth1", "filterText": "oauth1:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/security/expected/security.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/security/expected/security.yaml.json index 5ae3658bc5..aca9961e66 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/security/expected/security.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/security/expected/security.yaml.json @@ -1,11 +1,17 @@ [ { "label": "oauth1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth1", "filterText": "oauth1:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/variables/expected/variable.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/variables/expected/variable.yaml.json index 81b026b7f9..cfda47a9f9 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/variables/expected/variable.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/variables/expected/variable.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/variables/expected/variables.yaml.json b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/variables/expected/variables.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/variables/expected/variables.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/AsyncAPI2/by-directory/server/variables/expected/variables.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/json/expected/empty.json.json b/als-suggestions/shared/src/test/resources/test/json/expected/empty.json.json index 1b96de4840..e46639e98b 100644 --- a/als-suggestions/shared/src/test/resources/test/json/expected/empty.json.json +++ b/als-suggestions/shared/src/test/resources/test/json/expected/empty.json.json @@ -1,11 +1,17 @@ [ { "label": "\"$schema\": \"http://json-schema.org/draft-04/schema#\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a JSON Schema http://json-schema.org/draft-04/schema# file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"$schema\": \"http://json-schema.org/draft-04/schema#\"", "filterText": "{\n \"$schema\": \"http://json-schema.org/draft-04/schema#\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "\"$schema\": \"http://json-schema.org/draft-07/schema#\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a JSON Schema http://json-schema.org/draft-07/schema# file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"$schema\": \"http://json-schema.org/draft-07/schema#\"", "filterText": "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "\"$schema\": \"http://json-schema.org/draft/2019-09/schema#\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a JSON Schema http://json-schema.org/draft/2019-09/schema# file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"$schema\": \"http://json-schema.org/draft/2019-09/schema#\"", "filterText": "{\n \"$schema\": \"http://json-schema.org/draft/2019-09/schema#\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "\"asyncapi\": \"2.0.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a asyncapi 2.0.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"asyncapi\": \"2.0.0\"", "filterText": "{\n \"asyncapi\": \"2.0.0\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "\"openapi\": \"3.0.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a openapi 3.0.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"openapi\": \"3.0.0\"", "filterText": "{\n \"openapi\": \"3.0.0\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "\"swagger\": \"2.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a openapi 2.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"swagger\": \"2.0\"", "filterText": "{\n \"swagger\": \"2.0\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/json/expected/json-begin-mapping.json.json b/als-suggestions/shared/src/test/resources/test/json/expected/json-begin-mapping.json.json index cb539b9b67..6694b4f8d0 100644 --- a/als-suggestions/shared/src/test/resources/test/json/expected/json-begin-mapping.json.json +++ b/als-suggestions/shared/src/test/resources/test/json/expected/json-begin-mapping.json.json @@ -1,11 +1,17 @@ [ { "label": "New headers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New headers", "filterText": "\"headers\": {\n \"$1\": {\n \"description\": \"$2\",\n \"type\": \"$3\"\n }\n},", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n},", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "\"headers\": {\n \"$1\"\n},", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/json/expected/json-end-mapping.json.json b/als-suggestions/shared/src/test/resources/test/json/expected/json-end-mapping.json.json index d9acee7d65..29f56905fc 100644 --- a/als-suggestions/shared/src/test/resources/test/json/expected/json-end-mapping.json.json +++ b/als-suggestions/shared/src/test/resources/test/json/expected/json-end-mapping.json.json @@ -1,11 +1,17 @@ [ { "label": "New headers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New headers", "filterText": "\"headers\": {\n \"$1\": {\n \"description\": \"$2\",\n \"type\": \"$3\"\n }\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "\"headers\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/json/expected/json-outside-mapping.json.json b/als-suggestions/shared/src/test/resources/test/json/expected/json-outside-mapping.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/json/expected/json-outside-mapping.json.json +++ b/als-suggestions/shared/src/test/resources/test/json/expected/json-outside-mapping.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/json/expected/open-bracket-no-indentation.json.json b/als-suggestions/shared/src/test/resources/test/json/expected/open-bracket-no-indentation.json.json index 6a8a08b114..78d298233c 100644 --- a/als-suggestions/shared/src/test/resources/test/json/expected/open-bracket-no-indentation.json.json +++ b/als-suggestions/shared/src/test/resources/test/json/expected/open-bracket-no-indentation.json.json @@ -1,11 +1,17 @@ [ { "label": "\"$schema\": \"http://json-schema.org/draft-04/schema#\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a JSON Schema http://json-schema.org/draft-04/schema# file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"$schema\": \"http://json-schema.org/draft-04/schema#\"", "filterText": " \"$schema\": \"http://json-schema.org/draft-04/schema#\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "\"$schema\": \"http://json-schema.org/draft-07/schema#\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a JSON Schema http://json-schema.org/draft-07/schema# file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"$schema\": \"http://json-schema.org/draft-07/schema#\"", "filterText": " \"$schema\": \"http://json-schema.org/draft-07/schema#\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "\"$schema\": \"http://json-schema.org/draft/2019-09/schema#\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a JSON Schema http://json-schema.org/draft/2019-09/schema# file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"$schema\": \"http://json-schema.org/draft/2019-09/schema#\"", "filterText": " \"$schema\": \"http://json-schema.org/draft/2019-09/schema#\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "\"asyncapi\": \"2.0.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a asyncapi 2.0.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"asyncapi\": \"2.0.0\"", "filterText": " \"asyncapi\": \"2.0.0\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "\"openapi\": \"3.0.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a openapi 3.0.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"openapi\": \"3.0.0\"", "filterText": " \"openapi\": \"3.0.0\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "\"swagger\": \"2.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a openapi 2.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"swagger\": \"2.0\"", "filterText": " \"swagger\": \"2.0\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/json/expected/open-bracket.json.json b/als-suggestions/shared/src/test/resources/test/json/expected/open-bracket.json.json index daf2adead3..7230a49811 100644 --- a/als-suggestions/shared/src/test/resources/test/json/expected/open-bracket.json.json +++ b/als-suggestions/shared/src/test/resources/test/json/expected/open-bracket.json.json @@ -1,11 +1,17 @@ [ { "label": "\"$schema\": \"http://json-schema.org/draft-04/schema#\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a JSON Schema http://json-schema.org/draft-04/schema# file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"$schema\": \"http://json-schema.org/draft-04/schema#\"", "filterText": "\"$schema\": \"http://json-schema.org/draft-04/schema#\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "\"$schema\": \"http://json-schema.org/draft-07/schema#\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a JSON Schema http://json-schema.org/draft-07/schema# file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"$schema\": \"http://json-schema.org/draft-07/schema#\"", "filterText": "\"$schema\": \"http://json-schema.org/draft-07/schema#\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "\"$schema\": \"http://json-schema.org/draft/2019-09/schema#\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a JSON Schema http://json-schema.org/draft/2019-09/schema# file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"$schema\": \"http://json-schema.org/draft/2019-09/schema#\"", "filterText": "\"$schema\": \"http://json-schema.org/draft/2019-09/schema#\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "\"asyncapi\": \"2.0.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a asyncapi 2.0.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"asyncapi\": \"2.0.0\"", "filterText": "\"asyncapi\": \"2.0.0\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "\"openapi\": \"3.0.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a openapi 3.0.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"openapi\": \"3.0.0\"", "filterText": "\"openapi\": \"3.0.0\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "\"swagger\": \"2.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a openapi 2.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"swagger\": \"2.0\"", "filterText": "\"swagger\": \"2.0\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/if/expected/const.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/if/expected/const.json.json index 460324491d..58ea959f41 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/if/expected/const.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/if/expected/const.json.json @@ -1,11 +1,17 @@ [ { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "\"const\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/if/expected/inside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/if/expected/inside.json.json index 4e18c5c3d4..8a1b7fd9f7 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/if/expected/inside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/if/expected/inside.json.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "\"\\$comment\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "\"\\$id\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "\"const\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "\"else\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "\"if\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "\"then\": {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/properties/expected/inside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/properties/expected/inside.json.json index 2e2577aeb5..bc5b4b8ccf 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/properties/expected/inside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/properties/expected/inside.json.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "\"\\$comment\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "\"\\$id\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "\"const\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "\"else\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "\"if\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "\"then\": {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/properties/expected/outside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/properties/expected/outside.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/properties/expected/outside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/definitions/properties/expected/outside.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/expected/inside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/expected/inside.json.json index d5c124ff4a..3eb39af952 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/expected/inside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/expected/inside.json.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "\"\\$comment\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "\"\\$id\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "\"const\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "\"else\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "\"if\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "\"then\": {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/expected/outside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/expected/outside.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/expected/outside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/expected/outside.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/type/expected/required.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/type/expected/required.json.json index 45dcbff862..e928ab3a81 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/type/expected/required.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/encodes/properties/type/expected/required.json.json @@ -1,11 +1,17 @@ [ { "label": "prop1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "prop1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prop1", "filterText": "\"prop1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "prop2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "prop2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prop2", "filterText": "\"prop2\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/root/expected/empty.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/root/expected/empty.json.json index aa542d70f8..2c7264a377 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/root/expected/empty.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft2019/by-directory/root/expected/empty.json.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "\"\\$comment\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "\"\\$id\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "\"const\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "\"else\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "\"if\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "\"then\": {\n \"$1\"\n}", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/definitions/properties/expected/inside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/definitions/properties/expected/inside.json.json index d0cde36ca2..b2f130e804 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/definitions/properties/expected/inside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/definitions/properties/expected/inside.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "\"id\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/definitions/properties/expected/outside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/definitions/properties/expected/outside.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/definitions/properties/expected/outside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/definitions/properties/expected/outside.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/expected/inside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/expected/inside.json.json index a335641251..a9cb867d91 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/expected/inside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/expected/inside.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "\"id\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/expected/outside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/expected/outside.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/expected/outside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/expected/outside.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/ref.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/ref.json.json index b251c3b157..a068bfef5f 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/definitions/t", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/definitions/t", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/definitions/t", "filterText": "\"#/definitions/t\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "required.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required.json", "filterText": "\"required.json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "type.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11type.json", "filterText": "\"type.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/required.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/required.json.json index 45dcbff862..e928ab3a81 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/required.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/required.json.json @@ -1,11 +1,17 @@ [ { "label": "prop1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "prop1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prop1", "filterText": "\"prop1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "prop2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "prop2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prop2", "filterText": "\"prop2\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/type.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/type.json.json index 9432965101..ab1bde239a 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/type.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/encodes/properties/type/expected/type.json.json @@ -1,11 +1,17 @@ [ { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "\"array\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "\"boolean\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "\"integer\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10null", "filterText": "\"null\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "\"number\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "\"object\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "\"string\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/if/expected/const.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/if/expected/const.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/if/expected/const.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/if/expected/const.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/if/expected/inside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/if/expected/inside.json.json index 4acf3b8b02..48dfde93e9 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/if/expected/inside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/if/expected/inside.json.json @@ -1,11 +1,17 @@ [ { "label": "additionalProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalProperties", "filterText": "\"additionalProperties\": $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "dependencies", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "dependencies", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dependencies", "filterText": "\"dependencies\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "\"id\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxProperties", "filterText": "\"maxProperties\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "minProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minProperties", "filterText": "\"minProperties\": \"$1\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "patternProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "patternProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patternProperties", "filterText": "\"patternProperties\": \"$1\"", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/array.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/array.json.json index fe71fd1b99..652dbc2f54 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/array.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/array.json.json @@ -1,11 +1,17 @@ [ { "label": "additionalItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalItems", "filterText": "\"additionalItems\": {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "contains", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "contains", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contains", "filterText": "\"contains\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "\"id\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/boolean.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/boolean.json.json index 58ed6b619d..c22c815913 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/boolean.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/boolean.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "\"id\": \"$1\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/comment-in-middle.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/comment-in-middle.json.json index 6671c7ecaa..16980ae81d 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/comment-in-middle.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/comment-in-middle.json.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "\"\\$comment\": \"$1\",", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "\"\\$id\": \"$1\",", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/empty.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/empty.json.json index b1040d0338..d94790924c 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/empty.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/empty.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "\"id\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/integer.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/integer.json.json index 58ed6b619d..c22c815913 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/integer.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/integer.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "\"id\": \"$1\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/null.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/null.json.json index 02ef0a8d50..867a911d34 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/null.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/null.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "\"id\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/number.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/number.json.json index fe71fd1b99..652dbc2f54 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/number.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/number.json.json @@ -1,11 +1,17 @@ [ { "label": "additionalItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalItems", "filterText": "\"additionalItems\": {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "contains", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "contains", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contains", "filterText": "\"contains\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "\"id\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/object.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/object.json.json index 58ed6b619d..c22c815913 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/object.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/object.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "\"id\": \"$1\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/string.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/string.json.json index 58ed6b619d..c22c815913 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/string.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft4/by-directory/root/expected/string.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11id", "filterText": "\"id\": \"$1\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/if/expected/const.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/if/expected/const.json.json index 460324491d..58ea959f41 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/if/expected/const.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/if/expected/const.json.json @@ -1,11 +1,17 @@ [ { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "\"const\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/if/expected/inside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/if/expected/inside.json.json index 4e18c5c3d4..8a1b7fd9f7 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/if/expected/inside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/if/expected/inside.json.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "\"\\$comment\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "\"\\$id\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "\"const\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "\"else\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "\"if\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "\"then\": {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/properties/expected/inside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/properties/expected/inside.json.json index 2e2577aeb5..bc5b4b8ccf 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/properties/expected/inside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/properties/expected/inside.json.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "\"\\$comment\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "\"\\$id\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "\"const\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "\"else\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "\"if\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "\"then\": {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/properties/expected/outside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/properties/expected/outside.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/properties/expected/outside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/definitions/properties/expected/outside.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/expected/inside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/expected/inside.json.json index d5c124ff4a..3eb39af952 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/expected/inside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/expected/inside.json.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "\"\\$comment\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "\"\\$id\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "\"const\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "\"else\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "\"if\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "\"then\": {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/expected/outside.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/expected/outside.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/expected/outside.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/expected/outside.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/type/expected/required.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/type/expected/required.json.json index 45dcbff862..e928ab3a81 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/type/expected/required.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/encodes/properties/type/expected/required.json.json @@ -1,11 +1,17 @@ [ { "label": "prop1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "prop1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prop1", "filterText": "\"prop1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "prop2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "prop2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prop2", "filterText": "\"prop2\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/root/expected/comment-in-middle.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/root/expected/comment-in-middle.json.json index 96c2b938ba..2dfac9d159 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/root/expected/comment-in-middle.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/root/expected/comment-in-middle.json.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "\"\\$comment\": \"$1\",", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/root/expected/empty.json.json b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/root/expected/empty.json.json index aa542d70f8..2c7264a377 100644 --- a/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/root/expected/empty.json.json +++ b/als-suggestions/shared/src/test/resources/test/jsonschema/draft7/by-directory/root/expected/empty.json.json @@ -1,11 +1,17 @@ [ { "label": "$comment", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$comment", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$comment", "filterText": "\"\\$comment\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$id", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "$id", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$id", "filterText": "\"\\$id\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "const", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "const", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11const", "filterText": "\"const\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "else", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "else", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11else", "filterText": "\"else\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "if", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "if", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11if", "filterText": "\"if\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": [\n \"$1\"\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": [\n \"$1\"\n]", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "then", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "then", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11then", "filterText": "\"then\": {\n \"$1\"\n}", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/array-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/array-schema.json.json index 2025455715..8a01ce43f8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/array-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/array-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "\"collectionFormat\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/boolean-format.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/boolean-format.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/boolean-format.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/boolean-format.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition-name-after-declaration.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition-name-after-declaration.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition-name-after-declaration.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition-name-after-declaration.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition-name.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition-name.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition-name.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition-name.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition.json.json index cd881c16cc..d7d21058d7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definition.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definitios.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definitios.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definitios.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/definitios.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/externalDocs-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/externalDocs-schema.json.json index 09fd7e2f91..f261f73ecd 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/externalDocs-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/externalDocs-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "\"url\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/integer-format.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/integer-format.json.json index 816efdc918..88818aa642 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/integer-format.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/integer-format.json.json @@ -1,11 +1,17 @@ [ { "label": "int32", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int32", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int32", "filterText": "\"int32\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "int64", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int64", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int64", "filterText": "\"int64\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/items-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/items-schema.json.json index 01a6c77b1f..eb196cde79 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/items-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/items-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/number-format.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/number-format.json.json index 274e4b235b..224e026ce7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/number-format.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/number-format.json.json @@ -1,11 +1,17 @@ [ { "label": "double", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "double", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11double", "filterText": "\"double\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "float", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "float", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11float", "filterText": "\"float\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "int32", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int32", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int32", "filterText": "\"int32\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "int64", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int64", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int64", "filterText": "\"int64\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/number-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/number-schema.json.json index d71139e175..0b35f232e3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/number-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/number-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/object-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/object-schema.json.json index 463b7ecc6a..42c2027f48 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/object-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/object-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "additionalProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalProperties", "filterText": "\"additionalProperties\": $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "\"discriminator\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxProperties", "filterText": "\"maxProperties\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minProperties", "filterText": "\"minProperties\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/properties-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/properties-schema.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/properties-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/properties-schema.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/property-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/property-schema.json.json index 6dfe21b55c..9698bf05ac 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/property-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/property-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/readOnly-properties.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/readOnly-properties.json.json index c88d62e9f3..606e6588cf 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/readOnly-properties.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/readOnly-properties.json.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/required-properties-name-existing.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/required-properties-name-existing.json.json index dde8709732..0b2a1f2bd8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/required-properties-name-existing.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/required-properties-name-existing.json.json @@ -1,11 +1,17 @@ [ { "label": "anotherPro", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anotherPro", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anotherPro", "filterText": "\"anotherPro\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "\"name\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/required-properties-name.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/required-properties-name.json.json index abf4ebdbac..3f23c1c9ee 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/required-properties-name.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/required-properties-name.json.json @@ -1,11 +1,17 @@ [ { "label": "anotherPro", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anotherPro", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anotherPro", "filterText": "\"anotherPro\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "\"name\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "tag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tag", "filterText": "\"tag\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-path-nav-two.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-path-nav-two.json.json index fb2825013f..51237a5101 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-path-nav-two.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-path-nav-two.json.json @@ -1,11 +1,17 @@ [ { "label": "Adef", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jsonschema.json#/definitions/Adef", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Adef", "filterText": "\"jsonschema.json#/definitions/Adef\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-path-nav.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-path-nav.json.json index 3377d07c6e..8b3cc8a398 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-path-nav.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-path-nav.json.json @@ -1,11 +1,17 @@ [ { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jsonschema.json#/definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"jsonschema.json#/definitions\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-comment.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-comment.json.json index 92a58b3d8f..6314f84569 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-comment.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-comment.json.json @@ -1,11 +1,17 @@ [ { "label": "#/definitions/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/definitions/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/definitions/a", "filterText": "\"#/definitions/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-separator-two.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-separator-two.json.json index 4dc666a6ac..2f451af919 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-separator-two.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-separator-two.json.json @@ -1,11 +1,17 @@ [ { "label": "a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/definitions/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11a", "filterText": "\"#/definitions/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-separator.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-separator.json.json index c8ce97ff19..dd6e9dc551 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-separator.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref-separator.json.json @@ -1,11 +1,17 @@ [ { "label": "definitions/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/definitions/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions/a", "filterText": "\"#/definitions/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref.json.json index 80b15ab3bf..a9079ad9bf 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/schema-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/definitions/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/definitions/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/definitions/a", "filterText": "\"#/definitions/a\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array-schema.json", "filterText": "\"array-schema.json\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean-format.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean-format.json", "filterText": "\"boolean-format.json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "definition-name-after-declaration.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definition-name-after-declaration.json", "filterText": "\"definition-name-after-declaration.json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "definition-name.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definition-name.json", "filterText": "\"definition-name.json\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "definition.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definition.json", "filterText": "\"definition.json\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "definitios.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitios.json", "filterText": "\"definitios.json\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs-schema.json", "filterText": "\"externalDocs-schema.json\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "integer-format.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer-format.json", "filterText": "\"integer-format.json\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "items-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items-schema.json", "filterText": "\"items-schema.json\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "jsonschema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jsonschema.json", "filterText": "\"jsonschema.json\"", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "number-format.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number-format.json", "filterText": "\"number-format.json\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "number-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number-schema.json", "filterText": "\"number-schema.json\"", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "object-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object-schema.json", "filterText": "\"object-schema.json\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "properties-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties-schema.json", "filterText": "\"properties-schema.json\"", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "property-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11property-schema.json", "filterText": "\"property-schema.json\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "readOnly-properties.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly-properties.json", "filterText": "\"readOnly-properties.json\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "required-properties-name-existing.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required-properties-name-existing.json", "filterText": "\"required-properties-name-existing.json\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required-properties-name.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required-properties-name.json", "filterText": "\"required-properties-name.json\"", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "schema-path-nav-two.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav-two.json", "filterText": "\"schema-path-nav-two.json\"", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "schema-path-nav-withoutbar.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav-withoutbar.json", "filterText": "\"schema-path-nav-withoutbar.json\"", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "schema-path-nav.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav.json", "filterText": "\"schema-path-nav.json\"", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "schema-ref-comment.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-comment.json", "filterText": "\"schema-ref-comment.json\"", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "schema-ref-separator-two.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-separator-two.json", "filterText": "\"schema-ref-separator-two.json\"", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "schema-ref-separator.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-separator.json", "filterText": "\"schema-ref-separator.json\"", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "string-format.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string-format.json", "filterText": "\"string-format.json\"", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "string-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string-schema.json", "filterText": "\"string-schema.json\"", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "types-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types-schema.json", "filterText": "\"types-schema.json\"", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "xmlObject-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xmlObject-schema.json", "filterText": "\"xmlObject-schema.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/string-format.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/string-format.json.json index 1a66e8810d..5b3604da1c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/string-format.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/string-format.json.json @@ -1,11 +1,17 @@ [ { "label": "binary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "binary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11binary", "filterText": "\"binary\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "byte", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "byte", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11byte", "filterText": "\"byte\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "date", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date", "filterText": "\"date\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-time", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-time", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-time", "filterText": "\"date-time\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11password", "filterText": "\"password\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/string-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/string-schema.json.json index 9df9ec8e23..21b9c39481 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/string-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/string-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "\"maxLength\": $1", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "\"minLength\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "\"pattern\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/types-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/types-schema.json.json index 0c627e725a..aef4f6e5f9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/types-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/types-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "\"array\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "\"boolean\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10file", "filterText": "\"file\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "\"integer\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "\"number\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "\"object\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "\"string\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/xmlObject-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/xmlObject-schema.json.json index c3d49c5f4c..5eb6f41e78 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/xmlObject-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/definitions/expected/xmlObject-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "attribute", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "attribute", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11attribute", "filterText": "\"attribute\": $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "namespace", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "namespace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11namespace", "filterText": "\"namespace\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "prefix", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "prefix", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prefix", "filterText": "\"prefix\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "wrapped", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "wrapped", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wrapped", "filterText": "\"wrapped\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-example.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-example.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-example.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-obj-example-arr.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-obj-example-arr.json.json index d5fb509518..807514f4a3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-obj-example-arr.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-obj-example-arr.json.json @@ -1,11 +1,17 @@ [ { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11p1", "filterText": "\"p1\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-obj-example.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-obj-example.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-obj-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/array-obj-example.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/empty-example.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/empty-example.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/empty-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/empty-example.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/object-example.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/object-example.json.json index 2bac57ba2c..e0b0460bd9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/object-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/object-example.json.json @@ -1,11 +1,17 @@ [ { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11p1", "filterText": "\"p1\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/string-example.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/string-example.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/string-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/examples/expected/string-example.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-contact.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-contact.json.json index aa98ca02e5..6677327993 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-contact.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-contact.json.json @@ -1,11 +1,17 @@ [ { "label": "email", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "email", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11email", "filterText": "\"email\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11url", "filterText": "\"url\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-version-with-body.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-version-with-body.json.json index 1a5cadfa02..13ae240e75 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-version-with-body.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-version-with-body.json.json @@ -1,11 +1,17 @@ [ { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10version", "filterText": "\"version\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-with-parameters-node.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-with-parameters-node.json.json index 1df021a5d0..5c72419cff 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-with-parameters-node.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info-with-parameters-node.json.json @@ -1,11 +1,17 @@ [ { "label": "New info", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New info", "filterText": "\"info\": {\n \"title\": \"$1\",\n \"version\": \"$2\"\n},", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10info", "filterText": "\"info\": {\n \"$1\"\n},", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info.json.json index d42693b696..4cd7e12c6e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/info/expected/info.json.json @@ -1,11 +1,17 @@ [ { "label": "contact", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "contact", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contact", "filterText": "\"contact\": {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "license", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "license", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11license", "filterText": "\"license\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "termsOfService", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "termsOfService", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11termsOfService", "filterText": "\"termsOfService\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10version", "filterText": "\"version\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/delete.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/delete.json.json index 608f73813a..c5f4dae97a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/delete.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/delete.json.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "\"externalDocs\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "\"parameters\": [\n {\n \"in\": \"$1\",\n \"required\": \"$2\",\n \"description\": \"$3\",\n \"name\": \"$4\",\n \"type\": \"$5\"\n }\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "\"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "\"security\": [\n {\n \"type\": \"$1\"\n }\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "\"consumes\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "\"operationId\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "\"produces\": [\n \"$1\"\n]", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "\"responses\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "\"schemes\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": [\n \"$1\"\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "\"tags\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/get.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/get.json.json index 608f73813a..c5f4dae97a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/get.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/get.json.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "\"externalDocs\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "\"parameters\": [\n {\n \"in\": \"$1\",\n \"required\": \"$2\",\n \"description\": \"$3\",\n \"name\": \"$4\",\n \"type\": \"$5\"\n }\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "\"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "\"security\": [\n {\n \"type\": \"$1\"\n }\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "\"consumes\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "\"operationId\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "\"produces\": [\n \"$1\"\n]", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "\"responses\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "\"schemes\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": [\n \"$1\"\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "\"tags\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/head.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/head.json.json index 608f73813a..c5f4dae97a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/head.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/head.json.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "\"externalDocs\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "\"parameters\": [\n {\n \"in\": \"$1\",\n \"required\": \"$2\",\n \"description\": \"$3\",\n \"name\": \"$4\",\n \"type\": \"$5\"\n }\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "\"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "\"security\": [\n {\n \"type\": \"$1\"\n }\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "\"consumes\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "\"operationId\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "\"produces\": [\n \"$1\"\n]", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "\"responses\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "\"schemes\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": [\n \"$1\"\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "\"tags\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/options.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/options.json.json index 608f73813a..c5f4dae97a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/options.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/options.json.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "\"externalDocs\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "\"parameters\": [\n {\n \"in\": \"$1\",\n \"required\": \"$2\",\n \"description\": \"$3\",\n \"name\": \"$4\",\n \"type\": \"$5\"\n }\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "\"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "\"security\": [\n {\n \"type\": \"$1\"\n }\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "\"consumes\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "\"operationId\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "\"produces\": [\n \"$1\"\n]", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "\"responses\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "\"schemes\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": [\n \"$1\"\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "\"tags\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/patch.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/patch.json.json index 608f73813a..c5f4dae97a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/patch.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/patch.json.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "\"externalDocs\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "\"parameters\": [\n {\n \"in\": \"$1\",\n \"required\": \"$2\",\n \"description\": \"$3\",\n \"name\": \"$4\",\n \"type\": \"$5\"\n }\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "\"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "\"security\": [\n {\n \"type\": \"$1\"\n }\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "\"consumes\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "\"operationId\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "\"produces\": [\n \"$1\"\n]", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "\"responses\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "\"schemes\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": [\n \"$1\"\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "\"tags\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/post.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/post.json.json index 608f73813a..c5f4dae97a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/post.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/post.json.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "\"externalDocs\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "\"parameters\": [\n {\n \"in\": \"$1\",\n \"required\": \"$2\",\n \"description\": \"$3\",\n \"name\": \"$4\",\n \"type\": \"$5\"\n }\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "\"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "\"security\": [\n {\n \"type\": \"$1\"\n }\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "\"consumes\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "\"operationId\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "\"produces\": [\n \"$1\"\n]", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "\"responses\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "\"schemes\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": [\n \"$1\"\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "\"tags\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/put.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/put.json.json index 608f73813a..c5f4dae97a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/put.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/bymethod/expected/put.json.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "\"externalDocs\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "\"parameters\": [\n {\n \"in\": \"$1\",\n \"required\": \"$2\",\n \"description\": \"$3\",\n \"name\": \"$4\",\n \"type\": \"$5\"\n }\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "\"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "\"security\": [\n {\n \"type\": \"$1\"\n }\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "\"consumes\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "\"operationId\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "\"produces\": [\n \"$1\"\n]", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "\"responses\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "\"schemes\": [\n \"$1\"\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": [\n \"$1\"\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "\"tags\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/consumes-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/consumes-array.json.json index e947969dcf..39dfe1a1a7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/consumes-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/consumes-array.json.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\"application/json\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "\"application/vnd.github+json\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "\"application/vnd.github.v3+json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "\"application/vnd.github.v3.full+json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "\"application/vnd.github.v3.html+json\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "\"application/vnd.github.v3.patch\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "\"application/vnd.github.v3.raw+json\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "\"application/vnd.github.v3.text+json\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "\"appxlication/vnd.github.v3.diff\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "\"text/plain; charset=utf-8\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/consumes.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/consumes.json.json index 279c23b167..247867046f 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/consumes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/consumes.json.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "[\n \"application/json\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "[\n \"application/vnd.github+json\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "[\n \"application/vnd.github.v3+json\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "[\n \"application/vnd.github.v3.full+json\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "[\n \"application/vnd.github.v3.html+json\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "[\n \"application/vnd.github.v3.patch\"\n]", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "[\n \"application/vnd.github.v3.raw+json\"\n]", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "[\n \"application/vnd.github.v3.text+json\"\n]", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "[\n \"appxlication/vnd.github.v3.diff\"\n]", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "[\n \"text/plain; charset=utf-8\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/deprecated.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/deprecated.json.json index b30a677934..0edbde0af8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/deprecated.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/deprecated.json.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/external-docs.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/external-docs.json.json index 900cb49db4..e2bf380751 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/external-docs.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/external-docs.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "\"url\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter-array.json.json index 6d26e9c50a..6b76ec8fc3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter-array.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "\"collectionFormat\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "\"in\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "\"maxLength\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "\"minLength\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "\"pattern\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter-ref.json.json index a45b5b474b..85d6646168 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/parameters/named", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/parameters/named", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/parameters/named", "filterText": "\"#/parameters/named\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "bymethod/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bymethod/", "filterText": "\"bymethod/\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "consumes-array.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes-array.json", "filterText": "\"consumes-array.json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "consumes.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes.json", "filterText": "\"consumes.json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated.json", "filterText": "\"deprecated.json\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "external-docs.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11external-docs.json", "filterText": "\"external-docs.json\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "parameter-array.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-array.json", "filterText": "\"parameter-array.json\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "parameter.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter.json", "filterText": "\"parameter.json\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "produces-array.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces-array.json", "filterText": "\"produces-array.json\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces.json", "filterText": "\"produces.json\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "reponses-quoted.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11reponses-quoted.json", "filterText": "\"reponses-quoted.json\"", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "reponses.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11reponses.json", "filterText": "\"reponses.json\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "schemes-array.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes-array.json", "filterText": "\"schemes-array.json\"", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "schemes.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes.json", "filterText": "\"schemes.json\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "security-array-named.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-array-named.json", "filterText": "\"security-array-named.json\"", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "security-array.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-array.json", "filterText": "\"security-array.json\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "security-name-not-array.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-name-not-array.json", "filterText": "\"security-name-not-array.json\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "security.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security.json", "filterText": "\"security.json\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "tags-array.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags-array.json", "filterText": "\"tags-array.json\"", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "tags.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags.json", "filterText": "\"tags.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/parameter.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/produces-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/produces-array.json.json index e947969dcf..39dfe1a1a7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/produces-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/produces-array.json.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\"application/json\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "\"application/vnd.github+json\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "\"application/vnd.github.v3+json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "\"application/vnd.github.v3.full+json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "\"application/vnd.github.v3.html+json\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "\"application/vnd.github.v3.patch\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "\"application/vnd.github.v3.raw+json\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "\"application/vnd.github.v3.text+json\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "\"appxlication/vnd.github.v3.diff\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "\"text/plain; charset=utf-8\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/produces.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/produces.json.json index 279c23b167..247867046f 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/produces.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/produces.json.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "[\n \"application/json\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "[\n \"application/vnd.github+json\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "[\n \"application/vnd.github.v3+json\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "[\n \"application/vnd.github.v3.full+json\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "[\n \"application/vnd.github.v3.html+json\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "[\n \"application/vnd.github.v3.patch\"\n]", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "[\n \"application/vnd.github.v3.raw+json\"\n]", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "[\n \"application/vnd.github.v3.text+json\"\n]", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "[\n \"appxlication/vnd.github.v3.diff\"\n]", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "[\n \"text/plain; charset=utf-8\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/reponses-quoted.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/reponses-quoted.json.json index 3a3bfe2f58..3f46c7afe8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/reponses-quoted.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/reponses-quoted.json.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "100: {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "101: {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "102: {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "200: {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "201: {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "202: {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "203: {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "204: {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "205: {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "206: {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "207: {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "208: {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "226: {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "300: {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "301: {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "302: {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "303: {\n \"$1\"\n}", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "304: {\n \"$1\"\n}", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "305: {\n \"$1\"\n}", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "306: {\n \"$1\"\n}", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "307: {\n \"$1\"\n}", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "308: {\n \"$1\"\n}", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "400: {\n \"$1\"\n}", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "401: {\n \"$1\"\n}", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "402: {\n \"$1\"\n}", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "403: {\n \"$1\"\n}", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "404: {\n \"$1\"\n}", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "405: {\n \"$1\"\n}", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "406: {\n \"$1\"\n}", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "407: {\n \"$1\"\n}", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "408: {\n \"$1\"\n}", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "409: {\n \"$1\"\n}", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "410: {\n \"$1\"\n}", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "411: {\n \"$1\"\n}", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "412: {\n \"$1\"\n}", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "413: {\n \"$1\"\n}", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "414: {\n \"$1\"\n}", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "415: {\n \"$1\"\n}", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "416: {\n \"$1\"\n}", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "417: {\n \"$1\"\n}", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "418: {\n \"$1\"\n}", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "420: {\n \"$1\"\n}", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "422: {\n \"$1\"\n}", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "423: {\n \"$1\"\n}", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "424: {\n \"$1\"\n}", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "425: {\n \"$1\"\n}", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "426: {\n \"$1\"\n}", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "428: {\n \"$1\"\n}", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "429: {\n \"$1\"\n}", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "431: {\n \"$1\"\n}", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "444: {\n \"$1\"\n}", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "449: {\n \"$1\"\n}", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "450: {\n \"$1\"\n}", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "451: {\n \"$1\"\n}", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "499: {\n \"$1\"\n}", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "500: {\n \"$1\"\n}", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "501: {\n \"$1\"\n}", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "502: {\n \"$1\"\n}", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "503: {\n \"$1\"\n}", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "504: {\n \"$1\"\n}", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "505: {\n \"$1\"\n}", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "506: {\n \"$1\"\n}", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "507: {\n \"$1\"\n}", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "508: {\n \"$1\"\n}", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "509: {\n \"$1\"\n}", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "510: {\n \"$1\"\n}", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "511: {\n \"$1\"\n}", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "598: {\n \"$1\"\n}", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "599: {\n \"$1\"\n}", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/reponses.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/reponses.json.json index 3a3bfe2f58..3f46c7afe8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/reponses.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/reponses.json.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "100: {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "101: {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "102: {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "200: {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "201: {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "202: {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "203: {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "204: {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "205: {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "206: {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "207: {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "208: {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "226: {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "300: {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "301: {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "302: {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "303: {\n \"$1\"\n}", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "304: {\n \"$1\"\n}", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "305: {\n \"$1\"\n}", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "306: {\n \"$1\"\n}", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "307: {\n \"$1\"\n}", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "308: {\n \"$1\"\n}", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "400: {\n \"$1\"\n}", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "401: {\n \"$1\"\n}", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "402: {\n \"$1\"\n}", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "403: {\n \"$1\"\n}", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "404: {\n \"$1\"\n}", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "405: {\n \"$1\"\n}", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "406: {\n \"$1\"\n}", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "407: {\n \"$1\"\n}", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "408: {\n \"$1\"\n}", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "409: {\n \"$1\"\n}", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "410: {\n \"$1\"\n}", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "411: {\n \"$1\"\n}", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "412: {\n \"$1\"\n}", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "413: {\n \"$1\"\n}", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "414: {\n \"$1\"\n}", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "415: {\n \"$1\"\n}", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "416: {\n \"$1\"\n}", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "417: {\n \"$1\"\n}", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "418: {\n \"$1\"\n}", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "420: {\n \"$1\"\n}", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "422: {\n \"$1\"\n}", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "423: {\n \"$1\"\n}", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "424: {\n \"$1\"\n}", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "425: {\n \"$1\"\n}", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "426: {\n \"$1\"\n}", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "428: {\n \"$1\"\n}", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "429: {\n \"$1\"\n}", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "431: {\n \"$1\"\n}", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "444: {\n \"$1\"\n}", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "449: {\n \"$1\"\n}", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "450: {\n \"$1\"\n}", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "451: {\n \"$1\"\n}", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "499: {\n \"$1\"\n}", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "500: {\n \"$1\"\n}", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "501: {\n \"$1\"\n}", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "502: {\n \"$1\"\n}", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "503: {\n \"$1\"\n}", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "504: {\n \"$1\"\n}", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "505: {\n \"$1\"\n}", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "506: {\n \"$1\"\n}", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "507: {\n \"$1\"\n}", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "508: {\n \"$1\"\n}", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "509: {\n \"$1\"\n}", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "510: {\n \"$1\"\n}", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "511: {\n \"$1\"\n}", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "598: {\n \"$1\"\n}", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "599: {\n \"$1\"\n}", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/schemes-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/schemes-array.json.json index c22790b54d..958fe29e4c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/schemes-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/schemes-array.json.json @@ -1,11 +1,17 @@ [ { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "\"http\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "https", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "https", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11https", "filterText": "\"https\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "\"ws\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "wss", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "wss", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wss", "filterText": "\"wss\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/schemes.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/schemes.json.json index f3fee6b6ef..f14c2d1205 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/schemes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/schemes.json.json @@ -1,11 +1,17 @@ [ { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "[\n \"http\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "https", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "https", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11https", "filterText": "[\n \"https\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "[\n \"ws\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "wss", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "wss", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wss", "filterText": "[\n \"wss\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-array-named.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-array-named.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-array-named.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-array-named.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-array.json.json index cad582c5ea..5cef329eef 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-array.json.json @@ -1,11 +1,17 @@ [ { "label": "internalApiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "internalApiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11internalApiKey", "filterText": "\"internalApiKey\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-name-not-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-name-not-array.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-name-not-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security-name-not-array.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/security.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/tags-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/tags-array.json.json index 34b998219b..a3dffd575e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/tags-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/tags-array.json.json @@ -1,11 +1,17 @@ [ { "label": "myTag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "myTag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11myTag", "filterText": "\"myTag\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/tags.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/tags.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/tags.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/operations/expected/tags.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/bindings.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/bindings.json.json index 75d12895aa..934bad3010 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/bindings.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/bindings.json.json @@ -1,11 +1,17 @@ [ { "label": "body", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "body", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10body", "filterText": "\"body\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "formData", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "formData", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10formData", "filterText": "\"formData\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "header", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "header", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10header", "filterText": "\"header\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "path", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "path", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10path", "filterText": "\"path\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "query", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "query", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10query", "filterText": "\"query\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-array-with-follow-up-entry.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-array-with-follow-up-entry.json.json index bfc24a0533..249e7437fb 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-array-with-follow-up-entry.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-array-with-follow-up-entry.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inBody.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inBody.json.json index b7ef965e59..7419fa2bd7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inBody.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inBody.json.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "\"schema\": {\n \"description\": \"$1\",\n \"type\": \"$2\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inForm.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inForm.json.json index b336359e56..7915181158 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inForm.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inForm.json.json @@ -1,11 +1,17 @@ [ { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "\"allowEmptyValue\": $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "\"collectionFormat\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "\"maxLength\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "\"minLength\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "\"pattern\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inHeader-with-type.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inHeader-with-type.json.json index d18664675e..8a48c19019 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inHeader-with-type.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inHeader-with-type.json.json @@ -1,11 +1,17 @@ [ { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "\"collectionFormat\": \"$1\",", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\",", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\",", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": \"$1\",", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1,", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1,", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\",", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n},", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1,", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "\"maxLength\": $1,", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1,", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1,", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "\"minLength\": $1,", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1,", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1,", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\",", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "\"pattern\": \"$1\",", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1,", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1,", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inHeader.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inHeader.json.json index 3115b11a18..33b99b047e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inHeader.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inHeader.json.json @@ -1,11 +1,17 @@ [ { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "\"collectionFormat\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "\"maxLength\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "\"minLength\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "\"pattern\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inPath.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inPath.json.json index 3115b11a18..33b99b047e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inPath.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inPath.json.json @@ -1,11 +1,17 @@ [ { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "\"collectionFormat\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "\"maxLength\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "\"minLength\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "\"pattern\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inQuery-params.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inQuery-params.json.json index b1ab4cc628..35bd2d5119 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inQuery-params.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inQuery-params.json.json @@ -1,11 +1,17 @@ [ { "label": "param", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "param", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11param", "filterText": "\"param\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "userId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "userId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11userId", "filterText": "\"userId\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inQuery.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inQuery.json.json index ecebe5114d..efde7896cc 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inQuery.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-inQuery.json.json @@ -1,11 +1,17 @@ [ { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "\"allowEmptyValue\": $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "\"collectionFormat\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "\"maxLength\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "\"minLength\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "\"pattern\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-named.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-named.json.json index 8a8805b953..06e61057f6 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-named.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared-named.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "\"collectionFormat\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "\"in\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "\"maxLength\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "\"minLength\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "\"pattern\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/declared.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/operation-inBody.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/operation-inBody.json.json index bba82d1012..be26bb0724 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/operation-inBody.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/operation-inBody.json.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "\"schema\": {\n \"description\": \"$1\",\n \"type\": \"$2\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/path-inBody-with-follow-up-letter.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/path-inBody-with-follow-up-letter.json.json index beb17af299..aec988e2c5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/path-inBody-with-follow-up-letter.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/path-inBody-with-follow-up-letter.json.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "\"schema\": {\n \"description\": \"$1\",\n \"type\": \"$2\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/path-inBody.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/path-inBody.json.json index 0c8f338eed..eb9cdb6c5a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/path-inBody.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/path-inBody.json.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "\"schema\": {\n \"description\": \"$1\",\n \"type\": \"$2\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/two-invalids.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/two-invalids.json.json index cbf95e658b..969ed51abf 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/two-invalids.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/parameters/expected/two-invalids.json.json @@ -1,11 +1,17 @@ [ { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\",", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter-array.json.json index 8f30fe62a4..90f46e91f4 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter-array.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "\"collectionFormat\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "\"in\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "\"maxLength\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "\"minLength\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "\"pattern\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter-ref.json.json index 78af49825b..e2c59e092b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/parameters/named", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/parameters/named", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/parameters/named", "filterText": "\"#/parameters/named\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "parameter-array.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-array.json", "filterText": "\"parameter-array.json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "parameter.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter.json", "filterText": "\"parameter.json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "path-ref.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11path-ref.json", "filterText": "\"path-ref.json\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "path.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11path.json", "filterText": "\"path.json\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "paths.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11paths.json", "filterText": "\"paths.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/parameter.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/path-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/path-ref.json.json index b7698a00d9..d618efb57b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/path-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/path-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "parameter-array.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-array.json", "filterText": "\"parameter-array.json\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "parameter-ref.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-ref.json", "filterText": "\"parameter-ref.json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "parameter.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter.json", "filterText": "\"parameter.json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "path.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11path.json", "filterText": "\"path.json\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "paths.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11paths.json", "filterText": "\"paths.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/path.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/path.json.json index d3346fee85..2ace8b4be2 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/path.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/path.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "\"delete\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "\"delete\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New full get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full get", "filterText": "\"get\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New full head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full head", "filterText": "\"head\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "New full options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full options", "filterText": "\"options\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "New full patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full patch", "filterText": "\"patch\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "New full post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full post", "filterText": "\"post\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "New full put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full put", "filterText": "\"put\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "New get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New get", "filterText": "\"get\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "New head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New head", "filterText": "\"head\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "New options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New options", "filterText": "\"options\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "\"parameters\": [\n {\n \"in\": \"$1\",\n \"required\": \"$2\",\n \"description\": \"$3\",\n \"name\": \"$4\",\n \"type\": \"$5\"\n }\n]", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "New patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New patch", "filterText": "\"patch\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "New post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New post", "filterText": "\"post\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "New put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New put", "filterText": "\"put\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "\"delete\": {\n \"$1\"\n}", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "\"get\": {\n \"$1\"\n}", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "\"head\": {\n \"$1\"\n}", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "\"options\": {\n \"$1\"\n}", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "\"patch\": {\n \"$1\"\n}", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "\"post\": {\n \"$1\"\n}", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "\"put\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/paths.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/paths.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/paths.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/paths/expected/paths.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-declaration-named.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-declaration-named.json.json index c753bab41a..bd1660847a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-declaration-named.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-declaration-named.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "\"headers\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-declaration.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-declaration.json.json index 03fcf1f956..51b3e14bde 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-declaration.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-declaration.json.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "100: {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "101: {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "102: {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "200: {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "201: {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "202: {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "203: {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "204: {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "205: {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "206: {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "207: {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "208: {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "226: {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "300: {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "301: {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "302: {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "303: {\n \"$1\"\n}", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "304: {\n \"$1\"\n}", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "305: {\n \"$1\"\n}", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "306: {\n \"$1\"\n}", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "307: {\n \"$1\"\n}", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "308: {\n \"$1\"\n}", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "400: {\n \"$1\"\n}", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "401: {\n \"$1\"\n}", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "402: {\n \"$1\"\n}", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "403: {\n \"$1\"\n}", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "404: {\n \"$1\"\n}", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "405: {\n \"$1\"\n}", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "406: {\n \"$1\"\n}", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "407: {\n \"$1\"\n}", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "408: {\n \"$1\"\n}", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "409: {\n \"$1\"\n}", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "410: {\n \"$1\"\n}", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "411: {\n \"$1\"\n}", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "412: {\n \"$1\"\n}", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "413: {\n \"$1\"\n}", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "414: {\n \"$1\"\n}", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "415: {\n \"$1\"\n}", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "416: {\n \"$1\"\n}", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "417: {\n \"$1\"\n}", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "418: {\n \"$1\"\n}", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "420: {\n \"$1\"\n}", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "422: {\n \"$1\"\n}", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "423: {\n \"$1\"\n}", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "424: {\n \"$1\"\n}", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "425: {\n \"$1\"\n}", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "426: {\n \"$1\"\n}", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "428: {\n \"$1\"\n}", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "429: {\n \"$1\"\n}", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "431: {\n \"$1\"\n}", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "444: {\n \"$1\"\n}", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "449: {\n \"$1\"\n}", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "450: {\n \"$1\"\n}", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "451: {\n \"$1\"\n}", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "499: {\n \"$1\"\n}", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "500: {\n \"$1\"\n}", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "501: {\n \"$1\"\n}", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "502: {\n \"$1\"\n}", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "503: {\n \"$1\"\n}", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "504: {\n \"$1\"\n}", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "505: {\n \"$1\"\n}", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "506: {\n \"$1\"\n}", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "507: {\n \"$1\"\n}", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "508: {\n \"$1\"\n}", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "509: {\n \"$1\"\n}", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "510: {\n \"$1\"\n}", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "511: {\n \"$1\"\n}", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "598: {\n \"$1\"\n}", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "599: {\n \"$1\"\n}", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-example.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-example.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-example.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-examples.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-examples.json.json index fb5865315e..872576a76b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-examples.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-examples.json.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\"application/json\": {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "\"application/vnd.github+json\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "\"application/vnd.github.v3+json\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "\"application/vnd.github.v3.full+json\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "\"application/vnd.github.v3.html+json\": {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "\"application/vnd.github.v3.patch\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "\"application/vnd.github.v3.raw+json\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "\"application/vnd.github.v3.text+json\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "\"appxlication/vnd.github.v3.diff\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "\"text/plain; charset=utf-8\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-header.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-header.json.json index 85adcaadde..a5382f6cb5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-header.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-header.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "\"collectionFormat\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "\"in\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "\"maxLength\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "\"minLength\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "\"pattern\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-headers.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-headers.json.json index d9486eb284..b8b90e5ee2 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-headers.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-headers.json.json @@ -1,11 +1,17 @@ [ { "label": "A-IM", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A-IM", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A-IM", "filterText": "\"A-IM\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "ALPN", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ALPN", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ALPN", "filterText": "\"ALPN\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "Accept", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept", "filterText": "\"Accept\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "Accept-CH", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-CH", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-CH", "filterText": "\"Accept-CH\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "Accept-Charset", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Charset", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Charset", "filterText": "\"Accept-Charset\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "Accept-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Encoding", "filterText": "\"Accept-Encoding\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "Accept-Features", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Features", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Features", "filterText": "\"Accept-Features\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "Accept-Language", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Language", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Language", "filterText": "\"Accept-Language\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "Accept-Patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Patch", "filterText": "\"Accept-Patch\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "Accept-Post", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Post", "filterText": "\"Accept-Post\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "Accept-Ranges", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Ranges", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Ranges", "filterText": "\"Accept-Ranges\": \"$1\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "Access-Control-Allow-Credentials", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Credentials", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Credentials", "filterText": "\"Access-Control-Allow-Credentials\": \"$1\"", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "Access-Control-Allow-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Headers", "filterText": "\"Access-Control-Allow-Headers\": \"$1\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "Access-Control-Allow-Methods", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Methods", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Methods", "filterText": "\"Access-Control-Allow-Methods\": \"$1\"", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "Access-Control-Allow-Origin", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Origin", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Origin", "filterText": "\"Access-Control-Allow-Origin\": \"$1\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "Access-Control-Expose-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Expose-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Expose-Headers", "filterText": "\"Access-Control-Expose-Headers\": \"$1\"", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "Access-Control-Max-Age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Max-Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Max-Age", "filterText": "\"Access-Control-Max-Age\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "Access-Control-Request-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Request-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Request-Headers", "filterText": "\"Access-Control-Request-Headers\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "Access-Control-Request-Method", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Request-Method", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Request-Method", "filterText": "\"Access-Control-Request-Method\": \"$1\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "Age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Age", "filterText": "\"Age\": \"$1\"", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "Allow", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Allow", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Allow", "filterText": "\"Allow\": \"$1\"", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "Alt-Svc", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Alt-Svc", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Alt-Svc", "filterText": "\"Alt-Svc\": \"$1\"", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "Alternates", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Alternates", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Alternates", "filterText": "\"Alternates\": \"$1\"", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "Apply-To-Redirect-Ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Apply-To-Redirect-Ref", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Apply-To-Redirect-Ref", "filterText": "\"Apply-To-Redirect-Ref\": \"$1\"", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "Authorization", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Authorization", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Authorization", "filterText": "\"Authorization\": \"$1\"", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "CH", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "CH", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11CH", "filterText": "\"CH\": \"$1\"", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "Cache-Control", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cache-Control", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cache-Control", "filterText": "\"Cache-Control\": \"$1\"", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "Content-Base", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Base", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Base", "filterText": "\"Content-Base\": \"$1\"", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "Content-DPR", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-DPR", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-DPR", "filterText": "\"Content-DPR\": \"$1\"", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "Content-Disposition", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Disposition", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Disposition", "filterText": "\"Content-Disposition\": \"$1\"", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "Content-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Encoding", "filterText": "\"Content-Encoding\": \"$1\"", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "Content-Language", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Language", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Language", "filterText": "\"Content-Language\": \"$1\"", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "Content-Length", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Length", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Length", "filterText": "\"Content-Length\": \"$1\"", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "Content-Location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Location", "filterText": "\"Content-Location\": \"$1\"", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "Content-Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Range", "filterText": "\"Content-Range\": \"$1\"", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "Content-Security-Policy", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Security-Policy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Security-Policy", "filterText": "\"Content-Security-Policy\": \"$1\"", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "Content-Security-Policy-Report-Only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Security-Policy-Report-Only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Security-Policy-Report-Only", "filterText": "\"Content-Security-Policy-Report-Only\": \"$1\"", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "Content-Type", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Type", "filterText": "\"Content-Type\": \"$1\"", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "Cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cookie", "filterText": "\"Cookie\": \"$1\"", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "Cookie2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cookie2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cookie2", "filterText": "\"Cookie2\": \"$1\"", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "DASL", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DASL", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DASL", "filterText": "\"DASL\": \"$1\"", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "DAV", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DAV", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DAV", "filterText": "\"DAV\": \"$1\"", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "DNT", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DNT", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DNT", "filterText": "\"DNT\": \"$1\"", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "DPR", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DPR", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DPR", "filterText": "\"DPR\": \"$1\"", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "Date", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Date", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Date", "filterText": "\"Date\": \"$1\"", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "Delta-Base", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Delta-Base", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Delta-Base", "filterText": "\"Delta-Base\": \"$1\"", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "Depth", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Depth", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Depth", "filterText": "\"Depth\": \"$1\"", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "Destination", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Destination", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Destination", "filterText": "\"Destination\": \"$1\"", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "ETag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ETag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ETag", "filterText": "\"ETag\": \"$1\"", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "Encryption", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Encryption", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Encryption", "filterText": "\"Encryption\": \"$1\"", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "Encryption-Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Encryption-Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Encryption-Key", "filterText": "\"Encryption-Key\": \"$1\"", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "Expect", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Expect", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Expect", "filterText": "\"Expect\": \"$1\"", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "Expires", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Expires", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Expires", "filterText": "\"Expires\": \"$1\"", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "Forwarded", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Forwarded", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Forwarded", "filterText": "\"Forwarded\": \"$1\"", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "From", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "From", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11From", "filterText": "\"From\": \"$1\"", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "HTTP2-Settings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP2-Settings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP2-Settings", "filterText": "\"HTTP2-Settings\": \"$1\"", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "Host", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Host", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Host", "filterText": "\"Host\": \"$1\"", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "IM", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "IM", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11IM", "filterText": "\"IM\": \"$1\"", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "If", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If", "filterText": "\"If\": \"$1\"", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "If-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Match", "filterText": "\"If-Match\": \"$1\"", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "If-Modified-Since", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Modified-Since", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Modified-Since", "filterText": "\"If-Modified-Since\": \"$1\"", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "If-None-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-None-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-None-Match", "filterText": "\"If-None-Match\": \"$1\"", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "If-Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Range", "filterText": "\"If-Range\": \"$1\"", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "If-Schedule-Tag-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Schedule-Tag-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Schedule-Tag-Match", "filterText": "\"If-Schedule-Tag-Match\": \"$1\"", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "If-Unmodified-Since", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Unmodified-Since", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Unmodified-Since", "filterText": "\"If-Unmodified-Since\": \"$1\"", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Key", "filterText": "\"Key\": \"$1\"", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "Last-Event-ID", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Last-Event-ID", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Last-Event-ID", "filterText": "\"Last-Event-ID\": \"$1\"", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "Last-Modified", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Last-Modified", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Last-Modified", "filterText": "\"Last-Modified\": \"$1\"", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "Link", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Link", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Link", "filterText": "\"Link\": \"$1\"", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "Link-Template", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Link-Template", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Link-Template", "filterText": "\"Link-Template\": \"$1\"", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "Location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Location", "filterText": "\"Location\": \"$1\"", "insertText": null, @@ -2131,11 +2557,17 @@ }, { "label": "Lock-Token", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Lock-Token", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Lock-Token", "filterText": "\"Lock-Token\": \"$1\"", "insertText": null, @@ -2161,11 +2593,17 @@ }, { "label": "MD", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "MD", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11MD", "filterText": "\"MD\": \"$1\"", "insertText": null, @@ -2191,11 +2629,17 @@ }, { "label": "Max-Forwards", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Max-Forwards", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Max-Forwards", "filterText": "\"Max-Forwards\": \"$1\"", "insertText": null, @@ -2221,11 +2665,17 @@ }, { "label": "Negotiate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Negotiate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Negotiate", "filterText": "\"Negotiate\": \"$1\"", "insertText": null, @@ -2251,11 +2701,17 @@ }, { "label": "Nice", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Nice", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Nice", "filterText": "\"Nice\": \"$1\"", "insertText": null, @@ -2281,11 +2737,17 @@ }, { "label": "Origin", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Origin", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Origin", "filterText": "\"Origin\": \"$1\"", "insertText": null, @@ -2311,11 +2773,17 @@ }, { "label": "Overwrite", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Overwrite", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Overwrite", "filterText": "\"Overwrite\": \"$1\"", "insertText": null, @@ -2341,11 +2809,17 @@ }, { "label": "POE", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "POE", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11POE", "filterText": "\"POE\": \"$1\"", "insertText": null, @@ -2371,11 +2845,17 @@ }, { "label": "POE-Links", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "POE-Links", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11POE-Links", "filterText": "\"POE-Links\": \"$1\"", "insertText": null, @@ -2401,11 +2881,17 @@ }, { "label": "Pragma", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Pragma", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Pragma", "filterText": "\"Pragma\": \"$1\"", "insertText": null, @@ -2431,11 +2917,17 @@ }, { "label": "Prefer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Prefer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Prefer", "filterText": "\"Prefer\": \"$1\"", "insertText": null, @@ -2461,11 +2953,17 @@ }, { "label": "Preference-Applied", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Preference-Applied", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Preference-Applied", "filterText": "\"Preference-Applied\": \"$1\"", "insertText": null, @@ -2491,11 +2989,17 @@ }, { "label": "Proxy-Authenticate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Proxy-Authenticate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Proxy-Authenticate", "filterText": "\"Proxy-Authenticate\": \"$1\"", "insertText": null, @@ -2521,11 +3025,17 @@ }, { "label": "Proxy-Authorization", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Proxy-Authorization", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Proxy-Authorization", "filterText": "\"Proxy-Authorization\": \"$1\"", "insertText": null, @@ -2551,11 +3061,17 @@ }, { "label": "RW", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "RW", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11RW", "filterText": "\"RW\": \"$1\"", "insertText": null, @@ -2581,11 +3097,17 @@ }, { "label": "Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Range", "filterText": "\"Range\": \"$1\"", "insertText": null, @@ -2611,11 +3133,17 @@ }, { "label": "Redirect-Ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Redirect-Ref", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Redirect-Ref", "filterText": "\"Redirect-Ref\": \"$1\"", "insertText": null, @@ -2641,11 +3169,17 @@ }, { "label": "Referer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Referer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Referer", "filterText": "\"Referer\": \"$1\"", "insertText": null, @@ -2671,11 +3205,17 @@ }, { "label": "Retry-After", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Retry-After", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Retry-After", "filterText": "\"Retry-After\": \"$1\"", "insertText": null, @@ -2701,11 +3241,17 @@ }, { "label": "SLUG", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "SLUG", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11SLUG", "filterText": "\"SLUG\": \"$1\"", "insertText": null, @@ -2731,11 +3277,17 @@ }, { "label": "Schedule-Reply", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Schedule-Reply", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Schedule-Reply", "filterText": "\"Schedule-Reply\": \"$1\"", "insertText": null, @@ -2761,11 +3313,17 @@ }, { "label": "Schedule-Tag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Schedule-Tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Schedule-Tag", "filterText": "\"Schedule-Tag\": \"$1\"", "insertText": null, @@ -2791,11 +3349,17 @@ }, { "label": "Sec-WebSocket-Accept", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Accept", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Accept", "filterText": "\"Sec-WebSocket-Accept\": \"$1\"", "insertText": null, @@ -2821,11 +3385,17 @@ }, { "label": "Sec-WebSocket-Extensions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Extensions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Extensions", "filterText": "\"Sec-WebSocket-Extensions\": \"$1\"", "insertText": null, @@ -2851,11 +3421,17 @@ }, { "label": "Sec-WebSocket-Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Key", "filterText": "\"Sec-WebSocket-Key\": \"$1\"", "insertText": null, @@ -2881,11 +3457,17 @@ }, { "label": "Sec-WebSocket-Protocol", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Protocol", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Protocol", "filterText": "\"Sec-WebSocket-Protocol\": \"$1\"", "insertText": null, @@ -2911,11 +3493,17 @@ }, { "label": "Sec-WebSocket-Version", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Version", "filterText": "\"Sec-WebSocket-Version\": \"$1\"", "insertText": null, @@ -2941,11 +3529,17 @@ }, { "label": "Server", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Server", "filterText": "\"Server\": \"$1\"", "insertText": null, @@ -2971,11 +3565,17 @@ }, { "label": "Set-Cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Set-Cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Set-Cookie", "filterText": "\"Set-Cookie\": \"$1\"", "insertText": null, @@ -3001,11 +3601,17 @@ }, { "label": "Set-Cookie2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Set-Cookie2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Set-Cookie2", "filterText": "\"Set-Cookie2\": \"$1\"", "insertText": null, @@ -3031,11 +3637,17 @@ }, { "label": "Status-URI", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Status-URI", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Status-URI", "filterText": "\"Status-URI\": \"$1\"", "insertText": null, @@ -3061,11 +3673,17 @@ }, { "label": "Strict-Transport-Security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Strict-Transport-Security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Strict-Transport-Security", "filterText": "\"Strict-Transport-Security\": \"$1\"", "insertText": null, @@ -3091,11 +3709,17 @@ }, { "label": "Sunset", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sunset", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sunset", "filterText": "\"Sunset\": \"$1\"", "insertText": null, @@ -3121,11 +3745,17 @@ }, { "label": "Surrogate-Capability", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Surrogate-Capability", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Surrogate-Capability", "filterText": "\"Surrogate-Capability\": \"$1\"", "insertText": null, @@ -3151,11 +3781,17 @@ }, { "label": "Surrogate-Control", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Surrogate-Control", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Surrogate-Control", "filterText": "\"Surrogate-Control\": \"$1\"", "insertText": null, @@ -3181,11 +3817,17 @@ }, { "label": "TCN", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TCN", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TCN", "filterText": "\"TCN\": \"$1\"", "insertText": null, @@ -3211,11 +3853,17 @@ }, { "label": "TE", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TE", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TE", "filterText": "\"TE\": \"$1\"", "insertText": null, @@ -3241,11 +3889,17 @@ }, { "label": "Timeout", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Timeout", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Timeout", "filterText": "\"Timeout\": \"$1\"", "insertText": null, @@ -3271,11 +3925,17 @@ }, { "label": "Tk", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Tk", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Tk", "filterText": "\"Tk\": \"$1\"", "insertText": null, @@ -3301,11 +3961,17 @@ }, { "label": "Transfer-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Transfer-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Transfer-Encoding", "filterText": "\"Transfer-Encoding\": \"$1\"", "insertText": null, @@ -3331,11 +3997,17 @@ }, { "label": "User-Agent", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "User-Agent", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11User-Agent", "filterText": "\"User-Agent\": \"$1\"", "insertText": null, @@ -3361,11 +4033,17 @@ }, { "label": "Variant-Vary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Variant-Vary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Variant-Vary", "filterText": "\"Variant-Vary\": \"$1\"", "insertText": null, @@ -3391,11 +4069,17 @@ }, { "label": "Vary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Vary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Vary", "filterText": "\"Vary\": \"$1\"", "insertText": null, @@ -3421,11 +4105,17 @@ }, { "label": "Via", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Via", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Via", "filterText": "\"Via\": \"$1\"", "insertText": null, @@ -3451,11 +4141,17 @@ }, { "label": "WWW-Authenticate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "WWW-Authenticate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11WWW-Authenticate", "filterText": "\"WWW-Authenticate\": \"$1\"", "insertText": null, @@ -3481,11 +4177,17 @@ }, { "label": "Warning", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Warning", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Warning", "filterText": "\"Warning\": \"$1\"", "insertText": null, @@ -3511,11 +4213,17 @@ }, { "label": "X-Frame-Options", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "X-Frame-Options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11X-Frame-Options", "filterText": "\"X-Frame-Options\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-ref.json.json index b6a49f95a8..f41c591add 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/responses/Found", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/responses/Found", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/responses/Found", "filterText": "\"#/responses/Found\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "response-declaration-named.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-declaration-named.json", "filterText": "\"response-declaration-named.json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "response-declaration.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-declaration.json", "filterText": "\"response-declaration.json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "response-example.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-example.json", "filterText": "\"response-example.json\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "response-examples.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-examples.json", "filterText": "\"response-examples.json\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "response-header.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-header.json", "filterText": "\"response-header.json\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "response-headers.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-headers.json", "filterText": "\"response-headers.json\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "response-schema-ref.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-schema-ref.json", "filterText": "\"response-schema-ref.json\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "response-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-schema.json", "filterText": "\"response-schema.json\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "response.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response.json", "filterText": "\"response.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-schema-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-schema-ref.json.json index 2ab8008f57..e9168a1da2 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-schema-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-schema-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/definitions/A", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/definitions/A", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/definitions/A", "filterText": "\"#/definitions/A\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "response-declaration-named.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-declaration-named.json", "filterText": "\"response-declaration-named.json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "response-declaration.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-declaration.json", "filterText": "\"response-declaration.json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "response-example.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-example.json", "filterText": "\"response-example.json\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "response-examples.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-examples.json", "filterText": "\"response-examples.json\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "response-header.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-header.json", "filterText": "\"response-header.json\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "response-headers.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-headers.json", "filterText": "\"response-headers.json\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "response-ref.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-ref.json", "filterText": "\"response-ref.json\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "response-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-schema.json", "filterText": "\"response-schema.json\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "response.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response.json", "filterText": "\"response.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-schema.json.json index 1cccacbc45..d7b9221f96 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response.json.json index 887cfcbb26..9e9832bf07 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/responses/expected/response.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New headers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New headers", "filterText": "\"headers\": {\n \"$1\": {\n \"description\": \"$2\",\n \"type\": \"$3\"\n }\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New schema", "filterText": "\"schema\": {\n \"description\": \"$1\",\n \"type\": \"$2\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "\"headers\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey-in.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey-in.json.json index 75cf735698..7e9641ece2 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey-in.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey-in.json.json @@ -1,11 +1,17 @@ [ { "label": "header", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "header", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10header", "filterText": "\"header\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "query", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "query", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10query", "filterText": "\"query\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey-scheme.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey-scheme.json.json index 9c55a5196a..b3940bda26 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey-scheme.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey-scheme.json.json @@ -1,11 +1,17 @@ [ { "label": "internalApiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "internalApiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11internalApiKey", "filterText": "\"internalApiKey\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey.json.json index 016014b3c5..c50b907acb 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-apiKey.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "\"in\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-declaration.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-declaration.json.json index 4012b3c53b..481cd1edbf 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-declaration.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-declaration.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-declarations.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-declarations.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-declarations.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-declarations.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-flow.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-flow.json.json index e2a4345ae4..b59f94b76c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-flow.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-flow.json.json @@ -1,11 +1,17 @@ [ { "label": "accessCode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "accessCode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10accessCode", "filterText": "\"accessCode\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10application", "filterText": "\"application\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "implicit", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "implicit", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10implicit", "filterText": "\"implicit\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10password", "filterText": "\"password\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scheme-withScopes.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scheme-withScopes.json.json index 872354515e..9c81d66c7b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scheme-withScopes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scheme-withScopes.json.json @@ -1,11 +1,17 @@ [ { "label": "internalApiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "internalApiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11internalApiKey", "filterText": "\"internalApiKey\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scheme-withoutScopes.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scheme-withoutScopes.json.json index be53e4af5b..cf57b469d8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scheme-withoutScopes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scheme-withoutScopes.json.json @@ -1,11 +1,17 @@ [ { "label": "internalApiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "internalApiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11internalApiKey", "filterText": "\"internalApiKey\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scope.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scope.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scope.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scope.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scopes.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scopes.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scopes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2-scopes.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2.json.json index 4c021bcbd0..2e5975d033 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-oauth2.json.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "\"authorizationUrl\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "flow", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "flow", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10flow", "filterText": "\"flow\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "\"scopes\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "\"tokenUrl\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-scheme.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-scheme.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-scheme.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-scheme.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-type.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-type.json.json index c44a84645c..56b1b1f032 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-type.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/security-definitions/expected/security-type.json.json @@ -1,11 +1,17 @@ [ { "label": "apiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "apiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10apiKey", "filterText": "\"apiKey\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "basic", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "basic", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10basic", "filterText": "\"basic\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10oauth2", "filterText": "\"oauth2\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/after-map-token.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/after-map-token.json.json index 9d6064514b..f476bead9f 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/after-map-token.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/after-map-token.json.json @@ -1,11 +1,17 @@ [ { "label": "New headers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New headers", "filterText": "\"headers\": {\n \"$1\": {\n \"description\": \"$2\",\n \"type\": \"$3\"\n }\n},", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New schema", "filterText": "\"schema\": {\n \"description\": \"$1\",\n \"type\": \"$2\"\n},", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\",", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n},", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "\"headers\": {\n \"$1\"\n},", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "\"schema\": {\n \"$1\"\n},", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/map-inside-seq.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/map-inside-seq.json.json index ea17a95dcf..3e9d8f9a76 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/map-inside-seq.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/map-inside-seq.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/tuple-shape.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/tuple-shape.json.json index 0d81f5a054..7d664b6c25 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/tuple-shape.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/special-cases/expected/tuple-shape.json.json @@ -1,11 +1,17 @@ [ { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1,", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/style/expected/quotation-booleans.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/style/expected/quotation-booleans.json.json index ee2b1cbb34..7a8bf840e6 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/style/expected/quotation-booleans.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/style/expected/quotation-booleans.json.json @@ -1,11 +1,17 @@ [ { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/style/expected/quotation.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/style/expected/quotation.json.json index 6522f8a3d7..ac6ef03f64 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/style/expected/quotation.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/style/expected/quotation.json.json @@ -1,11 +1,17 @@ [ { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "\"array\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "\"boolean\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10file", "filterText": "\"file\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "\"integer\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "\"number\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "\"object\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "\"string\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/consumes-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/consumes-array.json.json index 9cedb5b747..40409204d9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/consumes-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/consumes-array.json.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\"application/json\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "\"application/vnd.github+json\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "\"application/vnd.github.v3+json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "\"application/vnd.github.v3.full+json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "\"application/vnd.github.v3.html+json\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "\"application/vnd.github.v3.patch\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "\"application/vnd.github.v3.raw+json\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "\"application/vnd.github.v3.text+json\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "\"appxlication/vnd.github.v3.diff\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "\"text/plain; charset=utf-8\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/consumes.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/consumes.json.json index f94c0c4441..0410e81eea 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/consumes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/consumes.json.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "[\n \"application/json\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "[\n \"application/vnd.github+json\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "[\n \"application/vnd.github.v3+json\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "[\n \"application/vnd.github.v3.full+json\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "[\n \"application/vnd.github.v3.html+json\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "[\n \"application/vnd.github.v3.patch\"\n]", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "[\n \"application/vnd.github.v3.raw+json\"\n]", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "[\n \"application/vnd.github.v3.text+json\"\n]", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "[\n \"appxlication/vnd.github.v3.diff\"\n]", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "[\n \"text/plain; charset=utf-8\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/encodes-unquoted.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/encodes-unquoted.json.json index d31706fd59..cc72e966d7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/encodes-unquoted.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/encodes-unquoted.json.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "\"externalDocs\": {\n \"url\": \"$1\"\n},", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New info", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New info", "filterText": "\"info\": {\n \"title\": \"$1\",\n \"version\": \"$2\"\n},", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "\"tags\": [\n {\n \"name\": \"$1\"\n }\n],", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "basePath", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "basePath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11basePath", "filterText": "\"basePath\": \"$1\",", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "\"consumes\": [\n \"$1\"\n],", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n},", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n},", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "host", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "host", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11host", "filterText": "\"host\": \"$1\",", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10info", "filterText": "\"info\": {\n \"$1\"\n},", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": {\n \"$1\"\n},", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "paths", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "paths", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10paths", "filterText": "\"paths\": {\n \"$1\"\n},", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "\"produces\": [\n \"$1\"\n],", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "\"responses\": {\n \"$1\"\n},", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "\"schemes\": [\n \"$1\"\n],", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": [\n \"$1\"\n],", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "securityDefinitions", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "securityDefinitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securityDefinitions", "filterText": "\"securityDefinitions\": {\n \"$1\"\n},", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "\"tags\": [\n \"$1\"\n],", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/encodes.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/encodes.json.json index 08b525a47b..5e1ad669c7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/encodes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/encodes.json.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "\"externalDocs\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New info", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New info", "filterText": "\"info\": {\n \"title\": \"$1\",\n \"version\": \"$2\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "\"tags\": [\n {\n \"name\": \"$1\"\n }\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "basePath", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "basePath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11basePath", "filterText": "\"basePath\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "\"consumes\": [\n \"$1\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"definitions\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "host", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "host", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11host", "filterText": "\"host\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10info", "filterText": "\"info\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "paths", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "paths", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10paths", "filterText": "\"paths\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "\"produces\": [\n \"$1\"\n]", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "\"responses\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "\"schemes\": [\n \"$1\"\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": [\n \"$1\"\n]", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "securityDefinitions", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "securityDefinitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securityDefinitions", "filterText": "\"securityDefinitions\": {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "\"tags\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/oas2-with-externaldocs.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/oas2-with-externaldocs.json.json index 9e87327c95..0f72ae3145 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/oas2-with-externaldocs.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/oas2-with-externaldocs.json.json @@ -1,11 +1,17 @@ [ { "label": "New info", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New info", "filterText": "\"info\": {\n \"title\": \"$1\",\n \"version\": \"$2\"\n},", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10info", "filterText": "\"info\": {\n \"$1\"\n},", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/oas2.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/oas2.json.json index 09de7de374..790a0883d3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/oas2.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/oas2.json.json @@ -1,11 +1,17 @@ [ { "label": "\"swagger\": \"2.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a openapi 2.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11\"swagger\": \"2.0\"", "filterText": "\"swagger\": \"2.0\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/produces-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/produces-array.json.json index 9cedb5b747..40409204d9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/produces-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/produces-array.json.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\"application/json\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "\"application/vnd.github+json\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "\"application/vnd.github.v3+json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "\"application/vnd.github.v3.full+json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "\"application/vnd.github.v3.html+json\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "\"application/vnd.github.v3.patch\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "\"application/vnd.github.v3.raw+json\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "\"application/vnd.github.v3.text+json\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "\"appxlication/vnd.github.v3.diff\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "\"text/plain; charset=utf-8\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/produces.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/produces.json.json index f94c0c4441..0410e81eea 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/produces.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/produces.json.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "[\n \"application/json\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "[\n \"application/vnd.github+json\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "[\n \"application/vnd.github.v3+json\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "[\n \"application/vnd.github.v3.full+json\"\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "[\n \"application/vnd.github.v3.html+json\"\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "[\n \"application/vnd.github.v3.patch\"\n]", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "[\n \"application/vnd.github.v3.raw+json\"\n]", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "[\n \"application/vnd.github.v3.text+json\"\n]", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "[\n \"appxlication/vnd.github.v3.diff\"\n]", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "[\n \"text/plain; charset=utf-8\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/schemes-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/schemes-array.json.json index de657b69c2..6d62f18af0 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/schemes-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/schemes-array.json.json @@ -1,11 +1,17 @@ [ { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "\"http\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "https", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "https", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11https", "filterText": "\"https\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "\"ws\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "wss", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "wss", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wss", "filterText": "\"wss\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/schemes.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/schemes.json.json index 26986567a2..eab5bc824b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/schemes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/schemes.json.json @@ -1,11 +1,17 @@ [ { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "[\n \"http\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "https", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "https", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11https", "filterText": "[\n \"https\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "[\n \"ws\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "wss", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "wss", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wss", "filterText": "[\n \"wss\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array-name-not-oauth.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array-name-not-oauth.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array-name-not-oauth.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array-name-not-oauth.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array-name.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array-name.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array-name.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array-name.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array.json.json index 7ecad74657..ff11a943dc 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-array.json.json @@ -1,11 +1,17 @@ [ { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-name-not-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-name-not-array.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-name-not-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security-name-not-array.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security.json.json index 6b5c0fdd2b..862ac37543 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/security.json.json @@ -1,11 +1,17 @@ [ { "label": "mySecurity", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mySecurity", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mySecurity", "filterText": "\"mySecurity\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/tags-array.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/tags-array.json.json index 0d9242e6f3..3a15a9f63a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/tags-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/tags-array.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/tags.json.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/tags.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/tags.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/json/top-level/expected/tags.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/array-schema.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/array-schema.yml.json index edf8083e88..f6d7d9f4f4 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/array-schema.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/array-schema.yml.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "collectionFormat: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/boolean-format.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/boolean-format.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/boolean-format.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/boolean-format.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition-name-after-declaration.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition-name-after-declaration.yml.json index 742aba28af..958dd5f94a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition-name-after-declaration.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition-name-after-declaration.yml.json @@ -1,11 +1,17 @@ [ { "label": "New definition", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New definition", "filterText": "$1:\n type: $2\n description: $3", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition-name.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition-name.yml.json index 7fa84424ba..824eb40616 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition-name.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition-name.yml.json @@ -1,11 +1,17 @@ [ { "label": "New definition", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New definition", "filterText": "$1:\n type: $2\n description: $3", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition.yml.json index 89aaee79d4..2f5ccf7467 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definition.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definitios.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definitios.yml.json index 7fa84424ba..824eb40616 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definitios.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/definitios.yml.json @@ -1,11 +1,17 @@ [ { "label": "New definition", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New definition", "filterText": "$1:\n type: $2\n description: $3", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/externalDocs-schema.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/externalDocs-schema.yml.json index 2b8849ba91..1a23f8f594 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/externalDocs-schema.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/externalDocs-schema.yml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/integer-format.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/integer-format.yml.json index d5f692750e..c781a8c74a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/integer-format.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/integer-format.yml.json @@ -1,11 +1,17 @@ [ { "label": "int32", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int32", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int32", "filterText": "int32", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "int64", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int64", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int64", "filterText": "int64", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/items-schema.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/items-schema.yml.json index 3d1f244a5e..6271830e20 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/items-schema.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/items-schema.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/number-format.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/number-format.yml.json index 4359893385..495bd13fe9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/number-format.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/number-format.yml.json @@ -1,11 +1,17 @@ [ { "label": "double", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "double", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11double", "filterText": "double", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "float", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "float", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11float", "filterText": "float", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "int32", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int32", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int32", "filterText": "int32", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "int64", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int64", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int64", "filterText": "int64", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/number-schema.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/number-schema.yml.json index a541a27ef1..42bef56ce7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/number-schema.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/number-schema.yml.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/object-schema.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/object-schema.yml.json index e4140addb5..18b001d441 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/object-schema.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/object-schema.yml.json @@ -1,11 +1,17 @@ [ { "label": "additionalProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalProperties", "filterText": "additionalProperties: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "discriminator: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxProperties", "filterText": "maxProperties: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minProperties", "filterText": "minProperties: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/properties-schema.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/properties-schema.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/properties-schema.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/properties-schema.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/property-schema.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/property-schema.yml.json index fa9e843254..52675cc1df 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/property-schema.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/property-schema.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/readOnly-properties.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/readOnly-properties.yml.json index 947420b6b8..9e4276df08 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/readOnly-properties.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/readOnly-properties.yml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/required-properties-name-existing.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/required-properties-name-existing.yml.json index eb8e6e9776..9f615a873d 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/required-properties-name-existing.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/required-properties-name-existing.yml.json @@ -1,11 +1,17 @@ [ { "label": "anotherPro", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anotherPro", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anotherPro", "filterText": "anotherPro", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/required-properties-name.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/required-properties-name.yml.json index 76b6c61166..19df1a50c5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/required-properties-name.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/required-properties-name.yml.json @@ -1,11 +1,17 @@ [ { "label": "anotherPro", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anotherPro", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anotherPro", "filterText": "anotherPro", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "tag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tag", "filterText": "tag", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav-two.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav-two.yml.json index 870e48a79b..f046848ea4 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav-two.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav-two.yml.json @@ -1,11 +1,17 @@ [ { "label": "Adef", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jsonschema.json#/definitions/Adef", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Adef", "filterText": "jsonschema.json#/definitions/Adef", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav-withoutbar.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav-withoutbar.yml.json index 81754d0604..7487829dfd 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav-withoutbar.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav-withoutbar.yml.json @@ -1,11 +1,17 @@ [ { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jsonschema.json#/definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "jsonschema.json#/definitions", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav.yml.json index df504b8c01..c8f41ee5a9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-path-nav.yml.json @@ -1,11 +1,17 @@ [ { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jsonschema.json#/definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "jsonschema.json#/definitions", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-comment.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-comment.yml.json index c28e745416..3781d4596e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-comment.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-comment.yml.json @@ -1,11 +1,17 @@ [ { "label": "#/definitions/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/definitions/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/definitions/a", "filterText": "\"#/definitions/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-separator-two.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-separator-two.yml.json index dd70db9373..83c74a32b7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-separator-two.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-separator-two.yml.json @@ -1,11 +1,17 @@ [ { "label": "a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/definitions/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11a", "filterText": "\"#/definitions/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-separator.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-separator.yml.json index 9f69ec7c87..c02eb095c5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-separator.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref-separator.yml.json @@ -1,11 +1,17 @@ [ { "label": "definitions/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/definitions/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions/a", "filterText": "\"#/definitions/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref.yml.json index 3b127d0f80..bb9d404f43 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/schema-ref.yml.json @@ -1,11 +1,17 @@ [ { "label": "#/definitions/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/definitions/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/definitions/a", "filterText": "\"#/definitions/a\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array-schema.yml", "filterText": "array-schema.yml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean-format.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean-format.yml", "filterText": "boolean-format.yml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "definition-name-after-declaration.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definition-name-after-declaration.yml", "filterText": "definition-name-after-declaration.yml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "definition-name.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definition-name.yml", "filterText": "definition-name.yml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "definition.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definition.yml", "filterText": "definition.yml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "definitios.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitios.yml", "filterText": "definitios.yml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs-schema.yml", "filterText": "externalDocs-schema.yml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "integer-format.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer-format.yml", "filterText": "integer-format.yml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "items-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items-schema.yml", "filterText": "items-schema.yml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "jsonschema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jsonschema.json", "filterText": "jsonschema.json", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "number-format.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number-format.yml", "filterText": "number-format.yml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "number-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number-schema.yml", "filterText": "number-schema.yml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "object-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object-schema.yml", "filterText": "object-schema.yml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "properties-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties-schema.yml", "filterText": "properties-schema.yml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "property-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11property-schema.yml", "filterText": "property-schema.yml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "readOnly-properties.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly-properties.yml", "filterText": "readOnly-properties.yml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "required-properties-name-existing.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required-properties-name-existing.yml", "filterText": "required-properties-name-existing.yml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required-properties-name.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required-properties-name.yml", "filterText": "required-properties-name.yml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "schema-path-nav-two.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav-two.yml", "filterText": "schema-path-nav-two.yml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "schema-path-nav-withoutbar.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav-withoutbar.yml", "filterText": "schema-path-nav-withoutbar.yml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "schema-path-nav.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav.yml", "filterText": "schema-path-nav.yml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "schema-ref-comment.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-comment.yml", "filterText": "schema-ref-comment.yml", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "schema-ref-separator-two.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-separator-two.yml", "filterText": "schema-ref-separator-two.yml", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "schema-ref-separator.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-separator.yml", "filterText": "schema-ref-separator.yml", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "string-format.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string-format.yml", "filterText": "string-format.yml", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "string-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string-schema.yml", "filterText": "string-schema.yml", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "types-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types-schema.yml", "filterText": "types-schema.yml", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "xmlObject-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xmlObject-schema.yml", "filterText": "xmlObject-schema.yml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/string-format.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/string-format.yml.json index 888603e447..12e6206bd9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/string-format.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/string-format.yml.json @@ -1,11 +1,17 @@ [ { "label": "binary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "binary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11binary", "filterText": "binary", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "byte", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "byte", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11byte", "filterText": "byte", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "date", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date", "filterText": "date", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-time", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-time", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-time", "filterText": "date-time", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11password", "filterText": "password", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/string-schema.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/string-schema.yml.json index f88ffcab4c..d2763b6776 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/string-schema.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/string-schema.yml.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/types-schema.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/types-schema.yml.json index 36d08e3cb8..542d307704 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/types-schema.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/types-schema.yml.json @@ -1,11 +1,17 @@ [ { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "array", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10file", "filterText": "file", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "object", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/xmlObject-schema.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/xmlObject-schema.yml.json index 1729a1f0da..7ca1b30da8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/xmlObject-schema.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/definitions/expected/xmlObject-schema.yml.json @@ -1,11 +1,17 @@ [ { "label": "attribute", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "attribute", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11attribute", "filterText": "attribute: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "namespace", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "namespace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11namespace", "filterText": "namespace: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "prefix", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "prefix", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prefix", "filterText": "prefix: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "wrapped", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "wrapped", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wrapped", "filterText": "wrapped: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-example.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-example.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-example.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-example.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-obj-example-arr.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-obj-example-arr.yml.json index 677cb70299..e33d375015 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-obj-example-arr.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-obj-example-arr.yml.json @@ -1,11 +1,17 @@ [ { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11p1", "filterText": "p1: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-obj-example.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-obj-example.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-obj-example.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/array-obj-example.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/empty-example.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/empty-example.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/empty-example.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/empty-example.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/object-example.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/object-example.yml.json index dc153ffcdc..4d804b012e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/object-example.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/object-example.yml.json @@ -1,11 +1,17 @@ [ { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11p1", "filterText": "p1: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/string-example.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/string-example.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/string-example.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/examples/expected/string-example.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-contact.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-contact.yml.json index 8fb8030a1b..93285f1f75 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-contact.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-contact.yml.json @@ -1,11 +1,17 @@ [ { "label": "email", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "email", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11email", "filterText": "email: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-license.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-license.yml.json index 0aa68ab145..e91ba39056 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-license.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-license.yml.json @@ -1,11 +1,17 @@ [ { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-version-with-body.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-version-with-body.yml.json index 83d508a217..d1d89b5eee 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-version-with-body.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-version-with-body.yml.json @@ -1,11 +1,17 @@ [ { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10version", "filterText": "version: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-with-parameters-node.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-with-parameters-node.yml.json index e3b446d519..96bf514553 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-with-parameters-node.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info-with-parameters-node.yml.json @@ -1,11 +1,17 @@ [ { "label": "New info", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New info", "filterText": "info:\n title: $1\n version: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10info", "filterText": "info:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info.yml.json index 6f4d92e205..289afc7fed 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/info/expected/info.yml.json @@ -1,11 +1,17 @@ [ { "label": "contact", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "contact", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contact", "filterText": "contact:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "license", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "license", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11license", "filterText": "license:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "termsOfService", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "termsOfService", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11termsOfService", "filterText": "termsOfService: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10version", "filterText": "version: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/delete.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/delete.yml.json index b104e21bac..19c83203dd 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/delete.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/delete.yml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "parameters:\n -\n in: $1\n required: $2\n description: $3\n name: $4\n type: $5", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "security:\n -\n type: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "consumes:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "produces:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "responses:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "schemes:\n - ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/get.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/get.yml.json index b104e21bac..19c83203dd 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/get.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/get.yml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "parameters:\n -\n in: $1\n required: $2\n description: $3\n name: $4\n type: $5", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "security:\n -\n type: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "consumes:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "produces:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "responses:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "schemes:\n - ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/head.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/head.yml.json index b104e21bac..19c83203dd 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/head.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/head.yml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "parameters:\n -\n in: $1\n required: $2\n description: $3\n name: $4\n type: $5", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "security:\n -\n type: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "consumes:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "produces:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "responses:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "schemes:\n - ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/options.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/options.yml.json index b104e21bac..19c83203dd 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/options.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/options.yml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "parameters:\n -\n in: $1\n required: $2\n description: $3\n name: $4\n type: $5", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "security:\n -\n type: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "consumes:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "produces:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "responses:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "schemes:\n - ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/patch.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/patch.yml.json index b104e21bac..19c83203dd 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/patch.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/patch.yml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "parameters:\n -\n in: $1\n required: $2\n description: $3\n name: $4\n type: $5", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "security:\n -\n type: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "consumes:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "produces:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "responses:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "schemes:\n - ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/post.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/post.yml.json index b104e21bac..19c83203dd 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/post.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/post.yml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "parameters:\n -\n in: $1\n required: $2\n description: $3\n name: $4\n type: $5", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "security:\n -\n type: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "consumes:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "produces:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "responses:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "schemes:\n - ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/put.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/put.yml.json index b104e21bac..19c83203dd 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/put.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/bymethod/expected/put.yml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "parameters:\n -\n in: $1\n required: $2\n description: $3\n name: $4\n type: $5", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "security:\n -\n type: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "consumes:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "produces:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "responses:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "schemes:\n - ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/consumes-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/consumes-array.yml.json index 1793bc17f0..05f20610fa 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/consumes-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/consumes-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "application/vnd.github+json", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "application/vnd.github.v3+json", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "application/vnd.github.v3.full+json", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "application/vnd.github.v3.html+json", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "application/vnd.github.v3.patch", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "application/vnd.github.v3.raw+json", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "application/vnd.github.v3.text+json", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "appxlication/vnd.github.v3.diff", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "text/plain; charset=utf-8", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/consumes.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/consumes.yml.json index 08d783ede0..1f8252128c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/consumes.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/consumes.yml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\n- application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "\n- application/vnd.github+json", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "\n- application/vnd.github.v3+json", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "\n- application/vnd.github.v3.full+json", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "\n- application/vnd.github.v3.html+json", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "\n- application/vnd.github.v3.patch", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "\n- application/vnd.github.v3.raw+json", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "\n- application/vnd.github.v3.text+json", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "\n- appxlication/vnd.github.v3.diff", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "\n- text/plain; charset=utf-8", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/deprecated.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/deprecated.yml.json index bf8a8ae3de..30a2da8e79 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/deprecated.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/deprecated.yml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/external-docs.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/external-docs.yml.json index fceaac40e7..90d3a5ef83 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/external-docs.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/external-docs.yml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter-array.yml.json index 4bcf1005ca..fe3120a0b3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "collectionFormat: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter-ref.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter-ref.yml.json index 23c2554db3..926d2d8fd1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter-ref.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter-ref.yml.json @@ -1,11 +1,17 @@ [ { "label": "#/parameters/named", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/parameters/named", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/parameters/named", "filterText": "\"#/parameters/named\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "bymethod/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bymethod/", "filterText": "bymethod/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "consumes-array.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes-array.yml", "filterText": "consumes-array.yml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "consumes.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes.yml", "filterText": "consumes.yml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated.yml", "filterText": "deprecated.yml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "external-docs.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11external-docs.yml", "filterText": "external-docs.yml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "parameter-array.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-array.yml", "filterText": "parameter-array.yml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "parameter.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter.yml", "filterText": "parameter.yml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "produces-array.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces-array.yml", "filterText": "produces-array.yml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "produces.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces.yml", "filterText": "produces.yml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "reponses-quoted.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11reponses-quoted.yml", "filterText": "reponses-quoted.yml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "reponses.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11reponses.yml", "filterText": "reponses.yml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "schemes-array.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes-array.yml", "filterText": "schemes-array.yml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "schemes.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes.yml", "filterText": "schemes.yml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "security-array-named.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-array-named.yml", "filterText": "security-array-named.yml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "security-array.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-array.yml", "filterText": "security-array.yml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "security-name-not-array.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-name-not-array.yml", "filterText": "security-name-not-array.yml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "security.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security.yml", "filterText": "security.yml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "tags-array.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags-array.yml", "filterText": "tags-array.yml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "tags.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags.yml", "filterText": "tags.yml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/parameter.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/produces-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/produces-array.yml.json index 1793bc17f0..05f20610fa 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/produces-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/produces-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "application/vnd.github+json", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "application/vnd.github.v3+json", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "application/vnd.github.v3.full+json", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "application/vnd.github.v3.html+json", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "application/vnd.github.v3.patch", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "application/vnd.github.v3.raw+json", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "application/vnd.github.v3.text+json", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "appxlication/vnd.github.v3.diff", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "text/plain; charset=utf-8", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/produces.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/produces.yml.json index 08d783ede0..1f8252128c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/produces.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/produces.yml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\n- application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "\n- application/vnd.github+json", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "\n- application/vnd.github.v3+json", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "\n- application/vnd.github.v3.full+json", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "\n- application/vnd.github.v3.html+json", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "\n- application/vnd.github.v3.patch", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "\n- application/vnd.github.v3.raw+json", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "\n- application/vnd.github.v3.text+json", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "\n- appxlication/vnd.github.v3.diff", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "\n- text/plain; charset=utf-8", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/reponses-quoted.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/reponses-quoted.yml.json index ff836e42e2..f6540bb3c8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/reponses-quoted.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/reponses-quoted.yml.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "\"100\":\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "\"101\":\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "\"102\":\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "\"200\":\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "\"201\":\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "\"202\":\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "\"203\":\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "\"204\":\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "\"205\":\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "\"206\":\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "\"207\":\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "\"208\":\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "\"226\":\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "\"300\":\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "\"301\":\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "\"302\":\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "\"303\":\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "\"304\":\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "\"305\":\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "\"306\":\n ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "\"307\":\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "\"308\":\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "\"400\":\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "\"401\":\n ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "\"402\":\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "\"403\":\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "\"404\":\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "\"405\":\n ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "\"406\":\n ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "\"407\":\n ", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "\"408\":\n ", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "\"409\":\n ", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "\"410\":\n ", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "\"411\":\n ", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "\"412\":\n ", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "\"413\":\n ", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "\"414\":\n ", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "\"415\":\n ", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "\"416\":\n ", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "\"417\":\n ", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "\"418\":\n ", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "\"420\":\n ", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "\"422\":\n ", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "\"423\":\n ", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "\"424\":\n ", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "\"425\":\n ", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "\"426\":\n ", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "\"428\":\n ", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "\"429\":\n ", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "\"431\":\n ", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "\"444\":\n ", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "\"449\":\n ", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "\"450\":\n ", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "\"451\":\n ", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "\"499\":\n ", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "\"500\":\n ", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "\"501\":\n ", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "\"502\":\n ", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "\"503\":\n ", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "\"504\":\n ", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "\"505\":\n ", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "\"506\":\n ", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "\"507\":\n ", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "\"508\":\n ", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "\"509\":\n ", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "\"510\":\n ", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "\"511\":\n ", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "\"598\":\n ", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "\"599\":\n ", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/reponses.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/reponses.yml.json index 448d42b9f7..5b8cb79097 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/reponses.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/reponses.yml.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "100:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "101:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "102:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "200:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "201:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "202:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "203:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "204:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "205:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "206:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "207:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "208:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "226:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "300:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "301:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "302:\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "303:\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "304:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "305:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "306:\n ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "307:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "308:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "400:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "401:\n ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "402:\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "403:\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "404:\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "405:\n ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "406:\n ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "407:\n ", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "408:\n ", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "409:\n ", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "410:\n ", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "411:\n ", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "412:\n ", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "413:\n ", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "414:\n ", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "415:\n ", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "416:\n ", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "417:\n ", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "418:\n ", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "420:\n ", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "422:\n ", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "423:\n ", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "424:\n ", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "425:\n ", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "426:\n ", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "428:\n ", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "429:\n ", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "431:\n ", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "444:\n ", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "449:\n ", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "450:\n ", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "451:\n ", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "499:\n ", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "500:\n ", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "501:\n ", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "502:\n ", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "503:\n ", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "504:\n ", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "505:\n ", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "506:\n ", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "507:\n ", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "508:\n ", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "509:\n ", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "510:\n ", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "511:\n ", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "598:\n ", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "599:\n ", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/schemes-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/schemes-array.yml.json index 0e59d3f73c..e11b2f56a1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/schemes-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/schemes-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "http", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "https", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "https", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11https", "filterText": "https", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "ws", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "wss", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "wss", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wss", "filterText": "wss", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/schemes.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/schemes.yml.json index e078d1a21e..d673f2412c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/schemes.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/schemes.yml.json @@ -1,11 +1,17 @@ [ { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "\n- http", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "https", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "https", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11https", "filterText": "\n- https", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "\n- ws", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "wss", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "wss", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wss", "filterText": "\n- wss", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-array-named.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-array-named.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-array-named.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-array-named.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-array.yml.json index 584834bc46..4dff5b69c2 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "internalApiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "internalApiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11internalApiKey", "filterText": "internalApiKey: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-name-not-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-name-not-array.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-name-not-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security-name-not-array.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/security.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/tags-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/tags-array.yml.json index 8d0dbbd65d..fec19c4b90 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/tags-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/tags-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "myTag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "myTag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11myTag", "filterText": "myTag", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/tags.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/tags.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/tags.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/operations/expected/tags.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/bindings.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/bindings.yml.json index cde98ddf47..3c474b7dce 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/bindings.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/bindings.yml.json @@ -1,11 +1,17 @@ [ { "label": "body", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "body", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10body", "filterText": "body", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "formData", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "formData", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10formData", "filterText": "formData", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "header", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "header", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10header", "filterText": "header", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "path", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "path", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10path", "filterText": "path", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "query", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "query", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10query", "filterText": "query", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-array-with-follow-up-entry.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-array-with-follow-up-entry.yml.json index d90dfdeeb5..6f5b067061 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-array-with-follow-up-entry.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-array-with-follow-up-entry.yml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inBody.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inBody.yml.json index fb190012a1..dad2650b22 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inBody.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inBody.yml.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "schema:\n description: $1\n type: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10schema", "filterText": "schema:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inForm.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inForm.yml.json index 457d5cd278..5d5fcfe0c7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inForm.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inForm.yml.json @@ -1,11 +1,17 @@ [ { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "allowEmptyValue: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "collectionFormat: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inHeader-with-type.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inHeader-with-type.yml.json index 50e59be7e1..3f5bf3d0fe 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inHeader-with-type.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inHeader-with-type.yml.json @@ -1,11 +1,17 @@ [ { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "collectionFormat: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inHeader.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inHeader.yml.json index 799fde3e58..1c2ccffd49 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inHeader.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inHeader.yml.json @@ -1,11 +1,17 @@ [ { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "collectionFormat: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inPath.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inPath.yml.json index 799fde3e58..1c2ccffd49 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inPath.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inPath.yml.json @@ -1,11 +1,17 @@ [ { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "collectionFormat: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inQuery-params.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inQuery-params.yml.json index 41f19c9b61..9b310eb093 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inQuery-params.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inQuery-params.yml.json @@ -1,11 +1,17 @@ [ { "label": "param", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "param", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11param", "filterText": "param", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "userId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "userId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11userId", "filterText": "userId", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inQuery.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inQuery.yml.json index 5f563b1e8d..350dc87955 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inQuery.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-inQuery.yml.json @@ -1,11 +1,17 @@ [ { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "allowEmptyValue: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "collectionFormat: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-named.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-named.yml.json index d7c6819677..d047e0a855 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-named.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared-named.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "collectionFormat: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared.yml.json index 4963f16658..2e0f526320 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/declared.yml.json @@ -1,11 +1,17 @@ [ { "label": "New parameter", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New parameter", "filterText": "$1:\n type: $2\n name: $3\n description: $4\n required: $5\n in: $6", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/operation-inBody.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/operation-inBody.yml.json index db94783852..fdc0404134 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/operation-inBody.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/operation-inBody.yml.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "schema:\n description: $1\n type: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10schema", "filterText": "schema:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/path-inBody-with-follow-up-letter.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/path-inBody-with-follow-up-letter.yml.json index 4be3272f98..ba2e5057e2 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/path-inBody-with-follow-up-letter.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/path-inBody-with-follow-up-letter.yml.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "schema:\n description: $1\n type: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10schema", "filterText": "schema:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/path-inBody.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/path-inBody.yml.json index bb7db66426..dd1f6aeaae 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/path-inBody.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/path-inBody.yml.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "schema:\n description: $1\n type: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10schema", "filterText": "schema:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/two-invalids.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/two-invalids.yml.json index 7eb6cd7c32..0b6875b93d 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/two-invalids.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/parameters/expected/two-invalids.yml.json @@ -1,11 +1,17 @@ [ { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter-array.yml.json index fd9e8770a6..ba3b199e00 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "collectionFormat: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter-ref.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter-ref.yml.json index d2fd693c7e..3cbbca86d3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter-ref.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter-ref.yml.json @@ -1,11 +1,17 @@ [ { "label": "#/parameters/named", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/parameters/named", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/parameters/named", "filterText": "\"#/parameters/named\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "parameter-array.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-array.yml", "filterText": "parameter-array.yml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "parameter.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter.yml", "filterText": "parameter.yml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "path-def.ext.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11path-def.ext.yaml", "filterText": "path-def.ext.yaml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "path-ref.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11path-ref.yml", "filterText": "path-ref.yml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "path.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11path.yml", "filterText": "path.yml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "paths.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11paths.yml", "filterText": "paths.yml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/parameter.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/path-ref.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/path-ref.yml.json index f1249e77ac..8f1e414f37 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/path-ref.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/path-ref.yml.json @@ -1,11 +1,17 @@ [ { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "parameter-array.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-array.yml", "filterText": "parameter-array.yml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "parameter-ref.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-ref.yml", "filterText": "parameter-ref.yml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "parameter.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter.yml", "filterText": "parameter.yml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "path-def.ext.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11path-def.ext.yaml", "filterText": "path-def.ext.yaml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "path.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11path.yml", "filterText": "path.yml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "paths.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11paths.yml", "filterText": "paths.yml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/path.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/path.yml.json index 813c3faaaf..46a06cc13c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/path.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/path.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "delete:\n responses:\n $1: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "delete:\n responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New full get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full get", "filterText": "get:\n responses:\n $1:\n description: $2", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New full head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full head", "filterText": "head:\n responses:\n $1:\n description: $2", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "New full options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full options", "filterText": "options:\n responses:\n $1:\n description: $2", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "New full patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full patch", "filterText": "patch:\n responses:\n $1:\n description: $2", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "New full post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full post", "filterText": "post:\n responses:\n $1:\n description: $2", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "New full put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full put", "filterText": "put:\n responses:\n $1:\n description: $2", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "New get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New get", "filterText": "get:\n responses:\n $1: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "New head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New head", "filterText": "head:\n responses:\n $1: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "New options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New options", "filterText": "options:\n responses:\n $1: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "parameters:\n -\n in: $1\n required: $2\n description: $3\n name: $4\n type: $5", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "New patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New patch", "filterText": "patch:\n responses:\n $1: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "New post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New post", "filterText": "post:\n responses:\n $1: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "New put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New put", "filterText": "put:\n responses:\n $1: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/paths.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/paths.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/paths.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/paths/expected/paths.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-declaration-named.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-declaration-named.yml.json index faf6e185e0..ff72048669 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-declaration-named.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-declaration-named.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-declaration.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-declaration.yml.json index 92392cd8ed..5ecc547b31 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-declaration.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-declaration.yml.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "100:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "101:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "102:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "200:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "201:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "202:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "203:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "204:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "205:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "206:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "207:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "208:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "226:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "300:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "301:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "302:\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "303:\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "304:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "305:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "306:\n ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "307:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "308:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "400:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "401:\n ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "402:\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "403:\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "404:\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "405:\n ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "406:\n ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "407:\n ", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "408:\n ", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "409:\n ", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "410:\n ", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "411:\n ", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "412:\n ", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "413:\n ", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "414:\n ", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "415:\n ", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "416:\n ", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "417:\n ", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "418:\n ", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "420:\n ", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "422:\n ", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "423:\n ", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "424:\n ", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "425:\n ", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "426:\n ", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "428:\n ", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "429:\n ", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "431:\n ", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "444:\n ", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "449:\n ", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "450:\n ", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "451:\n ", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "499:\n ", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "500:\n ", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "501:\n ", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "502:\n ", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "503:\n ", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "504:\n ", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "505:\n ", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "506:\n ", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "507:\n ", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "508:\n ", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "509:\n ", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "510:\n ", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "511:\n ", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "598:\n ", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "599:\n ", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "New response", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New response", "filterText": "$1:\n description: $2\n statusCode: $3", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-example.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-example.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-example.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-example.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-examples.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-examples.yml.json index fd09e28059..cc9630f7d1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-examples.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-examples.yml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "application/vnd.github+json:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "application/vnd.github.v3+json:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "application/vnd.github.v3.full+json:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "application/vnd.github.v3.html+json:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "application/vnd.github.v3.patch:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "application/vnd.github.v3.raw+json:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "application/vnd.github.v3.text+json:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "appxlication/vnd.github.v3.diff:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "text/plain; charset=utf-8:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-header.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-header.yml.json index 6876ea0b4d..854359e654 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-header.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-header.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "collectionFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "collectionFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11collectionFormat", "filterText": "collectionFormat: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-headers.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-headers.yml.json index a93e0ca9b6..11b2b0017a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-headers.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-headers.yml.json @@ -1,11 +1,17 @@ [ { "label": "A-IM", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A-IM", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A-IM", "filterText": "A-IM:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "ALPN", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ALPN", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ALPN", "filterText": "ALPN:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "Accept", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept", "filterText": "Accept:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "Accept-CH", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-CH", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-CH", "filterText": "Accept-CH:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "Accept-Charset", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Charset", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Charset", "filterText": "Accept-Charset:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "Accept-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Encoding", "filterText": "Accept-Encoding:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "Accept-Features", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Features", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Features", "filterText": "Accept-Features:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "Accept-Language", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Language", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Language", "filterText": "Accept-Language:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "Accept-Patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Patch", "filterText": "Accept-Patch:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "Accept-Post", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Post", "filterText": "Accept-Post:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "Accept-Ranges", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Ranges", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Ranges", "filterText": "Accept-Ranges:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "Access-Control-Allow-Credentials", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Credentials", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Credentials", "filterText": "Access-Control-Allow-Credentials:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "Access-Control-Allow-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Headers", "filterText": "Access-Control-Allow-Headers:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "Access-Control-Allow-Methods", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Methods", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Methods", "filterText": "Access-Control-Allow-Methods:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "Access-Control-Allow-Origin", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Origin", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Origin", "filterText": "Access-Control-Allow-Origin:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "Access-Control-Expose-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Expose-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Expose-Headers", "filterText": "Access-Control-Expose-Headers:\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "Access-Control-Max-Age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Max-Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Max-Age", "filterText": "Access-Control-Max-Age:\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "Access-Control-Request-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Request-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Request-Headers", "filterText": "Access-Control-Request-Headers:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "Access-Control-Request-Method", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Request-Method", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Request-Method", "filterText": "Access-Control-Request-Method:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "Age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Age", "filterText": "Age:\n ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "Allow", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Allow", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Allow", "filterText": "Allow:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "Alt-Svc", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Alt-Svc", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Alt-Svc", "filterText": "Alt-Svc:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "Alternates", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Alternates", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Alternates", "filterText": "Alternates:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "Apply-To-Redirect-Ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Apply-To-Redirect-Ref", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Apply-To-Redirect-Ref", "filterText": "Apply-To-Redirect-Ref:\n ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "Authorization", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Authorization", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Authorization", "filterText": "Authorization:\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "CH", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "CH", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11CH", "filterText": "CH:\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "Cache-Control", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cache-Control", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cache-Control", "filterText": "Cache-Control:\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "Content-Base", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Base", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Base", "filterText": "Content-Base:\n ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "Content-DPR", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-DPR", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-DPR", "filterText": "Content-DPR:\n ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "Content-Disposition", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Disposition", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Disposition", "filterText": "Content-Disposition:\n ", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "Content-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Encoding", "filterText": "Content-Encoding:\n ", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "Content-Language", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Language", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Language", "filterText": "Content-Language:\n ", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "Content-Length", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Length", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Length", "filterText": "Content-Length:\n ", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "Content-Location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Location", "filterText": "Content-Location:\n ", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "Content-Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Range", "filterText": "Content-Range:\n ", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "Content-Security-Policy", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Security-Policy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Security-Policy", "filterText": "Content-Security-Policy:\n ", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "Content-Security-Policy-Report-Only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Security-Policy-Report-Only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Security-Policy-Report-Only", "filterText": "Content-Security-Policy-Report-Only:\n ", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "Content-Type", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Type", "filterText": "Content-Type:\n ", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "Cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cookie", "filterText": "Cookie:\n ", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "Cookie2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cookie2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cookie2", "filterText": "Cookie2:\n ", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "DASL", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DASL", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DASL", "filterText": "DASL:\n ", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "DAV", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DAV", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DAV", "filterText": "DAV:\n ", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "DNT", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DNT", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DNT", "filterText": "DNT:\n ", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "DPR", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DPR", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DPR", "filterText": "DPR:\n ", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "Date", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Date", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Date", "filterText": "Date:\n ", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "Delta-Base", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Delta-Base", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Delta-Base", "filterText": "Delta-Base:\n ", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "Depth", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Depth", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Depth", "filterText": "Depth:\n ", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "Destination", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Destination", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Destination", "filterText": "Destination:\n ", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "ETag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ETag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ETag", "filterText": "ETag:\n ", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "Encryption", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Encryption", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Encryption", "filterText": "Encryption:\n ", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "Encryption-Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Encryption-Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Encryption-Key", "filterText": "Encryption-Key:\n ", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "Expect", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Expect", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Expect", "filterText": "Expect:\n ", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "Expires", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Expires", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Expires", "filterText": "Expires:\n ", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "Forwarded", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Forwarded", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Forwarded", "filterText": "Forwarded:\n ", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "From", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "From", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11From", "filterText": "From:\n ", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "HTTP2-Settings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP2-Settings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP2-Settings", "filterText": "HTTP2-Settings:\n ", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "Host", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Host", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Host", "filterText": "Host:\n ", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "IM", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "IM", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11IM", "filterText": "IM:\n ", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "If", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If", "filterText": "If:\n ", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "If-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Match", "filterText": "If-Match:\n ", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "If-Modified-Since", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Modified-Since", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Modified-Since", "filterText": "If-Modified-Since:\n ", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "If-None-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-None-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-None-Match", "filterText": "If-None-Match:\n ", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "If-Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Range", "filterText": "If-Range:\n ", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "If-Schedule-Tag-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Schedule-Tag-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Schedule-Tag-Match", "filterText": "If-Schedule-Tag-Match:\n ", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "If-Unmodified-Since", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Unmodified-Since", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Unmodified-Since", "filterText": "If-Unmodified-Since:\n ", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Key", "filterText": "Key:\n ", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "Last-Event-ID", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Last-Event-ID", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Last-Event-ID", "filterText": "Last-Event-ID:\n ", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "Last-Modified", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Last-Modified", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Last-Modified", "filterText": "Last-Modified:\n ", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "Link", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Link", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Link", "filterText": "Link:\n ", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "Link-Template", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Link-Template", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Link-Template", "filterText": "Link-Template:\n ", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "Location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Location", "filterText": "Location:\n ", "insertText": null, @@ -2131,11 +2557,17 @@ }, { "label": "Lock-Token", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Lock-Token", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Lock-Token", "filterText": "Lock-Token:\n ", "insertText": null, @@ -2161,11 +2593,17 @@ }, { "label": "MD", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "MD", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11MD", "filterText": "MD:\n ", "insertText": null, @@ -2191,11 +2629,17 @@ }, { "label": "Max-Forwards", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Max-Forwards", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Max-Forwards", "filterText": "Max-Forwards:\n ", "insertText": null, @@ -2221,11 +2665,17 @@ }, { "label": "Negotiate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Negotiate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Negotiate", "filterText": "Negotiate:\n ", "insertText": null, @@ -2251,11 +2701,17 @@ }, { "label": "Nice", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Nice", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Nice", "filterText": "Nice:\n ", "insertText": null, @@ -2281,11 +2737,17 @@ }, { "label": "Origin", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Origin", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Origin", "filterText": "Origin:\n ", "insertText": null, @@ -2311,11 +2773,17 @@ }, { "label": "Overwrite", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Overwrite", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Overwrite", "filterText": "Overwrite:\n ", "insertText": null, @@ -2341,11 +2809,17 @@ }, { "label": "POE", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "POE", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11POE", "filterText": "POE:\n ", "insertText": null, @@ -2371,11 +2845,17 @@ }, { "label": "POE-Links", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "POE-Links", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11POE-Links", "filterText": "POE-Links:\n ", "insertText": null, @@ -2401,11 +2881,17 @@ }, { "label": "Pragma", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Pragma", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Pragma", "filterText": "Pragma:\n ", "insertText": null, @@ -2431,11 +2917,17 @@ }, { "label": "Prefer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Prefer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Prefer", "filterText": "Prefer:\n ", "insertText": null, @@ -2461,11 +2953,17 @@ }, { "label": "Preference-Applied", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Preference-Applied", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Preference-Applied", "filterText": "Preference-Applied:\n ", "insertText": null, @@ -2491,11 +2989,17 @@ }, { "label": "Proxy-Authenticate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Proxy-Authenticate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Proxy-Authenticate", "filterText": "Proxy-Authenticate:\n ", "insertText": null, @@ -2521,11 +3025,17 @@ }, { "label": "Proxy-Authorization", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Proxy-Authorization", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Proxy-Authorization", "filterText": "Proxy-Authorization:\n ", "insertText": null, @@ -2551,11 +3061,17 @@ }, { "label": "RW", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "RW", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11RW", "filterText": "RW:\n ", "insertText": null, @@ -2581,11 +3097,17 @@ }, { "label": "Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Range", "filterText": "Range:\n ", "insertText": null, @@ -2611,11 +3133,17 @@ }, { "label": "Redirect-Ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Redirect-Ref", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Redirect-Ref", "filterText": "Redirect-Ref:\n ", "insertText": null, @@ -2641,11 +3169,17 @@ }, { "label": "Referer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Referer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Referer", "filterText": "Referer:\n ", "insertText": null, @@ -2671,11 +3205,17 @@ }, { "label": "Retry-After", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Retry-After", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Retry-After", "filterText": "Retry-After:\n ", "insertText": null, @@ -2701,11 +3241,17 @@ }, { "label": "SLUG", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "SLUG", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11SLUG", "filterText": "SLUG:\n ", "insertText": null, @@ -2731,11 +3277,17 @@ }, { "label": "Schedule-Reply", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Schedule-Reply", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Schedule-Reply", "filterText": "Schedule-Reply:\n ", "insertText": null, @@ -2761,11 +3313,17 @@ }, { "label": "Schedule-Tag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Schedule-Tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Schedule-Tag", "filterText": "Schedule-Tag:\n ", "insertText": null, @@ -2791,11 +3349,17 @@ }, { "label": "Sec-WebSocket-Accept", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Accept", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Accept", "filterText": "Sec-WebSocket-Accept:\n ", "insertText": null, @@ -2821,11 +3385,17 @@ }, { "label": "Sec-WebSocket-Extensions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Extensions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Extensions", "filterText": "Sec-WebSocket-Extensions:\n ", "insertText": null, @@ -2851,11 +3421,17 @@ }, { "label": "Sec-WebSocket-Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Key", "filterText": "Sec-WebSocket-Key:\n ", "insertText": null, @@ -2881,11 +3457,17 @@ }, { "label": "Sec-WebSocket-Protocol", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Protocol", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Protocol", "filterText": "Sec-WebSocket-Protocol:\n ", "insertText": null, @@ -2911,11 +3493,17 @@ }, { "label": "Sec-WebSocket-Version", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Version", "filterText": "Sec-WebSocket-Version:\n ", "insertText": null, @@ -2941,11 +3529,17 @@ }, { "label": "Server", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Server", "filterText": "Server:\n ", "insertText": null, @@ -2971,11 +3565,17 @@ }, { "label": "Set-Cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Set-Cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Set-Cookie", "filterText": "Set-Cookie:\n ", "insertText": null, @@ -3001,11 +3601,17 @@ }, { "label": "Set-Cookie2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Set-Cookie2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Set-Cookie2", "filterText": "Set-Cookie2:\n ", "insertText": null, @@ -3031,11 +3637,17 @@ }, { "label": "Status-URI", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Status-URI", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Status-URI", "filterText": "Status-URI:\n ", "insertText": null, @@ -3061,11 +3673,17 @@ }, { "label": "Strict-Transport-Security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Strict-Transport-Security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Strict-Transport-Security", "filterText": "Strict-Transport-Security:\n ", "insertText": null, @@ -3091,11 +3709,17 @@ }, { "label": "Sunset", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sunset", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sunset", "filterText": "Sunset:\n ", "insertText": null, @@ -3121,11 +3745,17 @@ }, { "label": "Surrogate-Capability", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Surrogate-Capability", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Surrogate-Capability", "filterText": "Surrogate-Capability:\n ", "insertText": null, @@ -3151,11 +3781,17 @@ }, { "label": "Surrogate-Control", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Surrogate-Control", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Surrogate-Control", "filterText": "Surrogate-Control:\n ", "insertText": null, @@ -3181,11 +3817,17 @@ }, { "label": "TCN", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TCN", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TCN", "filterText": "TCN:\n ", "insertText": null, @@ -3211,11 +3853,17 @@ }, { "label": "TE", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TE", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TE", "filterText": "TE:\n ", "insertText": null, @@ -3241,11 +3889,17 @@ }, { "label": "Timeout", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Timeout", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Timeout", "filterText": "Timeout:\n ", "insertText": null, @@ -3271,11 +3925,17 @@ }, { "label": "Tk", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Tk", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Tk", "filterText": "Tk:\n ", "insertText": null, @@ -3301,11 +3961,17 @@ }, { "label": "Transfer-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Transfer-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Transfer-Encoding", "filterText": "Transfer-Encoding:\n ", "insertText": null, @@ -3331,11 +3997,17 @@ }, { "label": "User-Agent", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "User-Agent", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11User-Agent", "filterText": "User-Agent:\n ", "insertText": null, @@ -3361,11 +4033,17 @@ }, { "label": "Variant-Vary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Variant-Vary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Variant-Vary", "filterText": "Variant-Vary:\n ", "insertText": null, @@ -3391,11 +4069,17 @@ }, { "label": "Vary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Vary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Vary", "filterText": "Vary:\n ", "insertText": null, @@ -3421,11 +4105,17 @@ }, { "label": "Via", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Via", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Via", "filterText": "Via:\n ", "insertText": null, @@ -3451,11 +4141,17 @@ }, { "label": "WWW-Authenticate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "WWW-Authenticate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11WWW-Authenticate", "filterText": "WWW-Authenticate:\n ", "insertText": null, @@ -3481,11 +4177,17 @@ }, { "label": "Warning", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Warning", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Warning", "filterText": "Warning:\n ", "insertText": null, @@ -3511,11 +4213,17 @@ }, { "label": "X-Frame-Options", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "X-Frame-Options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11X-Frame-Options", "filterText": "X-Frame-Options:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-ref.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-ref.yml.json index 82ed2fc980..b300d0e8e0 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-ref.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-ref.yml.json @@ -1,11 +1,17 @@ [ { "label": "#/responses/Found", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/responses/Found", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/responses/Found", "filterText": "\"#/responses/Found\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "response-declaration-named.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-declaration-named.yml", "filterText": "response-declaration-named.yml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "response-declaration.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-declaration.yml", "filterText": "response-declaration.yml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "response-example.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-example.yml", "filterText": "response-example.yml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "response-examples.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-examples.yml", "filterText": "response-examples.yml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "response-header.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-header.yml", "filterText": "response-header.yml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "response-headers.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-headers.yml", "filterText": "response-headers.yml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "response-schema-ref.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-schema-ref.yml", "filterText": "response-schema-ref.yml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "response-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-schema.yml", "filterText": "response-schema.yml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "response.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response.yml", "filterText": "response.yml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-schema-ref.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-schema-ref.yml.json index 6129ed58c6..6ed78da46b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-schema-ref.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-schema-ref.yml.json @@ -1,11 +1,17 @@ [ { "label": "#/definitions/A", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/definitions/A", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/definitions/A", "filterText": "\"#/definitions/A\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "response-declaration-named.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-declaration-named.yml", "filterText": "response-declaration-named.yml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "response-declaration.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-declaration.yml", "filterText": "response-declaration.yml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "response-example.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-example.yml", "filterText": "response-example.yml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "response-examples.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-examples.yml", "filterText": "response-examples.yml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "response-header.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-header.yml", "filterText": "response-header.yml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "response-headers.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-headers.yml", "filterText": "response-headers.yml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "response-ref.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-ref.yml", "filterText": "response-ref.yml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "response-schema.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-schema.yml", "filterText": "response-schema.yml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "response.yml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response.yml", "filterText": "response.yml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-schema.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-schema.yml.json index 879e323bc5..d8564de424 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-schema.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response-schema.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response.yml.json index 425259c32c..e93136252a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/responses/expected/response.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New headers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New headers", "filterText": "headers:\n $1:\n description: $2\n type: $3", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New schema", "filterText": "schema:\n description: $1\n type: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey-in.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey-in.yml.json index a15242605c..0e3a7c0906 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey-in.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey-in.yml.json @@ -1,11 +1,17 @@ [ { "label": "header", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "header", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10header", "filterText": "header", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "query", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "query", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10query", "filterText": "query", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey-scheme.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey-scheme.yml.json index 514663cfd7..47c4737931 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey-scheme.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey-scheme.yml.json @@ -1,11 +1,17 @@ [ { "label": "internalApiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "internalApiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11internalApiKey", "filterText": "internalApiKey: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey.yml.json index 93f8763136..569010e545 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-apiKey.yml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-declaration.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-declaration.yml.json index 64888d682a..fc26d750ce 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-declaration.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-declaration.yml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-declarations.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-declarations.yml.json index 54127619b7..b50a68e91b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-declarations.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-declarations.yml.json @@ -1,11 +1,17 @@ [ { "label": "New securityDefinition", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New securityDefinition", "filterText": "$1:\n type: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-flow.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-flow.yml.json index 9d1c27288f..8a002d22ee 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-flow.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-flow.yml.json @@ -1,11 +1,17 @@ [ { "label": "accessCode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "accessCode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10accessCode", "filterText": "accessCode", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10application", "filterText": "application", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "implicit", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "implicit", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10implicit", "filterText": "implicit", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10password", "filterText": "password", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scheme-withScopes.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scheme-withScopes.yml.json index a857c20ab8..d74f1b5336 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scheme-withScopes.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scheme-withScopes.yml.json @@ -1,11 +1,17 @@ [ { "label": "internalApiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "internalApiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11internalApiKey", "filterText": "internalApiKey:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scheme-withoutScopes.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scheme-withoutScopes.yml.json index b1298fb8d0..8118f29e97 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scheme-withoutScopes.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scheme-withoutScopes.yml.json @@ -1,11 +1,17 @@ [ { "label": "internalApiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "internalApiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11internalApiKey", "filterText": "internalApiKey: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scope.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scope.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scope.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scope.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scopes.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scopes.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scopes.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2-scopes.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2.yml.json index 5f8e7fa2b4..b7f2bab54b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-oauth2.yml.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "authorizationUrl: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "flow", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "flow", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10flow", "filterText": "flow: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "scopes:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "tokenUrl: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-scheme.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-scheme.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-scheme.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-scheme.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-type.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-type.yml.json index 3ac02a52b0..06dba6b123 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-type.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/security-definitions/expected/security-type.yml.json @@ -1,11 +1,17 @@ [ { "label": "apiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "apiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10apiKey", "filterText": "apiKey", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "basic", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "basic", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10basic", "filterText": "basic", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10oauth2", "filterText": "oauth2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/after-map-token.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/after-map-token.yml.json index fe51488c70..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/after-map-token.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/after-map-token.yml.json @@ -1 +1,3 @@ -[] +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/map-inside-seq.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/map-inside-seq.yml.json index 3062c788d5..cfe0d82bc9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/map-inside-seq.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/map-inside-seq.yml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/tuple-shape.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/tuple-shape.yml.json index 17ba6a27aa..42ad9f881f 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/tuple-shape.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/special-cases/expected/tuple-shape.yml.json @@ -1,11 +1,17 @@ [ { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/style/expected/quotation-booleans.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/style/expected/quotation-booleans.yml.json index 6bb471a79f..5da2b5e80a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/style/expected/quotation-booleans.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/style/expected/quotation-booleans.yml.json @@ -1,11 +1,17 @@ [ { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/style/expected/quotation.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/style/expected/quotation.yml.json index c6b99edd61..cea94a304e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/style/expected/quotation.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/style/expected/quotation.yml.json @@ -1,11 +1,17 @@ [ { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "array", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10file", "filterText": "file", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "object", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/consumes-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/consumes-array.yml.json index b2fbcd1fb2..2bc4128566 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/consumes-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/consumes-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "application/vnd.github+json", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "application/vnd.github.v3+json", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "application/vnd.github.v3.full+json", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "application/vnd.github.v3.html+json", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "application/vnd.github.v3.patch", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "application/vnd.github.v3.raw+json", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "application/vnd.github.v3.text+json", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "appxlication/vnd.github.v3.diff", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "text/plain; charset=utf-8", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/consumes.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/consumes.yml.json index 95eb18e29c..6bf045d626 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/consumes.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/consumes.yml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\n- application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "\n- application/vnd.github+json", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "\n- application/vnd.github.v3+json", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "\n- application/vnd.github.v3.full+json", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "\n- application/vnd.github.v3.html+json", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "\n- application/vnd.github.v3.patch", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "\n- application/vnd.github.v3.raw+json", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "\n- application/vnd.github.v3.text+json", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "\n- appxlication/vnd.github.v3.diff", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "\n- text/plain; charset=utf-8", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/encodes-unquoted.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/encodes-unquoted.yml.json index 281f6e621d..c8af823100 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/encodes-unquoted.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/encodes-unquoted.yml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New info", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New info", "filterText": "info:\n title: $1\n version: $2", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "tags:\n -\n name: $1", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "basePath", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "basePath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11basePath", "filterText": "basePath: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "consumes:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "definitions:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "host", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "host", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11host", "filterText": "host: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10info", "filterText": "info:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "paths", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "paths", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10paths", "filterText": "paths:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "produces:\n - ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "responses:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "schemes:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "securityDefinitions", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "securityDefinitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securityDefinitions", "filterText": "securityDefinitions:\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/encodes.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/encodes.yml.json index 281f6e621d..c8af823100 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/encodes.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/encodes.yml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New info", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New info", "filterText": "info:\n title: $1\n version: $2", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "tags:\n -\n name: $1", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "basePath", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "basePath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11basePath", "filterText": "basePath: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "consumes", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "consumes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11consumes", "filterText": "consumes:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "definitions:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "host", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "host", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11host", "filterText": "host: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10info", "filterText": "info:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "paths", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "paths", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10paths", "filterText": "paths:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "produces", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "produces", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11produces", "filterText": "produces:\n - ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "responses:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "schemes", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "schemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemes", "filterText": "schemes:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "securityDefinitions", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "securityDefinitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securityDefinitions", "filterText": "securityDefinitions:\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/oas2-with-externaldocs.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/oas2-with-externaldocs.yml.json index 0b82bd79a2..5f94658eeb 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/oas2-with-externaldocs.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/oas2-with-externaldocs.yml.json @@ -1,11 +1,17 @@ [ { "label": "New info", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New info", "filterText": "info:\n title: $1\n version: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10info", "filterText": "info:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/oas2.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/oas2.yml.json index 552c12f06b..ba2f2efcac 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/oas2.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/oas2.yml.json @@ -1,11 +1,17 @@ [ { "label": "swagger: \"2.0\"", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Define a openapi 2.0 file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11swagger: \"2.0\"", "filterText": "swagger: \"2.0\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/produces-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/produces-array.yml.json index b2fbcd1fb2..2bc4128566 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/produces-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/produces-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "application/vnd.github+json", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "application/vnd.github.v3+json", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "application/vnd.github.v3.full+json", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "application/vnd.github.v3.html+json", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "application/vnd.github.v3.patch", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "application/vnd.github.v3.raw+json", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "application/vnd.github.v3.text+json", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "appxlication/vnd.github.v3.diff", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "text/plain; charset=utf-8", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/produces.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/produces.yml.json index 95eb18e29c..6bf045d626 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/produces.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/produces.yml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\n- application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "\n- application/vnd.github+json", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "\n- application/vnd.github.v3+json", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "\n- application/vnd.github.v3.full+json", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "\n- application/vnd.github.v3.html+json", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "\n- application/vnd.github.v3.patch", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "\n- application/vnd.github.v3.raw+json", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "\n- application/vnd.github.v3.text+json", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "\n- appxlication/vnd.github.v3.diff", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "\n- text/plain; charset=utf-8", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/schemes-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/schemes-array.yml.json index 60f10c975c..4173b0435d 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/schemes-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/schemes-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "http", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "https", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "https", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11https", "filterText": "https", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "ws", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "wss", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "wss", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wss", "filterText": "wss", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/schemes.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/schemes.yml.json index 4fefc5f844..381770e344 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/schemes.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/schemes.yml.json @@ -1,11 +1,17 @@ [ { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11http", "filterText": "\n- http", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "https", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "https", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11https", "filterText": "\n- https", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "ws", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ws", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ws", "filterText": "\n- ws", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "wss", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "wss", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wss", "filterText": "\n- wss", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array-name-not-oauth.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array-name-not-oauth.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array-name-not-oauth.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array-name-not-oauth.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array-name.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array-name.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array-name.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array-name.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array.yml.json index ea1acbea97..01e9151a7a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-name-not-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-name-not-array.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-name-not-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security-name-not-array.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/security.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/tags-array.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/tags-array.yml.json index d295c66bf8..31f6bd8972 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/tags-array.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/tags-array.yml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/tags.yml.json b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/tags.yml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/tags.yml.json +++ b/als-suggestions/shared/src/test/resources/test/oas20/by-directory/yaml/top-level/expected/tags.yml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/map-with-brothers/expected/map-with-brothers.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/map-with-brothers/expected/map-with-brothers.json.json index 5818e1484e..0f486de045 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/map-with-brothers/expected/map-with-brothers.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/map-with-brothers/expected/map-with-brothers.json.json @@ -1,11 +1,17 @@ [ { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "\"delete\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "\"delete\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New full get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full get", "filterText": "\"get\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New full head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full head", "filterText": "\"head\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New full options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full options", "filterText": "\"options\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "New full patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full patch", "filterText": "\"patch\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "New full put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full put", "filterText": "\"put\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "New full trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full trace", "filterText": "\"trace\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "New get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New get", "filterText": "\"get\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "New head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New head", "filterText": "\"head\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "New options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New options", "filterText": "\"options\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "New patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New patch", "filterText": "\"patch\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "New put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New put", "filterText": "\"put\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "\"servers\": [\n {\n \"url\": \"$1\"\n }\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "New trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New trace", "filterText": "\"trace\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "\"delete\": {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "\"get\": {\n \"$1\"\n}", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "\"head\": {\n \"$1\"\n}", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "\"options\": {\n \"$1\"\n}", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "\"patch\": {\n \"$1\"\n}", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "\"put\": {\n \"$1\"\n}", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "\"servers\": [\n \"$1\"\n]", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "trace", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trace", "filterText": "\"trace\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/path-json/expected/api.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/path-json/expected/api.json.json index 09783b1a2b..8e330c842b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/path-json/expected/api.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/path-json/expected/api.json.json @@ -1,11 +1,17 @@ [ { "label": "Error", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "external.yaml#/parameters/schemas/Error", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Error", "filterText": "\"external.yaml#/parameters/schemas/Error\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "Pet", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "external.yaml#/parameters/schemas/Pet", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Pet", "filterText": "\"external.yaml#/parameters/schemas/Pet\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/path-suggestion/expected/api.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/path-suggestion/expected/api.json.json index 568884106c..ccf6c30244 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/path-suggestion/expected/api.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/custom/path-suggestion/expected/api.json.json @@ -1,11 +1,17 @@ [ { "label": "/expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11/expected/", "filterText": "\"/expected/\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/callbacks/expected/callbacks-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/callbacks/expected/callbacks-ref.json.json index fe906e021a..5ebba113e1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/callbacks/expected/callbacks-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/callbacks/expected/callbacks-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/components/callbacks/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/callbacks/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/callbacks/test", "filterText": "\"#/components/callbacks/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "callbacks.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11callbacks.json", "filterText": "\"callbacks.json\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/callbacks/expected/callbacks.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/callbacks/expected/callbacks.json.json index 56f3f16b33..4681d0d8b4 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/callbacks/expected/callbacks.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/callbacks/expected/callbacks.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "\"delete\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "\"delete\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New full get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full get", "filterText": "\"get\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New full head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full head", "filterText": "\"head\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "New full options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full options", "filterText": "\"options\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "New full patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full patch", "filterText": "\"patch\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "New full post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full post", "filterText": "\"post\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "New full put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full put", "filterText": "\"put\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "New full trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full trace", "filterText": "\"trace\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "New get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New get", "filterText": "\"get\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "New head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New head", "filterText": "\"head\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "New options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New options", "filterText": "\"options\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "New patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New patch", "filterText": "\"patch\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "New post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New post", "filterText": "\"post\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "New put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New put", "filterText": "\"put\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "\"servers\": [\n {\n \"url\": \"$1\"\n }\n]", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "New trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New trace", "filterText": "\"trace\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "\"delete\": {\n \"$1\"\n}", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "\"get\": {\n \"$1\"\n}", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "\"head\": {\n \"$1\"\n}", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "\"options\": {\n \"$1\"\n}", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "\"patch\": {\n \"$1\"\n}", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "\"post\": {\n \"$1\"\n}", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "\"put\": {\n \"$1\"\n}", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "\"servers\": [\n \"$1\"\n]", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "trace", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trace", "filterText": "\"trace\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/examples/expected/examples-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/examples/expected/examples-ref.json.json index 55c4d0d85a..5fbf49c0d9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/examples/expected/examples-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/examples/expected/examples-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/components/examples/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/examples/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/examples/test", "filterText": "\"#/components/examples/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "examples.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples.json", "filterText": "\"examples.json\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/examples/expected/examples.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/examples/expected/examples.json.json index feb899be40..315f9d67a7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/examples/expected/examples.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/examples/expected/examples.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "externalValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "externalValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalValue", "filterText": "\"externalValue\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "mediaType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mediaType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mediaType", "filterText": "\"mediaType\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "value", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "value", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11value", "filterText": "\"value\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/expected/components.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/expected/components.json.json index 2959618066..be2ec39059 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/expected/components.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/expected/components.json.json @@ -1,11 +1,17 @@ [ { "label": "callbacks", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "callbacks", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11callbacks", "filterText": "\"callbacks\": {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "\"headers\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "links", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "links", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11links", "filterText": "\"links\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "requestBodies", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "requestBodies", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11requestBodies", "filterText": "\"requestBodies\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "\"responses\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "schemas", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemas", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemas", "filterText": "\"schemas\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "\"securitySchemes\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/headers/expected/headers-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/headers/expected/headers-ref.json.json index 22dab5b8c3..ce17d18d4c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/headers/expected/headers-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/headers/expected/headers-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/components/headers/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/headers/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/headers/test", "filterText": "\"#/components/headers/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "headers.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers.json", "filterText": "\"headers.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/headers/expected/headers.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/headers/expected/headers.json.json index c50c0b5a56..3563861709 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/headers/expected/headers.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/headers/expected/headers.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "\"allowEmptyValue\": $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "\"allowReserved\": $1", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "\"content\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "\"explode\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "\"style\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/links/expected/links-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/links/expected/links-ref.json.json index a92f922194..f77965847f 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/links/expected/links-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/links/expected/links-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/components/links/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/links/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/links/test", "filterText": "\"#/components/links/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "links.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11links.json", "filterText": "\"links.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/links/expected/links.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/links/expected/links.json.json index 0947197198..f21fcef9f3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/links/expected/links.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/links/expected/links.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New server", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New server", "filterText": "\"server\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "\"operationId\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "operationRef", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationRef", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationRef", "filterText": "\"operationRef\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "requestBody", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "requestBody", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11requestBody", "filterText": "\"requestBody\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "server", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11server", "filterText": "\"server\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/cookie-style.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/cookie-style.json.json index 8389f9c685..385d6775f9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/cookie-style.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/cookie-style.json.json @@ -1,11 +1,17 @@ [ { "label": "form", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "form", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10form", "filterText": "\"form\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/header-style.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/header-style.json.json index 58b67f8900..26064d068d 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/header-style.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/header-style.json.json @@ -1,11 +1,17 @@ [ { "label": "simple", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "simple", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10simple", "filterText": "\"simple\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameter-name-after-declaration.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameter-name-after-declaration.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameter-name-after-declaration.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameter-name-after-declaration.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameter-name.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameter-name.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameter-name.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameter-name.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameters-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameters-ref.json.json index 7f8aa0db2b..6454c32f27 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameters-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameters-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/components/parameters/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/parameters/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/parameters/test", "filterText": "\"#/components/parameters/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "cookie-style.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11cookie-style.json", "filterText": "\"cookie-style.json\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "header-style.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11header-style.json", "filterText": "\"header-style.json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "parameter-name-after-declaration.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-name-after-declaration.json", "filterText": "\"parameter-name-after-declaration.json\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "parameter-name.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-name.json", "filterText": "\"parameter-name.json\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "parameters.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters.json", "filterText": "\"parameters.json\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "path-style.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11path-style.json", "filterText": "\"path-style.json\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "query-style.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11query-style.json", "filterText": "\"query-style.json\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "style.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style.json", "filterText": "\"style.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameters.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameters.json.json index bebe6047fa..9db64c2b83 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameters.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/parameters.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "\"allowEmptyValue\": $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "\"allowReserved\": $1", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "\"content\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "\"explode\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "\"in\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "\"style\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/path-style.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/path-style.json.json index 09803ab90a..a66669a64f 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/path-style.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/path-style.json.json @@ -1,11 +1,17 @@ [ { "label": "label", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "label", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10label", "filterText": "\"label\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "matrix", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "matrix", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10matrix", "filterText": "\"matrix\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "simple", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "simple", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10simple", "filterText": "\"simple\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/query-style.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/query-style.json.json index 5ccbd887b8..dc40678ae6 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/query-style.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/query-style.json.json @@ -1,11 +1,17 @@ [ { "label": "deepObject", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "deepObject", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10deepObject", "filterText": "\"deepObject\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "form", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "form", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10form", "filterText": "\"form\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "pipeDelimited", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pipeDelimited", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10pipeDelimited", "filterText": "\"pipeDelimited\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "spaceDelimited", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "spaceDelimited", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10spaceDelimited", "filterText": "\"spaceDelimited\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/style.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/style.json.json index 0380a6b268..8a1a05097f 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/style.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/parameters/expected/style.json.json @@ -1,11 +1,17 @@ [ { "label": "deepObject", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "deepObject", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10deepObject", "filterText": "\"deepObject\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "form", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "form", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10form", "filterText": "\"form\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "label", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "label", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10label", "filterText": "\"label\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "matrix", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "matrix", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10matrix", "filterText": "\"matrix\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "pipeDelimited", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pipeDelimited", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10pipeDelimited", "filterText": "\"pipeDelimited\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "simple", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "simple", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10simple", "filterText": "\"simple\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "spaceDelimited", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "spaceDelimited", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10spaceDelimited", "filterText": "\"spaceDelimited\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/request-body/expected/request-body-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/request-body/expected/request-body-ref.json.json index cd04d4dd0c..21821a13a9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/request-body/expected/request-body-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/request-body/expected/request-body-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/components/requestBodies/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/requestBodies/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/requestBodies/test", "filterText": "\"#/components/requestBodies/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "request-body.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11request-body.json", "filterText": "\"request-body.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/request-body/expected/request-body.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/request-body/expected/request-body.json.json index ce43677ea1..f17565cb9e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/request-body/expected/request-body.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/request-body/expected/request-body.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "\"content\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/response-name-after-declaration.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/response-name-after-declaration.json.json index 6c07552c43..e12cf9f103 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/response-name-after-declaration.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/response-name-after-declaration.json.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "\"100\": {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "\"101\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "\"102\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "1XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "1XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "111XX", "filterText": "\"1XX\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "\"200\": {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "\"201\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "\"202\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "\"203\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "\"204\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "\"205\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "\"206\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "\"207\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "\"208\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "\"226\": {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "2XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "2XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "112XX", "filterText": "\"2XX\": {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "\"300\": {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "\"301\": {\n \"$1\"\n}", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "\"302\": {\n \"$1\"\n}", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "\"303\": {\n \"$1\"\n}", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "\"304\": {\n \"$1\"\n}", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "\"305\": {\n \"$1\"\n}", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "\"306\": {\n \"$1\"\n}", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "\"307\": {\n \"$1\"\n}", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "\"308\": {\n \"$1\"\n}", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "3XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "3XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "113XX", "filterText": "\"3XX\": {\n \"$1\"\n}", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "\"400\": {\n \"$1\"\n}", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "\"401\": {\n \"$1\"\n}", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "\"402\": {\n \"$1\"\n}", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "\"403\": {\n \"$1\"\n}", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "\"404\": {\n \"$1\"\n}", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "\"405\": {\n \"$1\"\n}", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "\"406\": {\n \"$1\"\n}", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "\"407\": {\n \"$1\"\n}", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "\"408\": {\n \"$1\"\n}", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "\"409\": {\n \"$1\"\n}", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "\"410\": {\n \"$1\"\n}", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "\"411\": {\n \"$1\"\n}", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "\"412\": {\n \"$1\"\n}", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "\"413\": {\n \"$1\"\n}", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "\"414\": {\n \"$1\"\n}", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "\"415\": {\n \"$1\"\n}", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "\"416\": {\n \"$1\"\n}", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "\"417\": {\n \"$1\"\n}", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "\"418\": {\n \"$1\"\n}", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "\"420\": {\n \"$1\"\n}", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "\"422\": {\n \"$1\"\n}", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "\"423\": {\n \"$1\"\n}", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "\"424\": {\n \"$1\"\n}", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "\"425\": {\n \"$1\"\n}", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "\"426\": {\n \"$1\"\n}", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "\"428\": {\n \"$1\"\n}", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "\"429\": {\n \"$1\"\n}", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "\"431\": {\n \"$1\"\n}", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "\"444\": {\n \"$1\"\n}", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "\"449\": {\n \"$1\"\n}", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "\"450\": {\n \"$1\"\n}", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "\"451\": {\n \"$1\"\n}", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "\"499\": {\n \"$1\"\n}", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "4XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "4XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "114XX", "filterText": "\"4XX\": {\n \"$1\"\n}", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "\"500\": {\n \"$1\"\n}", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "\"501\": {\n \"$1\"\n}", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "\"502\": {\n \"$1\"\n}", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "\"503\": {\n \"$1\"\n}", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "\"504\": {\n \"$1\"\n}", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "\"505\": {\n \"$1\"\n}", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "\"506\": {\n \"$1\"\n}", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "\"507\": {\n \"$1\"\n}", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "\"508\": {\n \"$1\"\n}", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "\"509\": {\n \"$1\"\n}", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "\"510\": {\n \"$1\"\n}", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "\"511\": {\n \"$1\"\n}", "insertText": null, @@ -2131,11 +2557,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "\"598\": {\n \"$1\"\n}", "insertText": null, @@ -2161,11 +2593,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "\"599\": {\n \"$1\"\n}", "insertText": null, @@ -2191,11 +2629,17 @@ }, { "label": "5XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "5XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "115XX", "filterText": "\"5XX\": {\n \"$1\"\n}", "insertText": null, @@ -2221,11 +2665,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/response-name.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/response-name.json.json index eb5912ff58..b10f64ac81 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/response-name.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/response-name.json.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "\"100\": {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "\"101\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "\"102\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "1XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "1XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "111XX", "filterText": "\"1XX\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "\"200\": {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "\"201\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "\"202\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "\"203\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "\"204\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "\"205\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "\"206\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "\"207\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "\"208\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "\"226\": {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "2XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "2XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "112XX", "filterText": "\"2XX\": {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "\"300\": {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "\"301\": {\n \"$1\"\n}", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "\"302\": {\n \"$1\"\n}", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "\"303\": {\n \"$1\"\n}", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "\"304\": {\n \"$1\"\n}", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "\"305\": {\n \"$1\"\n}", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "\"306\": {\n \"$1\"\n}", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "\"307\": {\n \"$1\"\n}", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "\"308\": {\n \"$1\"\n}", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "3XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "3XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "113XX", "filterText": "\"3XX\": {\n \"$1\"\n}", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "\"400\": {\n \"$1\"\n}", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "\"401\": {\n \"$1\"\n}", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "\"402\": {\n \"$1\"\n}", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "\"403\": {\n \"$1\"\n}", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "\"404\": {\n \"$1\"\n}", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "\"405\": {\n \"$1\"\n}", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "\"406\": {\n \"$1\"\n}", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "\"407\": {\n \"$1\"\n}", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "\"408\": {\n \"$1\"\n}", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "\"409\": {\n \"$1\"\n}", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "\"410\": {\n \"$1\"\n}", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "\"411\": {\n \"$1\"\n}", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "\"412\": {\n \"$1\"\n}", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "\"413\": {\n \"$1\"\n}", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "\"414\": {\n \"$1\"\n}", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "\"415\": {\n \"$1\"\n}", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "\"416\": {\n \"$1\"\n}", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "\"417\": {\n \"$1\"\n}", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "\"418\": {\n \"$1\"\n}", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "\"420\": {\n \"$1\"\n}", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "\"422\": {\n \"$1\"\n}", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "\"423\": {\n \"$1\"\n}", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "\"424\": {\n \"$1\"\n}", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "\"425\": {\n \"$1\"\n}", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "\"426\": {\n \"$1\"\n}", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "\"428\": {\n \"$1\"\n}", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "\"429\": {\n \"$1\"\n}", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "\"431\": {\n \"$1\"\n}", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "\"444\": {\n \"$1\"\n}", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "\"449\": {\n \"$1\"\n}", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "\"450\": {\n \"$1\"\n}", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "\"451\": {\n \"$1\"\n}", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "\"499\": {\n \"$1\"\n}", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "4XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "4XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "114XX", "filterText": "\"4XX\": {\n \"$1\"\n}", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "\"500\": {\n \"$1\"\n}", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "\"501\": {\n \"$1\"\n}", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "\"502\": {\n \"$1\"\n}", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "\"503\": {\n \"$1\"\n}", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "\"504\": {\n \"$1\"\n}", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "\"505\": {\n \"$1\"\n}", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "\"506\": {\n \"$1\"\n}", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "\"507\": {\n \"$1\"\n}", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "\"508\": {\n \"$1\"\n}", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "\"509\": {\n \"$1\"\n}", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "\"510\": {\n \"$1\"\n}", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "\"511\": {\n \"$1\"\n}", "insertText": null, @@ -2131,11 +2557,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "\"598\": {\n \"$1\"\n}", "insertText": null, @@ -2161,11 +2593,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "\"599\": {\n \"$1\"\n}", "insertText": null, @@ -2191,11 +2629,17 @@ }, { "label": "5XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "5XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "115XX", "filterText": "\"5XX\": {\n \"$1\"\n}", "insertText": null, @@ -2221,11 +2665,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/responses-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/responses-ref.json.json index 53f543e833..86a9b34730 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/responses-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/responses-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/components/responses/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/responses/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/responses/test", "filterText": "\"#/components/responses/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "response-name-after-declaration.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-name-after-declaration.json", "filterText": "\"response-name-after-declaration.json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "response-name.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-name.json", "filterText": "\"response-name.json\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "responses.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses.json", "filterText": "\"responses.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/responses.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/responses.json.json index dc35ba13f6..ba6e38372d 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/responses.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/responses/expected/responses.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "\"content\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "\"headers\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "links", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "links", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11links", "filterText": "\"links\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/all-of-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/all-of-schema.json.json index 6c2ce044d1..1e83384b14 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/all-of-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/all-of-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "\"discriminator\": {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "\"nullable\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/any-of-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/any-of-schema.json.json index ddf8bf4270..1fb1d6d4c0 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/any-of-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/any-of-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "\"discriminator\": {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "\"nullable\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-body.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-body.json.json index 328db603d9..c06869a8df 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-body.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-body.json.json @@ -1,11 +1,17 @@ [ { "label": "mapping", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapping", "filterText": "\"mapping\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "propertyName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11propertyName", "filterText": "\"propertyName\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-mapping-value.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-mapping-value.json.json index fc926490ce..3f4a2d27aa 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-mapping-value.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-mapping-value.json.json @@ -1,11 +1,17 @@ [ { "label": "#/components/schemas/Cat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#/components/schemas/Cat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/schemas/Cat", "filterText": "\"#/components/schemas/Cat\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "#/components/schemas/Dog", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#/components/schemas/Dog", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/schemas/Dog", "filterText": "\"#/components/schemas/Dog\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-mapping.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-mapping.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-mapping.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/discriminator-mapping.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/one-of-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/one-of-schema.json.json index 9a1e0571ce..52bf5fbb73 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/one-of-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/discriminator/expected/one-of-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "\"discriminator\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "\"nullable\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/array-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/array-schema.json.json index 75aad18be2..84f6168b59 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/array-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/array-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "\"maxItems\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "\"minItems\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "\"nullable\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "\"uniqueItems\": $1", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/boolean-format.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/boolean-format.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/boolean-format.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/boolean-format.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/external-docs-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/external-docs-schema.json.json index 900cb49db4..e2bf380751 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/external-docs-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/external-docs-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "\"url\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/integer-format.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/integer-format.json.json index 5a972c5e3d..fbcc89e91e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/integer-format.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/integer-format.json.json @@ -1,11 +1,17 @@ [ { "label": "int32", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int32", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int32", "filterText": "\"int32\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "int64", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int64", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int64", "filterText": "\"int64\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/items-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/items-schema.json.json index 981653c3ae..006d004bc6 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/items-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/items-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "\"nullable\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/number-format.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/number-format.json.json index f15dd82c41..9195a6a4c3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/number-format.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/number-format.json.json @@ -1,11 +1,17 @@ [ { "label": "double", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "double", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11double", "filterText": "\"double\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "float", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "float", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11float", "filterText": "\"float\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "int32", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int32", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int32", "filterText": "\"int32\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "int64", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int64", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int64", "filterText": "\"int64\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/number-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/number-schema.json.json index 129ab22be8..51f76bbbb9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/number-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/number-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "\"exclusiveMaximum\": $1", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "\"exclusiveMinimum\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "\"maximum\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "\"minimum\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "\"multipleOf\": $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "\"nullable\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": {\n \"$1\"\n}", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/object-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/object-schema.json.json index 93b4b70c2b..17ed0d2daf 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/object-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/object-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "additionalProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalProperties", "filterText": "\"additionalProperties\": $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxProperties", "filterText": "\"maxProperties\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "minProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minProperties", "filterText": "\"minProperties\": $1", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "\"nullable\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/properties-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/properties-schema.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/properties-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/properties-schema.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/property-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/property-schema.json.json index 942b64651a..69b933ee9e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/property-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/property-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "\"nullable\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/required-properties-name-existing.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/required-properties-name-existing.json.json index 22318873d3..0432e93a69 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/required-properties-name-existing.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/required-properties-name-existing.json.json @@ -1,11 +1,17 @@ [ { "label": "anotherPro", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anotherPro", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anotherPro", "filterText": "\"anotherPro\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "\"name\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/required-properties-name.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/required-properties-name.json.json index 75c8a0ba9a..12feb6c1be 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/required-properties-name.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/required-properties-name.json.json @@ -1,11 +1,17 @@ [ { "label": "anotherPro", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anotherPro", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anotherPro", "filterText": "\"anotherPro\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "\"name\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "tag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tag", "filterText": "\"tag\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-name-after-declaration.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-name-after-declaration.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-name-after-declaration.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-name-after-declaration.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-name.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-name.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-name.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-name.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav-two.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav-two.json.json index a293ee1c72..f6355c1ce4 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav-two.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav-two.json.json @@ -1,11 +1,17 @@ [ { "label": "Adef", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jsonschema.json#/definitions/Adef", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Adef", "filterText": "\"jsonschema.json#/definitions/Adef\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav-withoutbar.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav-withoutbar.json.json index d60ad32e8e..4b490780ca 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav-withoutbar.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav-withoutbar.json.json @@ -1,11 +1,17 @@ [ { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jsonschema.json#/definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"jsonschema.json#/definitions\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav.json.json index 652d60dec7..83d05b53f1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-path-nav.json.json @@ -1,11 +1,17 @@ [ { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jsonschema.json#/definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "\"jsonschema.json#/definitions\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-comment.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-comment.json.json index ca944556eb..46d4fb4301 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-comment.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-comment.json.json @@ -1,11 +1,17 @@ [ { "label": "#/components/schemas/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/schemas/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/schemas/a", "filterText": "\"#/components/schemas/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-separator-two.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-separator-two.json.json index 5df061d7e1..8183071e59 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-separator-two.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-separator-two.json.json @@ -1,11 +1,17 @@ [ { "label": "schemas/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/schemas/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemas/a", "filterText": "\"#/components/schemas/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-separator.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-separator.json.json index d085352b2b..ed2ad8f3b1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-separator.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schema-ref-separator.json.json @@ -1,11 +1,17 @@ [ { "label": "components/schemas/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/schemas/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11components/schemas/a", "filterText": "\"#/components/schemas/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schemas-ref.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schemas-ref.json.json index e6e899c8be..41a4871803 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schemas-ref.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schemas-ref.json.json @@ -1,11 +1,17 @@ [ { "label": "#/components/schemas/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/schemas/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/schemas/test", "filterText": "\"#/components/schemas/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array-schema.json", "filterText": "\"array-schema.json\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean-format.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean-format.json", "filterText": "\"boolean-format.json\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "discriminator/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator/", "filterText": "\"discriminator/\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "\"expected/\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "external-docs-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11external-docs-schema.json", "filterText": "\"external-docs-schema.json\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "integer-format.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer-format.json", "filterText": "\"integer-format.json\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items-schema.json", "filterText": "\"items-schema.json\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "jsonschema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jsonschema.json", "filterText": "\"jsonschema.json\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number-format.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number-format.json", "filterText": "\"number-format.json\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "number-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number-schema.json", "filterText": "\"number-schema.json\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "object-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object-schema.json", "filterText": "\"object-schema.json\"", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties-schema.json", "filterText": "\"properties-schema.json\"", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "property-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11property-schema.json", "filterText": "\"property-schema.json\"", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required-properties-name-existing.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required-properties-name-existing.json", "filterText": "\"required-properties-name-existing.json\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required-properties-name.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required-properties-name.json", "filterText": "\"required-properties-name.json\"", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "schema-name-after-declaration.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-name-after-declaration.json", "filterText": "\"schema-name-after-declaration.json\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "schema-name.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-name.json", "filterText": "\"schema-name.json\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "schema-path-nav-two.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav-two.json", "filterText": "\"schema-path-nav-two.json\"", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "schema-path-nav-withoutbar.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav-withoutbar.json", "filterText": "\"schema-path-nav-withoutbar.json\"", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "schema-path-nav.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav.json", "filterText": "\"schema-path-nav.json\"", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "schema-ref-comment.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-comment.json", "filterText": "\"schema-ref-comment.json\"", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "schema-ref-separator-two.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-separator-two.json", "filterText": "\"schema-ref-separator-two.json\"", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "schema-ref-separator.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-separator.json", "filterText": "\"schema-ref-separator.json\"", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "schemas.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemas.json", "filterText": "\"schemas.json\"", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "string-format.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string-format.json", "filterText": "\"string-format.json\"", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "string-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string-schema.json", "filterText": "\"string-schema.json\"", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "types-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types-schema.json", "filterText": "\"types-schema.json\"", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "xml-object-schema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml-object-schema.json", "filterText": "\"xml-object-schema.json\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schemas.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schemas.json.json index ad388f7b42..d6155483fe 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schemas.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/schemas.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "\"items\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "\"nullable\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "\"properties\": {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/string-format.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/string-format.json.json index c32cfa9e1b..56f1ee7d35 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/string-format.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/string-format.json.json @@ -1,11 +1,17 @@ [ { "label": "binary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "binary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11binary", "filterText": "\"binary\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "byte", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "byte", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11byte", "filterText": "\"byte\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "date", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date", "filterText": "\"date\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-time", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-time", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-time", "filterText": "\"date-time\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11password", "filterText": "\"password\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/string-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/string-schema.json.json index 66550837b4..41d9498da6 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/string-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/string-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "\"allOf\": [\n \"$1\"\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "\"anyOf\": [\n \"$1\"\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "\"enum\": [\n \"$1\"\n]", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "\"format\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "\"maxLength\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "\"minLength\": \"$1\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "\"not\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "\"nullable\": $1", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "\"oneOf\": {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "\"pattern\": \"$1\"", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "\"readOnly\": $1", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "\"required\": $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "\"writeOnly\": $1", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "\"xml\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/types-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/types-schema.json.json index 0ece331f69..66f9d920d8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/types-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/types-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "\"array\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "\"boolean\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10file", "filterText": "\"file\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "\"integer\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "\"number\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "\"object\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "\"string\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/xml-object-schema.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/xml-object-schema.json.json index 30f70d56da..97c44caa96 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/xml-object-schema.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/schemas/expected/xml-object-schema.json.json @@ -1,11 +1,17 @@ [ { "label": "attribute", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "attribute", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11attribute", "filterText": "\"attribute\": $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "namespace", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "namespace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11namespace", "filterText": "\"namespace\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "prefix", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "prefix", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prefix", "filterText": "\"prefix\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "wrapped", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "wrapped", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wrapped", "filterText": "\"wrapped\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-scheme-name-after-declaration.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-scheme-name-after-declaration.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-scheme-name-after-declaration.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-scheme-name-after-declaration.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-scheme-name.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-scheme-name.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-scheme-name.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-scheme-name.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-schemes.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-schemes.json.json index e346046bd1..857c310d02 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-schemes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/expected/security-schemes.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "\"type\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/expected/flows.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/expected/flows.json.json index d28591843e..273fc2c167 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/expected/flows.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/expected/flows.json.json @@ -1,11 +1,17 @@ [ { "label": "authorizationCode", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationCode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10authorizationCode", "filterText": "\"authorizationCode\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "clientCredentials", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "clientCredentials", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10clientCredentials", "filterText": "\"clientCredentials\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "implicit", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "implicit", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10implicit", "filterText": "\"implicit\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10password", "filterText": "\"password\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-authorizationCode.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-authorizationCode.json.json index a4a9fd8fda..13548a6be1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-authorizationCode.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-authorizationCode.json.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "\"authorizationUrl\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "refreshUrl", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "refreshUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11refreshUrl", "filterText": "\"refreshUrl\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "\"scopes\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "\"tokenUrl\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-clientCredentials.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-clientCredentials.json.json index a4a9fd8fda..13548a6be1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-clientCredentials.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-clientCredentials.json.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "\"authorizationUrl\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "refreshUrl", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "refreshUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11refreshUrl", "filterText": "\"refreshUrl\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "\"scopes\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "\"tokenUrl\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-implicit.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-implicit.json.json index a4a9fd8fda..13548a6be1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-implicit.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-implicit.json.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "\"authorizationUrl\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "refreshUrl", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "refreshUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11refreshUrl", "filterText": "\"refreshUrl\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "\"scopes\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "\"tokenUrl\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-password.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-password.json.json index a4a9fd8fda..13548a6be1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-password.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-password.json.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "\"authorizationUrl\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "refreshUrl", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "refreshUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11refreshUrl", "filterText": "\"refreshUrl\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "\"scopes\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "\"tokenUrl\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/scopes/expected/scopes.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/scopes/expected/scopes.json.json index db199402ea..166fde3159 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/scopes/expected/scopes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/flows/flows-object/scopes/expected/scopes.json.json @@ -1,11 +1,17 @@ [ { "label": "a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11a", "filterText": "\"a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/apiKey-facets.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/apiKey-facets.json.json index 1939fc1b05..715be9531a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/apiKey-facets.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/apiKey-facets.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "\"in\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/apiKey-in-facet.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/apiKey-in-facet.json.json index ac2d873b2d..69c5e55e05 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/apiKey-in-facet.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/apiKey-in-facet.json.json @@ -1,11 +1,17 @@ [ { "label": "cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10cookie", "filterText": "\"cookie\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "header", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "header", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10header", "filterText": "\"header\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "query", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "query", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10query", "filterText": "\"query\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/http-facets.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/http-facets.json.json index 1cbc40a6af..ad852c7830 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/http-facets.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/http-facets.json.json @@ -1,11 +1,17 @@ [ { "label": "bearerFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bearerFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bearerFormat", "filterText": "\"bearerFormat\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "scheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "scheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10scheme", "filterText": "\"scheme\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/oauth2-facets.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/oauth2-facets.json.json index a00adcf667..ce7147991b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/oauth2-facets.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/oauth2-facets.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "flows", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "flows", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10flows", "filterText": "\"flows\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/openIdConnect-facets.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/openIdConnect-facets.json.json index a2fd9bcae9..b3b3a59dbc 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/openIdConnect-facets.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/openIdConnect-facets.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "openIdConnectUrl", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "openIdConnectUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10openIdConnectUrl", "filterText": "\"openIdConnectUrl\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/type.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/type.json.json index fe8ca05e77..27c181d2b1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/type.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/components/securitySchemes/type/expected/type.json.json @@ -1,11 +1,17 @@ [ { "label": "apiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "apiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10apiKey", "filterText": "\"apiKey\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10http", "filterText": "\"http\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10oauth2", "filterText": "\"oauth2\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "openIdConnect", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "openIdConnect", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10openIdConnect", "filterText": "\"openIdConnect\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-example.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-example.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-example.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-obj-example-arr.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-obj-example-arr.json.json index 9411ba0c08..f6144fec77 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-obj-example-arr.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-obj-example-arr.json.json @@ -1,11 +1,17 @@ [ { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11p1", "filterText": "\"p1\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-obj-example.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-obj-example.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-obj-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/array-obj-example.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/empty-example.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/empty-example.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/empty-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/empty-example.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/object-example.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/object-example.json.json index 5d109c4da5..92ddb8cc46 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/object-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/object-example.json.json @@ -1,11 +1,17 @@ [ { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11p1", "filterText": "\"p1\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/string-example.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/string-example.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/string-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/examples-payload/in-schema/expected/string-example.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/expected/root.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/expected/root.json.json index 6972165ebb..21f8396215 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/expected/root.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/expected/root.json.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "\"externalDocs\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New info", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New info", "filterText": "\"info\": {\n \"title\": \"$1\",\n \"version\": \"$2\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "\"servers\": [\n {\n \"url\": \"$1\"\n }\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "\"tags\": [\n {\n \"name\": \"$1\"\n }\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "components", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "components", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11components", "filterText": "\"components\": {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10info", "filterText": "\"info\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "paths", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "paths", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10paths", "filterText": "\"paths\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": [\n \"$1\"\n]", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "\"servers\": [\n \"$1\"\n]", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "\"tags\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/external-docs/expected/external-docs.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/external-docs/expected/external-docs.json.json index 15236f48bb..265ff73805 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/external-docs/expected/external-docs.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/external-docs/expected/external-docs.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "\"url\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/contact/expected/contact.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/contact/expected/contact.json.json index aa98ca02e5..6677327993 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/contact/expected/contact.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/contact/expected/contact.json.json @@ -1,11 +1,17 @@ [ { "label": "email", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "email", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11email", "filterText": "\"email\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11url", "filterText": "\"url\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/expected/info.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/expected/info.json.json index d42693b696..4cd7e12c6e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/expected/info.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/expected/info.json.json @@ -1,11 +1,17 @@ [ { "label": "contact", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "contact", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contact", "filterText": "\"contact\": {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "license", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "license", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11license", "filterText": "\"license\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "termsOfService", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "termsOfService", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11termsOfService", "filterText": "\"termsOfService\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "\"title\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10version", "filterText": "\"version\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/license/expected/license.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/license/expected/license.json.json index 921ddb1afb..5f0ef76b21 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/license/expected/license.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/info/license/expected/license.json.json @@ -1,11 +1,17 @@ [ { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11url", "filterText": "\"url\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/expected/paths.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/expected/paths.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/expected/paths.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/expected/paths.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/expected/path-object.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/expected/path-object.json.json index 6a0da9f7e7..f0a44afaa6 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/expected/path-object.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/expected/path-object.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "\"delete\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "\"delete\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New full get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full get", "filterText": "\"get\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New full head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full head", "filterText": "\"head\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "New full options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full options", "filterText": "\"options\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "New full patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full patch", "filterText": "\"patch\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "New full post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full post", "filterText": "\"post\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "New full put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full put", "filterText": "\"put\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "New full trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full trace", "filterText": "\"trace\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "New get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New get", "filterText": "\"get\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "New head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New head", "filterText": "\"head\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "New options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New options", "filterText": "\"options\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "New patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New patch", "filterText": "\"patch\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "New post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New post", "filterText": "\"post\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "New put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New put", "filterText": "\"put\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "\"servers\": [\n {\n \"url\": \"$1\"\n }\n]", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "New trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New trace", "filterText": "\"trace\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "\"delete\": {\n \"$1\"\n}", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "\"get\": {\n \"$1\"\n}", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "\"head\": {\n \"$1\"\n}", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "\"options\": {\n \"$1\"\n}", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "\"patch\": {\n \"$1\"\n}", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "\"post\": {\n \"$1\"\n}", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "\"put\": {\n \"$1\"\n}", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "\"servers\": [\n \"$1\"\n]", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "trace", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trace", "filterText": "\"trace\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/callbacks/expected/callback-inside.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/callbacks/expected/callback-inside.json.json index 1bf89a1c55..c60e967a9f 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/callbacks/expected/callback-inside.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/callbacks/expected/callback-inside.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "\"delete\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "\"delete\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New full get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full get", "filterText": "\"get\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New full head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full head", "filterText": "\"head\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "New full options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full options", "filterText": "\"options\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "New full patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full patch", "filterText": "\"patch\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "New full post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full post", "filterText": "\"post\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "New full put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full put", "filterText": "\"put\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "New full trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full trace", "filterText": "\"trace\": {\n \"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n }\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "New get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New get", "filterText": "\"get\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "New head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New head", "filterText": "\"head\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "New options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New options", "filterText": "\"options\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "New patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New patch", "filterText": "\"patch\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "New post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New post", "filterText": "\"post\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "New put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New put", "filterText": "\"put\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "\"servers\": [\n {\n \"url\": \"$1\"\n }\n]", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "New trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New trace", "filterText": "\"trace\": {\n \"responses\": {\n \"$1\": \"\"\n }\n}", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "\"delete\": {\n \"$1\"\n}", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "\"get\": {\n \"$1\"\n}", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "\"head\": {\n \"$1\"\n}", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "\"options\": {\n \"$1\"\n}", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "\"patch\": {\n \"$1\"\n}", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "\"post\": {\n \"$1\"\n}", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "\"put\": {\n \"$1\"\n}", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "\"servers\": [\n \"$1\"\n]", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "trace", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trace", "filterText": "\"trace\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-boolean.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-boolean.json.json index d675135571..494321fb6c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-boolean.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-boolean.json.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-string.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-string.json.json index 0bc30df81f..c8f919b8b7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-string.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-string.json.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/expected/operation.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/expected/operation.json.json index e4e22bbe8b..1d9b595c96 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/expected/operation.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/expected/operation.json.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "\"externalDocs\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "\"parameters\": [\n {\n \"in\": \"$1\",\n \"required\": \"$2\",\n \"description\": \"$3\",\n \"name\": \"$4\"\n }\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "\"responses\": {\n \"$1\": {\n \"description\": \"$2\"\n }\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "\"security\": [\n {\n \"type\": \"$1\"\n }\n]", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "\"servers\": [\n {\n \"url\": \"$1\"\n }\n]", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "callbacks", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "callbacks", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11callbacks", "filterText": "\"callbacks\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "\"operationId\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": [\n \"$1\"\n]", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "requestBody", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "requestBody", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11requestBody", "filterText": "\"requestBody\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "\"responses\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": [\n \"$1\"\n]", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "\"servers\": [\n \"$1\"\n]", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "\"summary\": \"$1\"", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "\"tags\": [\n \"$1\"\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/external-docs/expected/external-docs.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/external-docs/expected/external-docs.json.json index 900cb49db4..e2bf380751 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/external-docs/expected/external-docs.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/external-docs/expected/external-docs.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "\"url\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/parameters/content/media-type/expected/media-type.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/parameters/content/media-type/expected/media-type.json.json index 6bd2de4632..8dd7a6fe12 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/parameters/content/media-type/expected/media-type.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/parameters/content/media-type/expected/media-type.json.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New schema", "filterText": "\"schema\": {\n \"description\": \"$1\",\n \"type\": \"$2\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11encoding", "filterText": "\"encoding\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-example.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-example.json.json index 59c17daf89..570b76c8a1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-example.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-example.json.json @@ -1,11 +1,17 @@ [ { "label": "a", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11a", "filterText": "\"a\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "b", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "b", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11b", "filterText": "\"b\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type-filter.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type-filter.json.json index 4d2b7c8cf4..d9365eed67 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type-filter.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type-filter.json.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\"application/json\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "\"application/vnd.github+json\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "\"application/vnd.github.v3+json\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "\"application/vnd.github.v3.full+json\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "\"application/vnd.github.v3.html+json\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "\"application/vnd.github.v3.patch\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "\"application/vnd.github.v3.raw+json\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "\"application/vnd.github.v3.text+json\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "\"application/xml\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "\"appxlication/vnd.github.v3.diff\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type.json.json index 2365141bff..2973aa8a13 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type.json.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\"application/json\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "\"application/vnd.github+json\": \"$1\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "\"application/vnd.github.v3+json\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "\"application/vnd.github.v3.full+json\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "\"application/vnd.github.v3.html+json\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "\"application/vnd.github.v3.patch\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "\"application/vnd.github.v3.raw+json\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "\"application/vnd.github.v3.text+json\": \"$1\"", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "\"application/xml\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "\"appxlication/vnd.github.v3.diff\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "\"text/plain; charset=utf-8\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/expected/response-code.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/expected/response-code.json.json index 575f4ce239..b8019d5616 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/expected/response-code.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/expected/response-code.json.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "\"100\": {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "\"101\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "\"102\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "1XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "1XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "111XX", "filterText": "\"1XX\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "\"200\": {\n \"$1\"\n}", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "\"201\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "\"202\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "\"203\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "\"204\": {\n \"$1\"\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "\"205\": {\n \"$1\"\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "\"206\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "\"207\": {\n \"$1\"\n}", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "\"208\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "\"226\": {\n \"$1\"\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "2XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "2XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "112XX", "filterText": "\"2XX\": {\n \"$1\"\n}", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "\"300\": {\n \"$1\"\n}", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "\"301\": {\n \"$1\"\n}", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "\"302\": {\n \"$1\"\n}", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "\"303\": {\n \"$1\"\n}", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "\"304\": {\n \"$1\"\n}", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "\"305\": {\n \"$1\"\n}", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "\"306\": {\n \"$1\"\n}", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "\"307\": {\n \"$1\"\n}", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "\"308\": {\n \"$1\"\n}", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "3XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "3XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "113XX", "filterText": "\"3XX\": {\n \"$1\"\n}", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "\"400\": {\n \"$1\"\n}", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "\"401\": {\n \"$1\"\n}", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "\"402\": {\n \"$1\"\n}", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "\"403\": {\n \"$1\"\n}", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "\"404\": {\n \"$1\"\n}", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "\"405\": {\n \"$1\"\n}", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "\"406\": {\n \"$1\"\n}", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "\"407\": {\n \"$1\"\n}", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "\"408\": {\n \"$1\"\n}", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "\"409\": {\n \"$1\"\n}", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "\"410\": {\n \"$1\"\n}", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "\"411\": {\n \"$1\"\n}", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "\"412\": {\n \"$1\"\n}", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "\"413\": {\n \"$1\"\n}", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "\"414\": {\n \"$1\"\n}", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "\"415\": {\n \"$1\"\n}", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "\"416\": {\n \"$1\"\n}", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "\"417\": {\n \"$1\"\n}", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "\"418\": {\n \"$1\"\n}", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "\"420\": {\n \"$1\"\n}", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "\"422\": {\n \"$1\"\n}", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "\"423\": {\n \"$1\"\n}", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "\"424\": {\n \"$1\"\n}", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "\"425\": {\n \"$1\"\n}", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "\"426\": {\n \"$1\"\n}", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "\"428\": {\n \"$1\"\n}", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "\"429\": {\n \"$1\"\n}", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "\"431\": {\n \"$1\"\n}", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "\"444\": {\n \"$1\"\n}", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "\"449\": {\n \"$1\"\n}", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "\"450\": {\n \"$1\"\n}", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "\"451\": {\n \"$1\"\n}", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "\"499\": {\n \"$1\"\n}", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "4XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "4XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "114XX", "filterText": "\"4XX\": {\n \"$1\"\n}", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "\"500\": {\n \"$1\"\n}", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "\"501\": {\n \"$1\"\n}", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "\"502\": {\n \"$1\"\n}", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "\"503\": {\n \"$1\"\n}", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "\"504\": {\n \"$1\"\n}", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "\"505\": {\n \"$1\"\n}", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "\"506\": {\n \"$1\"\n}", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "\"507\": {\n \"$1\"\n}", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "\"508\": {\n \"$1\"\n}", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "\"509\": {\n \"$1\"\n}", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "\"510\": {\n \"$1\"\n}", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "\"511\": {\n \"$1\"\n}", "insertText": null, @@ -2131,11 +2557,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "\"598\": {\n \"$1\"\n}", "insertText": null, @@ -2161,11 +2593,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "\"599\": {\n \"$1\"\n}", "insertText": null, @@ -2191,11 +2629,17 @@ }, { "label": "5XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "5XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "115XX", "filterText": "\"5XX\": {\n \"$1\"\n}", "insertText": null, @@ -2221,11 +2665,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "\"default\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/expected/response.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/expected/response.json.json index 0060892f86..98b824f674 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/expected/response.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/expected/response.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "\"content\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "\"headers\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "links", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "links", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11links", "filterText": "\"links\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/expected/links.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/expected/links.json.json index 8eaea1e480..4a2c3a2eff 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/expected/links.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/expected/links.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New server", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New server", "filterText": "\"server\": {\n \"url\": \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "\"operationId\": \"$1\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "operationRef", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationRef", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationRef", "filterText": "\"operationRef\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "\"parameters\": {\n \"$1\"\n}", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "requestBody", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "requestBody", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11requestBody", "filterText": "\"requestBody\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "server", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11server", "filterText": "\"server\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters-request.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters-request.json.json index 155b486f13..f2ece92635 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters-request.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters-request.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "\"allowEmptyValue\": $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "\"allowReserved\": $1", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "\"content\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "\"explode\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "\"in\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "\"style\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/security/expected/security.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/security/expected/security.json.json index a0c30c11e9..8ed1403a71 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/security/expected/security.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/security/expected/security.json.json @@ -1,11 +1,17 @@ [ { "label": "internalApiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "internalApiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11internalApiKey", "filterText": "\"internalApiKey\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key-url.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key-url.json.json index 6e917cde5e..1fe9b4ea8e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key-url.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key-url.json.json @@ -1,11 +1,17 @@ [ { "label": "basePath", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "basePath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11basePath", "filterText": "\"basePath\": {\n \"$1\"\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "port", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "port", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11port", "filterText": "\"port\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "username", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "username", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11username", "filterText": "\"username\": {\n \"$1\"\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameter-binding.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameter-binding.json.json index 8c884b3efb..aedf39a7ab 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameter-binding.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameter-binding.json.json @@ -1,11 +1,17 @@ [ { "label": "cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10cookie", "filterText": "\"cookie\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "header", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "header", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10header", "filterText": "\"header\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "path", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "path", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10path", "filterText": "\"path\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "query", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "query", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10query", "filterText": "\"query\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameter-header.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameter-header.json.json index aeb1636a7a..6233e8f0e3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameter-header.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameter-header.json.json @@ -1,11 +1,17 @@ [ { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "\"allowEmptyValue\": $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "\"allowReserved\": $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "\"content\": {\n \"$1\"\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "\"explode\": $1", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "\"style\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameters.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameters.json.json index 1cc4429cfc..6dea2f4148 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameters.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/paths/path-object/parameters/expected/parameters.json.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "\"\\$ref\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "\"allowEmptyValue\": $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "\"allowReserved\": $1", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "\"content\": {\n \"$1\"\n}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "\"deprecated\": $1", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "\"example\": \"$1\"", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "\"examples\": {\n \"$1\"\n}", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "\"explode\": $1", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "\"in\": \"$1\"", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "\"required\": $1", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "\"schema\": {\n \"$1\"\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "\"style\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-apiKey.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-apiKey.json.json index 201c102299..c56d04deb0 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-apiKey.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-apiKey.json.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "\"aScheme\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-array.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-array.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-array.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-array.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-oauth2-withScopes.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-oauth2-withScopes.json.json index c3af6d7377..70caed91f8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-oauth2-withScopes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-oauth2-withScopes.json.json @@ -1,11 +1,17 @@ [ { "label": "sc", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "sc", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11sc", "filterText": "\"sc\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-oauth2-withoutScopes.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-oauth2-withoutScopes.json.json index 1e07aab02e..0fdcce1d2e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-oauth2-withoutScopes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-oauth2-withoutScopes.json.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "\"aScheme\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId-withScopes.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId-withScopes.json.json index f3c869130d..b34ac2f885 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId-withScopes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId-withScopes.json.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "\"aScheme\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId-withoutScopes.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId-withoutScopes.json.json index 5d99ecc04d..80a5d5def4 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId-withoutScopes.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId-withoutScopes.json.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "\"aScheme\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId.json.json index 5d99ecc04d..80a5d5def4 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-openId.json.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "\"aScheme\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-scheme.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-scheme.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-scheme.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security-scheme.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security.json.json index 91990dfbd3..24103585ca 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/security/expected/security.json.json @@ -1,11 +1,17 @@ [ { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "\"security\": $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/tags/expected/tags.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/tags/expected/tags.json.json index 0d9242e6f3..3a15a9f63a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/tags/expected/tags.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/open-api-document/tags/expected/tags.json.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "\"description\": \"$1\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "\"externalDocs\": {\n \"$1\"\n}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "\"name\": \"$1\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-callbacks.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-callbacks.json.json index 5ee6cb7dcb..6a78c047c5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-callbacks.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-callbacks.json.json @@ -1,11 +1,17 @@ [ { "label": "$method", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$method}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$method", "filterText": "\"{$method}\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$request.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.", "filterText": "\"{$request.}\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$response.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$response.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$response.", "filterText": "\"{$response.}\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "$statusCode", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$statusCode}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$statusCode", "filterText": "\"{$statusCode}\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "$url", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$url}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$url", "filterText": "\"{$url}\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-inside-string-not-ended.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-inside-string-not-ended.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-inside-string-not-ended.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-inside-string-not-ended.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-inside-string.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-inside-string.json.json index fbacc85219..499a34b100 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-inside-string.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-inside-string.json.json @@ -1,11 +1,17 @@ [ { "label": "$method", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "notificationServer.com?transactionId={$method}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$method", "filterText": "\"notificationServer.com?transactionId={$method}\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$request.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "notificationServer.com?transactionId={$request.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.", "filterText": "\"notificationServer.com?transactionId={$request.}\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$response.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "notificationServer.com?transactionId={$response.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$response.", "filterText": "\"notificationServer.com?transactionId={$response.}\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "$statusCode", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "notificationServer.com?transactionId={$statusCode}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$statusCode", "filterText": "\"notificationServer.com?transactionId={$statusCode}\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "$url", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "notificationServer.com?transactionId={$url}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$url", "filterText": "\"notificationServer.com?transactionId={$url}\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-no-curly.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-no-curly.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-no-curly.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-no-curly.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-request-no-close-bracket.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-request-no-close-bracket.json.json index d5212585b5..068f4c8e34 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-request-no-close-bracket.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-request-no-close-bracket.json.json @@ -1,11 +1,17 @@ [ { "label": "$request.body", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.body}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.body", "filterText": "\"{$request.body}\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$request.body#", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.body#}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.body#", "filterText": "\"{$request.body#}\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$request.header.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.header.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.header.", "filterText": "\"{$request.header.}\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "$request.path.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.path.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.path.", "filterText": "\"{$request.path.}\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "$request.query.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.query.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.query.", "filterText": "\"{$request.query.}\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-request.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-request.json.json index a952f5b253..4b1bcb429a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-request.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-only-expression-request.json.json @@ -1,11 +1,17 @@ [ { "label": "$request.body", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.body}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.body", "filterText": "\"{$request.body}\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$request.body#", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.body#}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.body#", "filterText": "\"{$request.body#}\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$request.header.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.header.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.header.", "filterText": "\"{$request.header.}\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "$request.path.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.path.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.path.", "filterText": "\"{$request.path.}\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "$request.query.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.query.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.query.", "filterText": "\"{$request.query.}\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-request-body.json.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-request-body.json.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-request-body.json.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/json/runtime-expressions/expected/runtime-request-body.json.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-BOTH.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-BOTH.json index 7354a78c70..c609f7bbbb 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-BOTH.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-BOTH.json @@ -1,11 +1,17 @@ [ { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "responses:\n $1:\n description: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "responses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-FULL.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-FULL.json index 7354a78c70..c609f7bbbb 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-FULL.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-FULL.json @@ -1,11 +1,17 @@ [ { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "responses:\n $1:\n description: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "responses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-SIMPLE.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-SIMPLE.json index 7354a78c70..c609f7bbbb 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-SIMPLE.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/no-full-option.yaml-SIMPLE.json @@ -1,11 +1,17 @@ [ { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "responses:\n $1:\n description: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "responses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-BOTH.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-BOTH.json index e274738fb9..af9b488ff9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-BOTH.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-BOTH.json @@ -1,11 +1,17 @@ [ { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "delete:\n responses:\n $1: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "delete:\n responses:\n $1:\n description: $2", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-FULL.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-FULL.json index 567cd1e66f..b63b058472 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-FULL.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-FULL.json @@ -1,11 +1,17 @@ [ { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "delete:\n responses:\n $1:\n description: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-SIMPLE.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-SIMPLE.json index b6ede12698..69204c5980 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-SIMPLE.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/templates/expected/responses.yaml-SIMPLE.json @@ -1,11 +1,17 @@ [ { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "delete:\n responses:\n $1: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/map-with-brothers/expected/map-with-brothers.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/map-with-brothers/expected/map-with-brothers.yaml.json index 1684fc4993..4f957ebca0 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/map-with-brothers/expected/map-with-brothers.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/map-with-brothers/expected/map-with-brothers.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "delete:\n responses:\n $1: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "delete:\n responses:\n $1:\n description: $2", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New full get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full get", "filterText": "get:\n responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New full head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full head", "filterText": "head:\n responses:\n $1:\n description: $2", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New full options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full options", "filterText": "options:\n responses:\n $1:\n description: $2", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "New full patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full patch", "filterText": "patch:\n responses:\n $1:\n description: $2", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "New full put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full put", "filterText": "put:\n responses:\n $1:\n description: $2", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "New full trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full trace", "filterText": "trace:\n responses:\n $1:\n description: $2", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "New get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New get", "filterText": "get:\n responses:\n $1: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "New head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New head", "filterText": "head:\n responses:\n $1: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "New options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New options", "filterText": "options:\n responses:\n $1: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "New patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New patch", "filterText": "patch:\n responses:\n $1: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "New put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New put", "filterText": "put:\n responses:\n $1: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "servers:\n -\n url: $1", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "New trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New trace", "filterText": "trace:\n responses:\n $1: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "servers:\n - ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "trace", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trace", "filterText": "trace:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/path-json/expected/api.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/path-json/expected/api.yaml.json index 2a4e995dd1..ffb6b6ea65 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/path-json/expected/api.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/path-json/expected/api.yaml.json @@ -1,11 +1,17 @@ [ { "label": "Error", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "external.yaml#/parameters/schemas/Error", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Error", "filterText": "external.yaml#/parameters/schemas/Error", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "Pet", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "external.yaml#/parameters/schemas/Pet", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Pet", "filterText": "external.yaml#/parameters/schemas/Pet", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/path-suggestion/expected/api.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/path-suggestion/expected/api.yaml.json index 1bdf6fad48..c5a8893f40 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/path-suggestion/expected/api.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/custom/path-suggestion/expected/api.yaml.json @@ -1,11 +1,17 @@ [ { "label": "/expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11/expected/", "filterText": "/expected/", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/callbacks/expected/callbacks-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/callbacks/expected/callbacks-ref.yaml.json index 09b308c24a..8a56c6fa38 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/callbacks/expected/callbacks-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/callbacks/expected/callbacks-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/callbacks/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/callbacks/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/callbacks/test", "filterText": "\"#/components/callbacks/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "callbacks.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11callbacks.yaml", "filterText": "callbacks.yaml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/callbacks/expected/callbacks.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/callbacks/expected/callbacks.yaml.json index a7c0dd91cc..e664cfcf28 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/callbacks/expected/callbacks.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/callbacks/expected/callbacks.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "delete:\n responses:\n $1: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "delete:\n responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New full get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full get", "filterText": "get:\n responses:\n $1:\n description: $2", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New full head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full head", "filterText": "head:\n responses:\n $1:\n description: $2", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "New full options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full options", "filterText": "options:\n responses:\n $1:\n description: $2", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "New full patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full patch", "filterText": "patch:\n responses:\n $1:\n description: $2", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "New full post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full post", "filterText": "post:\n responses:\n $1:\n description: $2", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "New full put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full put", "filterText": "put:\n responses:\n $1:\n description: $2", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "New full trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full trace", "filterText": "trace:\n responses:\n $1:\n description: $2", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "New get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New get", "filterText": "get:\n responses:\n $1: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "New head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New head", "filterText": "head:\n responses:\n $1: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "New options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New options", "filterText": "options:\n responses:\n $1: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "New patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New patch", "filterText": "patch:\n responses:\n $1: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "New post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New post", "filterText": "post:\n responses:\n $1: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "New put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New put", "filterText": "put:\n responses:\n $1: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "servers:\n -\n url: $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "New trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New trace", "filterText": "trace:\n responses:\n $1: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "servers:\n - ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "trace", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trace", "filterText": "trace:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/examples/expected/examples-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/examples/expected/examples-ref.yaml.json index ad192f5e67..e7032327a7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/examples/expected/examples-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/examples/expected/examples-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/examples/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/examples/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/examples/test", "filterText": "\"#/components/examples/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "examples.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples.yaml", "filterText": "examples.yaml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/examples/expected/examples.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/examples/expected/examples.yaml.json index 7424243d21..df7c2cfdbe 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/examples/expected/examples.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/examples/expected/examples.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "externalValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "externalValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalValue", "filterText": "externalValue: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "mediaType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mediaType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mediaType", "filterText": "mediaType: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "value", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "value", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11value", "filterText": "value: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/expected/components.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/expected/components.yaml.json index a4dae929bd..1c08b73711 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/expected/components.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/expected/components.yaml.json @@ -1,11 +1,17 @@ [ { "label": "callbacks", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "callbacks", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11callbacks", "filterText": "callbacks:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "links", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "links", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11links", "filterText": "links:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "requestBodies", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "requestBodies", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11requestBodies", "filterText": "requestBodies:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "responses:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "schemas", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schemas", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemas", "filterText": "schemas:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/headers/expected/headers-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/headers/expected/headers-ref.yaml.json index 1236d31e16..6a1663fa38 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/headers/expected/headers-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/headers/expected/headers-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/headers/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/headers/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/headers/test", "filterText": "\"#/components/headers/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "headers.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers.yaml", "filterText": "headers.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/headers/expected/headers.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/headers/expected/headers.yaml.json index 1fc2c5b3fa..15ca88d212 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/headers/expected/headers.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/headers/expected/headers.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "allowEmptyValue: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "allowReserved: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "content:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "explode: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "style: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/links/expected/links-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/links/expected/links-ref.yaml.json index 68f5b16268..892b91201e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/links/expected/links-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/links/expected/links-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/links/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/links/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/links/test", "filterText": "\"#/components/links/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "links.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11links.yaml", "filterText": "links.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/links/expected/links.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/links/expected/links.yaml.json index 96b23558ec..e5a384e252 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/links/expected/links.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/links/expected/links.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New server", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New server", "filterText": "server:\n url: $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "operationRef", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationRef", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationRef", "filterText": "operationRef: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "requestBody", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "requestBody", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11requestBody", "filterText": "requestBody: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "server", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11server", "filterText": "server:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/cookie-style.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/cookie-style.yaml.json index 2d6ce93033..ac76f23aa3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/cookie-style.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/cookie-style.yaml.json @@ -1,11 +1,17 @@ [ { "label": "form", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "form", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10form", "filterText": "form", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/header-style.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/header-style.yaml.json index 7d75e0c76c..a79e406acf 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/header-style.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/header-style.yaml.json @@ -1,11 +1,17 @@ [ { "label": "simple", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "simple", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10simple", "filterText": "simple", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameter-name-after-declaration.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameter-name-after-declaration.yaml.json index e44489f205..19b886d999 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameter-name-after-declaration.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameter-name-after-declaration.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New parameter", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New parameter", "filterText": "$1:\n required: $2\n name: $3\n description: $4\n in: $5", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameter-name.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameter-name.yaml.json index f4d39c4951..acc366a3b2 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameter-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameter-name.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New parameter", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New parameter", "filterText": "$1:\n required: $2\n name: $3\n description: $4\n in: $5", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameters-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameters-ref.yaml.json index 4d87eafd85..c14c280e85 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameters-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameters-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/parameters/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/parameters/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/parameters/test", "filterText": "\"#/components/parameters/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "cookie-style.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11cookie-style.yaml", "filterText": "cookie-style.yaml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "header-style.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11header-style.yaml", "filterText": "header-style.yaml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "parameter-name-after-declaration.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-name-after-declaration.yaml", "filterText": "parameter-name-after-declaration.yaml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "parameter-name.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter-name.yaml", "filterText": "parameter-name.yaml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "parameters.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters.yaml", "filterText": "parameters.yaml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "path-style.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11path-style.yaml", "filterText": "path-style.yaml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "query-style.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11query-style.yaml", "filterText": "query-style.yaml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "style.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style.yaml", "filterText": "style.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameters.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameters.yaml.json index 4b5ea61a81..6e18d15d27 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameters.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/parameters.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "allowEmptyValue: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "allowReserved: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "content:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "explode: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "style: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/path-style.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/path-style.yaml.json index e30c7041e1..b5ad531384 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/path-style.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/path-style.yaml.json @@ -1,11 +1,17 @@ [ { "label": "label", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "label", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10label", "filterText": "label", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "matrix", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "matrix", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10matrix", "filterText": "matrix", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "simple", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "simple", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10simple", "filterText": "simple", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/query-style.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/query-style.yaml.json index 1ed5d98260..9f6510043f 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/query-style.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/query-style.yaml.json @@ -1,11 +1,17 @@ [ { "label": "deepObject", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "deepObject", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10deepObject", "filterText": "deepObject", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "form", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "form", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10form", "filterText": "form", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "pipeDelimited", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pipeDelimited", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10pipeDelimited", "filterText": "pipeDelimited", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "spaceDelimited", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "spaceDelimited", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10spaceDelimited", "filterText": "spaceDelimited", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/style.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/style.yaml.json index d122711643..b8d8a3fad4 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/style.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/parameters/expected/style.yaml.json @@ -1,11 +1,17 @@ [ { "label": "deepObject", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "deepObject", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10deepObject", "filterText": "deepObject", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "form", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "form", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10form", "filterText": "form", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "label", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "label", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10label", "filterText": "label", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "matrix", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "matrix", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10matrix", "filterText": "matrix", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "pipeDelimited", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pipeDelimited", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10pipeDelimited", "filterText": "pipeDelimited", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "simple", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "simple", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10simple", "filterText": "simple", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "spaceDelimited", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "spaceDelimited", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10spaceDelimited", "filterText": "spaceDelimited", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/request-body/expected/request-body-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/request-body/expected/request-body-ref.yaml.json index bfc42dbfda..95c790b723 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/request-body/expected/request-body-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/request-body/expected/request-body-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/requestBodies/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/requestBodies/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/requestBodies/test", "filterText": "\"#/components/requestBodies/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "request-body.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11request-body.yaml", "filterText": "request-body.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/request-body/expected/request-body.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/request-body/expected/request-body.yaml.json index 4a7c48614f..8e895b892b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/request-body/expected/request-body.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/request-body/expected/request-body.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "content:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/response-name-after-declaration.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/response-name-after-declaration.yaml.json index 3aa620fbd4..bb62e9bb31 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/response-name-after-declaration.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/response-name-after-declaration.yaml.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "\"100\":\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "\"101\":\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "\"102\":\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "1XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "1XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "111XX", "filterText": "\"1XX\":\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "\"200\":\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "\"201\":\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "\"202\":\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "\"203\":\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "\"204\":\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "\"205\":\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "\"206\":\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "\"207\":\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "\"208\":\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "\"226\":\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "2XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "2XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "112XX", "filterText": "\"2XX\":\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "\"300\":\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "\"301\":\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "\"302\":\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "\"303\":\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "\"304\":\n ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "\"305\":\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "\"306\":\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "\"307\":\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "\"308\":\n ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "3XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "3XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "113XX", "filterText": "\"3XX\":\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "\"400\":\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "\"401\":\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "\"402\":\n ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "\"403\":\n ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "\"404\":\n ", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "\"405\":\n ", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "\"406\":\n ", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "\"407\":\n ", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "\"408\":\n ", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "\"409\":\n ", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "\"410\":\n ", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "\"411\":\n ", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "\"412\":\n ", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "\"413\":\n ", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "\"414\":\n ", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "\"415\":\n ", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "\"416\":\n ", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "\"417\":\n ", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "\"418\":\n ", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "\"420\":\n ", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "\"422\":\n ", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "\"423\":\n ", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "\"424\":\n ", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "\"425\":\n ", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "\"426\":\n ", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "\"428\":\n ", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "\"429\":\n ", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "\"431\":\n ", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "\"444\":\n ", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "\"449\":\n ", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "\"450\":\n ", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "\"451\":\n ", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "\"499\":\n ", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "4XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "4XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "114XX", "filterText": "\"4XX\":\n ", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "\"500\":\n ", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "\"501\":\n ", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "\"502\":\n ", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "\"503\":\n ", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "\"504\":\n ", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "\"505\":\n ", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "\"506\":\n ", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "\"507\":\n ", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "\"508\":\n ", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "\"509\":\n ", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "\"510\":\n ", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "\"511\":\n ", "insertText": null, @@ -2131,11 +2557,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "\"598\":\n ", "insertText": null, @@ -2161,11 +2593,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "\"599\":\n ", "insertText": null, @@ -2191,11 +2629,17 @@ }, { "label": "5XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "5XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "115XX", "filterText": "\"5XX\":\n ", "insertText": null, @@ -2221,11 +2665,17 @@ }, { "label": "New response", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New response", "filterText": "$1:\n description: $2\n statusCode: $3", "insertText": null, @@ -2251,11 +2701,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/response-name.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/response-name.yaml.json index 4740064404..ce1aa386b9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/response-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/response-name.yaml.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "\"100\":\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "\"101\":\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "\"102\":\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "1XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "1XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "111XX", "filterText": "\"1XX\":\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "\"200\":\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "\"201\":\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "\"202\":\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "\"203\":\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "\"204\":\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "\"205\":\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "\"206\":\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "\"207\":\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "\"208\":\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "\"226\":\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "2XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "2XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "112XX", "filterText": "\"2XX\":\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "\"300\":\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "\"301\":\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "\"302\":\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "\"303\":\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "\"304\":\n ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "\"305\":\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "\"306\":\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "\"307\":\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "\"308\":\n ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "3XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "3XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "113XX", "filterText": "\"3XX\":\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "\"400\":\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "\"401\":\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "\"402\":\n ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "\"403\":\n ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "\"404\":\n ", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "\"405\":\n ", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "\"406\":\n ", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "\"407\":\n ", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "\"408\":\n ", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "\"409\":\n ", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "\"410\":\n ", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "\"411\":\n ", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "\"412\":\n ", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "\"413\":\n ", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "\"414\":\n ", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "\"415\":\n ", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "\"416\":\n ", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "\"417\":\n ", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "\"418\":\n ", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "\"420\":\n ", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "\"422\":\n ", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "\"423\":\n ", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "\"424\":\n ", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "\"425\":\n ", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "\"426\":\n ", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "\"428\":\n ", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "\"429\":\n ", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "\"431\":\n ", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "\"444\":\n ", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "\"449\":\n ", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "\"450\":\n ", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "\"451\":\n ", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "\"499\":\n ", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "4XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "4XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "114XX", "filterText": "\"4XX\":\n ", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "\"500\":\n ", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "\"501\":\n ", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "\"502\":\n ", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "\"503\":\n ", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "\"504\":\n ", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "\"505\":\n ", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "\"506\":\n ", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "\"507\":\n ", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "\"508\":\n ", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "\"509\":\n ", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "\"510\":\n ", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "\"511\":\n ", "insertText": null, @@ -2131,11 +2557,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "\"598\":\n ", "insertText": null, @@ -2161,11 +2593,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "\"599\":\n ", "insertText": null, @@ -2191,11 +2629,17 @@ }, { "label": "5XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "5XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "115XX", "filterText": "\"5XX\":\n ", "insertText": null, @@ -2221,11 +2665,17 @@ }, { "label": "New response", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New response", "filterText": "$1:\n description: $2\n statusCode: $3", "insertText": null, @@ -2251,11 +2701,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/responses-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/responses-ref.yaml.json index e44f11a66f..1631f438d0 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/responses-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/responses-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/responses/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/responses/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/responses/test", "filterText": "\"#/components/responses/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "response-name-after-declaration.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-name-after-declaration.yaml", "filterText": "response-name-after-declaration.yaml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "response-name.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11response-name.yaml", "filterText": "response-name.yaml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "responses.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses.yaml", "filterText": "responses.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/responses.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/responses.yaml.json index 2888739ef5..0126fdfec0 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/responses.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/responses/expected/responses.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "content:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "links", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "links", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11links", "filterText": "links:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/all-of-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/all-of-schema.yaml.json index 02b72d70e1..309b536fb9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/all-of-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/all-of-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "discriminator:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/any-of-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/any-of-schema.yaml.json index 366ecfc76f..30d107ddd0 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/any-of-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/any-of-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "discriminator:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-body.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-body.yaml.json index 130f1ba446..5b1483b48a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-body.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-body.yaml.json @@ -1,11 +1,17 @@ [ { "label": "mapping", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mapping", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mapping", "filterText": "mapping: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "propertyName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "propertyName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11propertyName", "filterText": "propertyName: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-mapping-value.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-mapping-value.yaml.json index 0fe6d02d61..31450ebd99 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-mapping-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-mapping-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/schemas/Cat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#/components/schemas/Cat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/schemas/Cat", "filterText": "\"#/components/schemas/Cat\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "#/components/schemas/Dog", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#/components/schemas/Dog", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/schemas/Dog", "filterText": "\"#/components/schemas/Dog\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-mapping.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-mapping.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-mapping.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/discriminator-mapping.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/one-of-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/one-of-schema.yaml.json index 02afef2f2c..67c9e3e9a5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/one-of-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/discriminator/expected/one-of-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "discriminator:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/array-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/array-schema.yaml.json index f0249a26eb..0de277ee32 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/array-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/array-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/boolean-format.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/boolean-format.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/boolean-format.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/boolean-format.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/external-docs-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/external-docs-schema.yaml.json index fceaac40e7..90d3a5ef83 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/external-docs-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/external-docs-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/integer-format.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/integer-format.yaml.json index 46a5c666b9..7f4bcec4e6 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/integer-format.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/integer-format.yaml.json @@ -1,11 +1,17 @@ [ { "label": "int32", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int32", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int32", "filterText": "int32", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "int64", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int64", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int64", "filterText": "int64", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/items-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/items-schema.yaml.json index a1d8cb6545..ad70637d26 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/items-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/items-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/number-format.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/number-format.yaml.json index bcf5288c5d..e715e6b9bd 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/number-format.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/number-format.yaml.json @@ -1,11 +1,17 @@ [ { "label": "double", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "double", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11double", "filterText": "double", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "float", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "float", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11float", "filterText": "float", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "int32", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int32", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int32", "filterText": "int32", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "int64", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int64", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int64", "filterText": "int64", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/number-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/number-schema.yaml.json index 35963ef03f..f6d301aa2d 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/number-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/number-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "exclusiveMaximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMaximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMaximum", "filterText": "exclusiveMaximum: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "exclusiveMinimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "exclusiveMinimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11exclusiveMinimum", "filterText": "exclusiveMinimum: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/object-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/object-schema.yaml.json index 1827e55c06..323fe3ca6c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/object-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/object-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "additionalProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalProperties", "filterText": "additionalProperties: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxProperties", "filterText": "maxProperties: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "minProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minProperties", "filterText": "minProperties: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/properties-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/properties-schema.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/properties-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/properties-schema.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/property-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/property-schema.yaml.json index 272ef3863e..5eb99325a3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/property-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/property-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/required-properties-name-existing.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/required-properties-name-existing.yaml.json index d6b2e435ee..e2f33678f5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/required-properties-name-existing.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/required-properties-name-existing.yaml.json @@ -1,11 +1,17 @@ [ { "label": "anotherPro", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anotherPro", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anotherPro", "filterText": "anotherPro", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/required-properties-name.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/required-properties-name.yaml.json index 11ac503575..99cbb1e05d 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/required-properties-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/required-properties-name.yaml.json @@ -1,11 +1,17 @@ [ { "label": "anotherPro", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anotherPro", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anotherPro", "filterText": "anotherPro", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "tag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tag", "filterText": "tag", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-name-after-declaration.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-name-after-declaration.yaml.json index b1c37a1eac..c48fecfcf8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-name-after-declaration.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-name-after-declaration.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "$1:\n type: $2\n description: $3", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-name.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-name.yaml.json index d9454d99c8..7e849ea1ad 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-name.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New schema", "filterText": "$1:\n type: $2\n description: $3", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav-two.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav-two.yaml.json index 4333f3ddf8..aca834c1b7 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav-two.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav-two.yaml.json @@ -1,11 +1,17 @@ [ { "label": "Adef", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jsonschema.json#/definitions/Adef", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Adef", "filterText": "jsonschema.json#/definitions/Adef", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav-withoutbar.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav-withoutbar.yaml.json index f6945b32b9..0f835c06e8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav-withoutbar.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav-withoutbar.yaml.json @@ -1,11 +1,17 @@ [ { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jsonschema.json#/definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "jsonschema.json#/definitions", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav.yaml.json index 4d3bc30ec8..b56116ea02 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-path-nav.yaml.json @@ -1,11 +1,17 @@ [ { "label": "definitions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "jsonschema.json#/definitions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definitions", "filterText": "jsonschema.json#/definitions", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-comment.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-comment.yaml.json index 850ca1d029..dd72ae26e1 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-comment.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-comment.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/schemas/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/schemas/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/schemas/a", "filterText": "\"#/components/schemas/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-separator-two.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-separator-two.yaml.json index bea21d47d8..79f94141f4 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-separator-two.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-separator-two.yaml.json @@ -1,11 +1,17 @@ [ { "label": "schemas/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/schemas/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemas/a", "filterText": "\"#/components/schemas/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-separator.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-separator.yaml.json index 75c167c523..1e3d94784d 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-separator.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schema-ref-separator.yaml.json @@ -1,11 +1,17 @@ [ { "label": "components/schemas/a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/schemas/a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11components/schemas/a", "filterText": "\"#/components/schemas/a\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schemas-ref.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schemas-ref.yaml.json index 0fe88739d0..c8cf0c9aa8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schemas-ref.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schemas-ref.yaml.json @@ -1,11 +1,17 @@ [ { "label": "#/components/schemas/test", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Reference to #/components/schemas/test", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#/components/schemas/test", "filterText": "\"#/components/schemas/test\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array-schema.yaml", "filterText": "array-schema.yaml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean-format.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean-format.yaml", "filterText": "boolean-format.yaml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "discriminator/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator/", "filterText": "discriminator/", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "external-docs-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11external-docs-schema.yaml", "filterText": "external-docs-schema.yaml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "integer-format.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer-format.yaml", "filterText": "integer-format.yaml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items-schema.yaml", "filterText": "items-schema.yaml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "jsonschema.json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11jsonschema.json", "filterText": "jsonschema.json", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number-format.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number-format.yaml", "filterText": "number-format.yaml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "number-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number-schema.yaml", "filterText": "number-schema.yaml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "object-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object-schema.yaml", "filterText": "object-schema.yaml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties-schema.yaml", "filterText": "properties-schema.yaml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "property-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11property-schema.yaml", "filterText": "property-schema.yaml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required-properties-name-existing.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required-properties-name-existing.yaml", "filterText": "required-properties-name-existing.yaml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required-properties-name.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required-properties-name.yaml", "filterText": "required-properties-name.yaml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "schema-name-after-declaration.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-name-after-declaration.yaml", "filterText": "schema-name-after-declaration.yaml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "schema-name.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-name.yaml", "filterText": "schema-name.yaml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "schema-path-nav-two.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav-two.yaml", "filterText": "schema-path-nav-two.yaml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "schema-path-nav-withoutbar.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav-withoutbar.yaml", "filterText": "schema-path-nav-withoutbar.yaml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "schema-path-nav.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-path-nav.yaml", "filterText": "schema-path-nav.yaml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "schema-ref-comment.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-comment.yaml", "filterText": "schema-ref-comment.yaml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "schema-ref-separator-two.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-separator-two.yaml", "filterText": "schema-ref-separator-two.yaml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "schema-ref-separator.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema-ref-separator.yaml", "filterText": "schema-ref-separator.yaml", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "schemas.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemas.yaml", "filterText": "schemas.yaml", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "string-format.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string-format.yaml", "filterText": "string-format.yaml", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "string-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string-schema.yaml", "filterText": "string-schema.yaml", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "types-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types-schema.yaml", "filterText": "types-schema.yaml", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "xml-object-schema.yaml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml-object-schema.yaml", "filterText": "xml-object-schema.yaml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schemas.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schemas.yaml.json index bbe4818dca..4fd64abe06 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schemas.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/schemas.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/string-format.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/string-format.yaml.json index b995c8c3ca..be25fc079c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/string-format.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/string-format.yaml.json @@ -1,11 +1,17 @@ [ { "label": "binary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "binary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11binary", "filterText": "binary", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "byte", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "byte", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11byte", "filterText": "byte", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "date", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date", "filterText": "date", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-time", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-time", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-time", "filterText": "date-time", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11password", "filterText": "password", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/string-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/string-schema.yaml.json index 88687b8ddc..67f1e4e43c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/string-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/string-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/types-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/types-schema.yaml.json index 3350ec0b1e..7eaba9a74c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/types-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/types-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "array", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10file", "filterText": "file", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "object", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/xml-object-schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/xml-object-schema.yaml.json index abfac4245a..9566a1613c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/xml-object-schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/schemas/expected/xml-object-schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "attribute", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "attribute", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11attribute", "filterText": "attribute: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "namespace", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "namespace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11namespace", "filterText": "namespace: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "prefix", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "prefix", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prefix", "filterText": "prefix: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "wrapped", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "wrapped", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wrapped", "filterText": "wrapped: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-scheme-name-after-declaration.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-scheme-name-after-declaration.yaml.json index 958072bc56..faea6d6b5a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-scheme-name-after-declaration.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-scheme-name-after-declaration.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New securityScheme", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New securityScheme", "filterText": "$1:\n type: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-scheme-name.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-scheme-name.yaml.json index 5ff10d85ce..93f012e3a5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-scheme-name.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-scheme-name.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New securityScheme", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New securityScheme", "filterText": "$1:\n type: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-schemes.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-schemes.yaml.json index d4f0a2ecdf..1d933f6919 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-schemes.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/expected/security-schemes.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/expected/flows.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/expected/flows.yaml.json index 6e384f9051..4d45915e9d 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/expected/flows.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/expected/flows.yaml.json @@ -1,11 +1,17 @@ [ { "label": "authorizationCode", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationCode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10authorizationCode", "filterText": "authorizationCode: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "clientCredentials", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "clientCredentials", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10clientCredentials", "filterText": "clientCredentials: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "implicit", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "implicit", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10implicit", "filterText": "implicit: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10password", "filterText": "password: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-authorizationCode.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-authorizationCode.yaml.json index e49a80d30d..f62aeb19aa 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-authorizationCode.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-authorizationCode.yaml.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "authorizationUrl: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "refreshUrl", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "refreshUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11refreshUrl", "filterText": "refreshUrl: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "scopes:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "tokenUrl: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-clientCredentials.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-clientCredentials.yaml.json index e49a80d30d..f62aeb19aa 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-clientCredentials.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-clientCredentials.yaml.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "authorizationUrl: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "refreshUrl", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "refreshUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11refreshUrl", "filterText": "refreshUrl: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "scopes:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "tokenUrl: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-implicit.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-implicit.yaml.json index e49a80d30d..f62aeb19aa 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-implicit.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-implicit.yaml.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "authorizationUrl: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "refreshUrl", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "refreshUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11refreshUrl", "filterText": "refreshUrl: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "scopes:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "tokenUrl: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-password.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-password.yaml.json index e49a80d30d..f62aeb19aa 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-password.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/expected/flows-password.yaml.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "authorizationUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUrl", "filterText": "authorizationUrl: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "refreshUrl", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "refreshUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11refreshUrl", "filterText": "refreshUrl: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "scopes:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "tokenUrl", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "tokenUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenUrl", "filterText": "tokenUrl: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/scopes/expected/scopes.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/scopes/expected/scopes.yaml.json index fd96d2ef1d..6713360446 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/scopes/expected/scopes.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/flows/flows-object/scopes/expected/scopes.yaml.json @@ -1,11 +1,17 @@ [ { "label": "a", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11a", "filterText": "a", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/apiKey-facets.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/apiKey-facets.yaml.json index 034fb48574..e719f1e12b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/apiKey-facets.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/apiKey-facets.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/apiKey-in-facet.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/apiKey-in-facet.yaml.json index e7df255335..84da358dc6 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/apiKey-in-facet.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/apiKey-in-facet.yaml.json @@ -1,11 +1,17 @@ [ { "label": "cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10cookie", "filterText": "cookie", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "header", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "header", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10header", "filterText": "header", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "query", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "query", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10query", "filterText": "query", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/http-facets.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/http-facets.yaml.json index 2b35b437fa..a4e7e405f2 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/http-facets.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/http-facets.yaml.json @@ -1,11 +1,17 @@ [ { "label": "bearerFormat", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "bearerFormat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11bearerFormat", "filterText": "bearerFormat: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "scheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "scheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10scheme", "filterText": "scheme: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/oauth2-facets.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/oauth2-facets.yaml.json index 1efb78d9f9..5268ad0796 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/oauth2-facets.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/oauth2-facets.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "flows", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "flows", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10flows", "filterText": "flows:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/openIdConnect-facets.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/openIdConnect-facets.yaml.json index 453bf2af65..1160388113 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/openIdConnect-facets.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/openIdConnect-facets.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "openIdConnectUrl", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "openIdConnectUrl", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10openIdConnectUrl", "filterText": "openIdConnectUrl: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/type.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/type.yaml.json index db53c536a3..051c964ed5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/type.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/components/securitySchemes/type/expected/type.yaml.json @@ -1,11 +1,17 @@ [ { "label": "apiKey", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "apiKey", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10apiKey", "filterText": "apiKey", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "http", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "http", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10http", "filterText": "http", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10oauth2", "filterText": "oauth2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "openIdConnect", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "openIdConnect", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10openIdConnect", "filterText": "openIdConnect", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-example.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-example.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-example.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-example.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-obj-example-arr.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-obj-example-arr.yaml.json index 1f0a67ab7d..8207d9bc3a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-obj-example-arr.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-obj-example-arr.yaml.json @@ -1,11 +1,17 @@ [ { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11p1", "filterText": "p1: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-obj-example.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-obj-example.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-obj-example.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/array-obj-example.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/empty-example.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/empty-example.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/empty-example.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/empty-example.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/object-example.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/object-example.yaml.json index 677cb70299..e33d375015 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/object-example.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/object-example.yaml.json @@ -1,11 +1,17 @@ [ { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11p1", "filterText": "p1: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/string-example.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/string-example.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/string-example.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/examples-payload/in-schema/expected/string-example.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/expected/root.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/expected/root.yaml.json index 9e8f959f02..a22be6e19a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/expected/root.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/expected/root.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New info", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New info", "filterText": "info:\n title: $1\n version: $2", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "servers:\n -\n url: $1", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New tags", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tags", "filterText": "tags:\n -\n name: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "components", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "components", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11components", "filterText": "components:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "info", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "info", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10info", "filterText": "info:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "paths", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "paths", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10paths", "filterText": "paths:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "servers:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/external-docs/expected/external-docs.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/external-docs/expected/external-docs.yaml.json index 17580f5137..86d70b8143 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/external-docs/expected/external-docs.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/external-docs/expected/external-docs.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/contact/expected/contact.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/contact/expected/contact.yaml.json index 8fb8030a1b..93285f1f75 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/contact/expected/contact.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/contact/expected/contact.yaml.json @@ -1,11 +1,17 @@ [ { "label": "email", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "email", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11email", "filterText": "email: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/expected/info.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/expected/info.yaml.json index 6f4d92e205..289afc7fed 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/expected/info.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/expected/info.yaml.json @@ -1,11 +1,17 @@ [ { "label": "contact", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "contact", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contact", "filterText": "contact:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "license", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "license", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11license", "filterText": "license:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "termsOfService", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "termsOfService", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11termsOfService", "filterText": "termsOfService: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10version", "filterText": "version: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/license/expected/license.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/license/expected/license.yaml.json index 0aa68ab145..e91ba39056 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/license/expected/license.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/info/license/expected/license.yaml.json @@ -1,11 +1,17 @@ [ { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/expected/paths.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/expected/paths.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/expected/paths.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/expected/paths.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/expected/path-object.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/expected/path-object.yaml.json index 123af8d8fb..ef2c1090d5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/expected/path-object.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/expected/path-object.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "delete:\n responses:\n $1: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "delete:\n responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New full get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full get", "filterText": "get:\n responses:\n $1:\n description: $2", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New full head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full head", "filterText": "head:\n responses:\n $1:\n description: $2", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "New full options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full options", "filterText": "options:\n responses:\n $1:\n description: $2", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "New full patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full patch", "filterText": "patch:\n responses:\n $1:\n description: $2", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "New full post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full post", "filterText": "post:\n responses:\n $1:\n description: $2", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "New full put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full put", "filterText": "put:\n responses:\n $1:\n description: $2", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "New full trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full trace", "filterText": "trace:\n responses:\n $1:\n description: $2", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "New get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New get", "filterText": "get:\n responses:\n $1: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "New head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New head", "filterText": "head:\n responses:\n $1: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "New options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New options", "filterText": "options:\n responses:\n $1: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "New patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New patch", "filterText": "patch:\n responses:\n $1: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "New post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New post", "filterText": "post:\n responses:\n $1: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "New put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New put", "filterText": "put:\n responses:\n $1: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "servers:\n -\n url: $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "New trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New trace", "filterText": "trace:\n responses:\n $1: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "servers:\n - ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "trace", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trace", "filterText": "trace:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/callbacks/expected/callback-inside.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/callbacks/expected/callback-inside.yaml.json index cb9ead6606..156675f98a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/callbacks/expected/callback-inside.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/callbacks/expected/callback-inside.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New delete", "filterText": "delete:\n responses:\n $1: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New full delete", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full delete", "filterText": "delete:\n responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New full get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full get", "filterText": "get:\n responses:\n $1:\n description: $2", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New full head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full head", "filterText": "head:\n responses:\n $1:\n description: $2", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "New full options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full options", "filterText": "options:\n responses:\n $1:\n description: $2", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "New full patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full patch", "filterText": "patch:\n responses:\n $1:\n description: $2", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "New full post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full post", "filterText": "post:\n responses:\n $1:\n description: $2", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "New full put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full put", "filterText": "put:\n responses:\n $1:\n description: $2", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "New full trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New full trace", "filterText": "trace:\n responses:\n $1:\n description: $2", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "New get", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New get", "filterText": "get:\n responses:\n $1: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "New head", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New head", "filterText": "head:\n responses:\n $1: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "New options", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New options", "filterText": "options:\n responses:\n $1: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "New patch", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New patch", "filterText": "patch:\n responses:\n $1: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "New post", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New post", "filterText": "post:\n responses:\n $1: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "New put", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New put", "filterText": "put:\n responses:\n $1: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "servers:\n -\n url: $1", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "New trace", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New trace", "filterText": "trace:\n responses:\n $1: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "servers:\n - ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "trace", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trace", "filterText": "trace:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-boolean.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-boolean.yaml.json index cfd7b8d0e0..079ca77436 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-boolean.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-boolean.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-string.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-string.yaml.json index 6c305fc7b7..0fde079930 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-string.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/deprecated/expected/deprecated-as-string.yaml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/expected/operation.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/expected/operation.yaml.json index fa8a89aeff..6aba9dea28 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/expected/operation.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/expected/operation.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New externalDocs", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New externalDocs", "filterText": "externalDocs:\n url: $1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New parameters", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New parameters", "filterText": "parameters:\n -\n in: $1\n required: $2\n description: $3\n name: $4", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "New responses", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New responses", "filterText": "responses:\n $1:\n description: $2", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "New security", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New security", "filterText": "security:\n -\n type: $1", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "New servers", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New servers", "filterText": "servers:\n -\n url: $1", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "callbacks", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "callbacks", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11callbacks", "filterText": "callbacks:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "requestBody", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "requestBody", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11requestBody", "filterText": "requestBody:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10responses", "filterText": "responses:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security", "filterText": "security:\n - ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "servers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "servers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11servers", "filterText": "servers:\n - ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "summary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "summary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11summary", "filterText": "summary: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "tags", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tags", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tags", "filterText": "tags:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/external-docs/expected/external-docs.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/external-docs/expected/external-docs.yaml.json index fceaac40e7..90d3a5ef83 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/external-docs/expected/external-docs.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/external-docs/expected/external-docs.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/expected/content.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/expected/content.yaml.json index 1c86ba441f..6fa2b1050b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/expected/content.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/expected/content.yaml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "application/vnd.github+json:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "application/vnd.github.v3+json:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "application/vnd.github.v3.full+json:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "application/vnd.github.v3.html+json:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "application/vnd.github.v3.patch:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "application/vnd.github.v3.raw+json:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "application/vnd.github.v3.text+json:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "appxlication/vnd.github.v3.diff:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "text/plain; charset=utf-8:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/encoding/encoding-object/expected/encoding-object.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/encoding/encoding-object/expected/encoding-object.yaml.json index e188fa2fbc..b45ec3d4e2 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/encoding/encoding-object/expected/encoding-object.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/encoding/encoding-object/expected/encoding-object.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "allowReserved: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "contentType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "contentType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contentType", "filterText": "contentType: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "explode: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "style: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/encoding/expected/encoding.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/encoding/expected/encoding.yaml.json index 9f939f1c16..338c12edf3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/encoding/expected/encoding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/encoding/expected/encoding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11age", "filterText": "age: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/examples/expected/examples.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/examples/expected/examples.yaml.json index 89d3d4ed7c..5448978351 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/examples/expected/examples.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/examples/expected/examples.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "externalValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "externalValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalValue", "filterText": "externalValue: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "mediaType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mediaType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mediaType", "filterText": "mediaType: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "value", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "value", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11value", "filterText": "value: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/expected/media-type.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/expected/media-type.yaml.json index d3dd61f3e8..29a9a67c59 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/expected/media-type.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/expected/media-type.yaml.json @@ -1,11 +1,17 @@ [ { "label": "New schema", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New schema", "filterText": "schema:\n description: $1\n type: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11encoding", "filterText": "encoding:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/schema/expected/schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/schema/expected/schema.yaml.json index cc20f9b263..4ad73fd52b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/schema/expected/schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/content/media-type/schema/expected/schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/expected/parameters.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/expected/parameters.yaml.json index b916a43306..4677d7ec9f 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/expected/parameters.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/expected/parameters.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "allowEmptyValue: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "allowReserved: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "content:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "explode: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "style: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/schema/expected/schema.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/schema/expected/schema.yaml.json index adce954b70..26463447c9 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/schema/expected/schema.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/parameters/schema/expected/schema.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/request-body/expected/request-body.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/request-body/expected/request-body.yaml.json index 5f90af81c5..78d230171a 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/request-body/expected/request-body.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/request-body/expected/request-body.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "content:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-example.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-example.yaml.json index a8fbdae4dd..c46c2dca2b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-example.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-example.yaml.json @@ -1,11 +1,17 @@ [ { "label": "a", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "a", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11a", "filterText": "a: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "b", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "b", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11b", "filterText": "b: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type-filter.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type-filter.yaml.json index 55bcfcec5e..fc2ffe43da 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type-filter.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type-filter.yaml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "application/vnd.github+json:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "application/vnd.github.v3+json:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "application/vnd.github.v3.full+json:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "application/vnd.github.v3.html+json:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "application/vnd.github.v3.patch:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "application/vnd.github.v3.raw+json:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "application/vnd.github.v3.text+json:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "appxlication/vnd.github.v3.diff:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type.yaml.json index 29ad95236c..0a016bd44c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/content/expected/content-media-type.yaml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/vnd.github+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github+json", "filterText": "application/vnd.github+json:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "application/vnd.github.v3+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3+json", "filterText": "application/vnd.github.v3+json:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "application/vnd.github.v3.full+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.full+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.full+json", "filterText": "application/vnd.github.v3.full+json:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "application/vnd.github.v3.html+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.html+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.html+json", "filterText": "application/vnd.github.v3.html+json:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "application/vnd.github.v3.patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.patch", "filterText": "application/vnd.github.v3.patch:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "application/vnd.github.v3.raw+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.raw+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.raw+json", "filterText": "application/vnd.github.v3.raw+json:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "application/vnd.github.v3.text+json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/vnd.github.v3.text+json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/vnd.github.v3.text+json", "filterText": "application/vnd.github.v3.text+json:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "appxlication/vnd.github.v3.diff", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "appxlication/vnd.github.v3.diff", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11appxlication/vnd.github.v3.diff", "filterText": "appxlication/vnd.github.v3.diff:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "text/plain; charset=utf-8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "text/plain; charset=utf-8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11text/plain; charset=utf-8", "filterText": "text/plain; charset=utf-8:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/expected/response-code.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/expected/response-code.yaml.json index c2b992b424..99f5e1dfa3 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/expected/response-code.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/expected/response-code.yaml.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "\"100\":\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "\"101\":\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "\"102\":\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "1XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "1XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "111XX", "filterText": "\"1XX\":\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "\"200\":\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "\"201\":\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "\"202\":\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "\"203\":\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "\"204\":\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "\"205\":\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "\"206\":\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "\"207\":\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "\"208\":\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "\"226\":\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "2XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "2XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "112XX", "filterText": "\"2XX\":\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "\"300\":\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "\"301\":\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "\"302\":\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "\"303\":\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "\"304\":\n ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "\"305\":\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "\"306\":\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "\"307\":\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "\"308\":\n ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "3XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "3XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "113XX", "filterText": "\"3XX\":\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "\"400\":\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "\"401\":\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "\"402\":\n ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "\"403\":\n ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "\"404\":\n ", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "\"405\":\n ", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "\"406\":\n ", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "\"407\":\n ", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "\"408\":\n ", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "\"409\":\n ", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "\"410\":\n ", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "\"411\":\n ", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "\"412\":\n ", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "\"413\":\n ", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "\"414\":\n ", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "\"415\":\n ", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "\"416\":\n ", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "\"417\":\n ", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "\"418\":\n ", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "\"420\":\n ", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "\"422\":\n ", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "\"423\":\n ", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "\"424\":\n ", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "\"425\":\n ", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "\"426\":\n ", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "\"428\":\n ", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "\"429\":\n ", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "\"431\":\n ", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "\"444\":\n ", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "\"449\":\n ", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "\"450\":\n ", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "\"451\":\n ", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "\"499\":\n ", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "4XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "4XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "114XX", "filterText": "\"4XX\":\n ", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "\"500\":\n ", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "\"501\":\n ", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "\"502\":\n ", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "\"503\":\n ", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "\"504\":\n ", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "\"505\":\n ", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "\"506\":\n ", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "\"507\":\n ", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "\"508\":\n ", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "\"509\":\n ", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "\"510\":\n ", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "\"511\":\n ", "insertText": null, @@ -2131,11 +2557,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "\"598\":\n ", "insertText": null, @@ -2161,11 +2593,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "\"599\":\n ", "insertText": null, @@ -2191,11 +2629,17 @@ }, { "label": "5XX", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "5XX", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "115XX", "filterText": "\"5XX\":\n ", "insertText": null, @@ -2221,11 +2665,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/expected/response.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/expected/response.yaml.json index a3f1f45249..4235d6c0d2 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/expected/response.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/expected/response.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "content:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "links", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "links", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11links", "filterText": "links:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/expected/links.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/expected/links.yaml.json index dcad1ce666..ffa8484b99 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/expected/links.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/expected/links.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New server", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New server", "filterText": "server:\n url: $1", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "operationId", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationId", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationId", "filterText": "operationId: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "operationRef", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "operationRef", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11operationRef", "filterText": "operationRef: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "parameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "parameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameters", "filterText": "parameters:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "requestBody", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "requestBody", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11requestBody", "filterText": "requestBody: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "server", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11server", "filterText": "server:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters-request.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters-request.yaml.json index 763a09bc48..dc13446948 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters-request.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters-request.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "allowEmptyValue: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "allowReserved: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "content:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "explode: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "style: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/responses/links/parameters/expected/parameters.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/security/expected/security.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/security/expected/security.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/security/expected/security.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/security/expected/security.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/expected/servers.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/expected/servers.yaml.json index b2e52b6e55..4bcdb6444c 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/expected/servers.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/expected/servers.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "variables", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "variables", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11variables", "filterText": "variables:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key-url.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key-url.yaml.json index e83809fd4c..f24feb2898 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key-url.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key-url.yaml.json @@ -1,11 +1,17 @@ [ { "label": "basePath", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "basePath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11basePath", "filterText": "basePath:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "port", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "port", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11port", "filterText": "port:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "username", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "username", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11username", "filterText": "username:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-key.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-value.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-value.yaml.json index 1786967491..ab520e5e5d 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-value.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/operation/servers/variables/expected/variables-value.yaml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameter-binding.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameter-binding.yaml.json index 6b46c1a2a5..bafa68a1f5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameter-binding.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameter-binding.yaml.json @@ -1,11 +1,17 @@ [ { "label": "cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10cookie", "filterText": "cookie", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "header", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "header", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10header", "filterText": "header", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "path", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "path", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10path", "filterText": "path", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "query", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "query", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10query", "filterText": "query", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameter-header.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameter-header.yaml.json index 3ebc6adce2..112e8f1275 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameter-header.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameter-header.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "allowEmptyValue: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "allowReserved: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "content:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "explode: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "style: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameters.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameters.yaml.json index ee15ae02b4..a6a328b8fd 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameters.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/parameters/expected/parameters.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allowEmptyValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowEmptyValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowEmptyValue", "filterText": "allowEmptyValue: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "allowReserved", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowReserved", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowReserved", "filterText": "allowReserved: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11content", "filterText": "content:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "explode", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "explode", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11explode", "filterText": "explode: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "in", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "in", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10in", "filterText": "in: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10required", "filterText": "required: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "style", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "style", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11style", "filterText": "style: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/servers/expected/servers.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/servers/expected/servers.yaml.json index 435116aa3e..0a26c575d6 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/servers/expected/servers.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/paths/path-object/servers/expected/servers.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "variables", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "variables", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11variables", "filterText": "variables:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-apiKey.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-apiKey.yaml.json index e78081befc..f733aa65c5 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-apiKey.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-apiKey.yaml.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "aScheme: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-array.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-array.yaml.json index a630227da6..6ac0be5f53 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-array.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-array.yaml.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "aScheme: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-oauth2-withScopes.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-oauth2-withScopes.yaml.json index 317d00424e..182081e7e6 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-oauth2-withScopes.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-oauth2-withScopes.yaml.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "aScheme:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-oauth2-withoutScopes.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-oauth2-withoutScopes.yaml.json index 2a69ba12e9..e0f88f619b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-oauth2-withoutScopes.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-oauth2-withoutScopes.yaml.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "aScheme: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId-withScopes.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId-withScopes.yaml.json index 2a69ba12e9..e0f88f619b 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId-withScopes.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId-withScopes.yaml.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "aScheme: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId-withoutScopes.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId-withoutScopes.yaml.json index 57b8b3ab8a..bd300d4c1e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId-withoutScopes.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId-withoutScopes.yaml.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "aScheme: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId.yaml.json index 57b8b3ab8a..bd300d4c1e 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-openId.yaml.json @@ -1,11 +1,17 @@ [ { "label": "aScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aScheme", "filterText": "aScheme: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-scheme.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-scheme.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-scheme.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security-scheme.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/security/expected/security.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/servers/expected/servers-array.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/servers/expected/servers-array.yaml.json index db860dd4a8..f04da3b754 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/servers/expected/servers-array.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/servers/expected/servers-array.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "url", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "url", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10url", "filterText": "url: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "variables", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "variables", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11variables", "filterText": "variables:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/tags/expected/tags.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/tags/expected/tags.yaml.json index d295c66bf8..31f6bd8972 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/tags/expected/tags.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/open-api-document/tags/expected/tags.yaml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10name", "filterText": "name: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-callbacks.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-callbacks.yaml.json index cef9b243df..52078ef31f 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-callbacks.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-callbacks.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$method", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$method}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$method", "filterText": "\"{$method}\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$request.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.", "filterText": "\"{$request.}\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$response.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$response.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$response.", "filterText": "\"{$response.}\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "$statusCode", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$statusCode}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$statusCode", "filterText": "\"{$statusCode}\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "$url", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$url}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$url", "filterText": "\"{$url}\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-inside-string-not-ended.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-inside-string-not-ended.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-inside-string-not-ended.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-inside-string-not-ended.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-inside-string.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-inside-string.yaml.json index 55658d2d8f..7c26ae6a63 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-inside-string.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-inside-string.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$method", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "http://notificationServer.com?transactionId={$method}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$method", "filterText": "http://notificationServer.com?transactionId={$method}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$request.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "http://notificationServer.com?transactionId={$request.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.", "filterText": "http://notificationServer.com?transactionId={$request.}", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$response.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "http://notificationServer.com?transactionId={$response.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$response.", "filterText": "http://notificationServer.com?transactionId={$response.}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "$statusCode", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "http://notificationServer.com?transactionId={$statusCode}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$statusCode", "filterText": "http://notificationServer.com?transactionId={$statusCode}", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "$url", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "http://notificationServer.com?transactionId={$url}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$url", "filterText": "http://notificationServer.com?transactionId={$url}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-no-curly.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-no-curly.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-no-curly.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-no-curly.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-request-no-close-bracket.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-request-no-close-bracket.yaml.json index 428c2c758f..2dd54bd50d 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-request-no-close-bracket.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-request-no-close-bracket.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$request.body", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.body}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.body", "filterText": "\"{$request.body}\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$request.body#", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.body#}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.body#", "filterText": "\"{$request.body#}\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$request.header.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.header.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.header.", "filterText": "\"{$request.header.}\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "$request.path.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.path.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.path.", "filterText": "\"{$request.path.}\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "$request.query.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.query.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.query.", "filterText": "\"{$request.query.}\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-request.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-request.yaml.json index 7d8749898e..10e63fd515 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-request.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-only-expression-request.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$request.body", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.body}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.body", "filterText": "\"{$request.body}\"", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "$request.body#", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.body#}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.body#", "filterText": "\"{$request.body#}\"", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "$request.header.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.header.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.header.", "filterText": "\"{$request.header.}\"", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "$request.path.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.path.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.path.", "filterText": "\"{$request.path.}\"", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "$request.query.", - "kind": [], + "kind": [ + + ], "detail": "RuntimeExpression", "documentation": "{$request.query.}", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11$request.query.", "filterText": "\"{$request.query.}\"", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-request-body.yaml.json b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-request-body.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-request-body.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/oas30/by-directory/yaml/runtime-expressions/expected/runtime-request-body.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/endpoint.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/endpoint.raml.json index aab069a5c2..ca6a40aa31 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/endpoint.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/endpoint.raml.json @@ -1,11 +1,17 @@ [ { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11type", "filterText": "type:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "uriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uriParameters", "filterText": "uriParameters:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/nested.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/nested.raml.json index 938a7d05a2..3433d19ccd 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/nested.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/nested.raml.json @@ -1,11 +1,17 @@ [ { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11type", "filterText": "type:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "uriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uriParameters", "filterText": "uriParameters:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter-nested.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter-nested.raml.json index d80f453375..f8255d599c 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter-nested.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter-nested.raml.json @@ -1,11 +1,17 @@ [ { "label": "anotherUri", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "anotherUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anotherUri", "filterText": "anotherUri:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "uri", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uri", "filterText": "uri:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter-props.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter-props.raml.json index aad4ea76cc..2d96f37e5e 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter-props.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter-props.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "repeat", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "repeat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11repeat", "filterText": "repeat: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter.raml.json index e5fdd0c808..a5637d56fa 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/endpoints/expected/uri-parameter.raml.json @@ -1,11 +1,17 @@ [ { "label": "uri", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uri", "filterText": "uri:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/include-tag/expected/tag.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/include-tag/expected/tag.raml.json index 410ea727db..615c80ef3b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/include-tag/expected/tag.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/include-tag/expected/tag.raml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type-existing.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type-existing.raml.json index 606e658147..126c46334a 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type-existing.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type-existing.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type-expanded.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type-expanded.raml.json index 9c5af7a4df..f23a2da8f8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type-expanded.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type-expanded.raml.json @@ -1,11 +1,17 @@ [ { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-media-type.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters-type-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters-type-array.raml.json index df1d6a1dcc..0d8702faf5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters-type-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters-type-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters-type.raml.json index bc124e213f..7ada4c0f48 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "date", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10date", "filterText": "date", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10file", "filterText": "file", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters.raml.json index f9684a5770..5426888c09 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body-parameters.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body.raml.json index c5e63dfc0a..c6e22f47f3 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/body.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/header-name.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/header-name.raml.json index 57e2913066..db31b97ad5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/header-name.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/header-name.raml.json @@ -1,11 +1,17 @@ [ { "label": "A-IM", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A-IM", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A-IM", "filterText": "A-IM: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "ALPN", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ALPN", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ALPN", "filterText": "ALPN: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "Accept", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept", "filterText": "Accept: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "Accept-CH", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-CH", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-CH", "filterText": "Accept-CH: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "Accept-Charset", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Charset", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Charset", "filterText": "Accept-Charset: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "Accept-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Encoding", "filterText": "Accept-Encoding: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "Accept-Features", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Features", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Features", "filterText": "Accept-Features: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "Accept-Language", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Language", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Language", "filterText": "Accept-Language: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "Accept-Patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Patch", "filterText": "Accept-Patch: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "Accept-Post", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Post", "filterText": "Accept-Post: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "Accept-Ranges", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Ranges", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Ranges", "filterText": "Accept-Ranges: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "Access-Control-Allow-Credentials", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Credentials", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Credentials", "filterText": "Access-Control-Allow-Credentials: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "Access-Control-Allow-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Headers", "filterText": "Access-Control-Allow-Headers: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "Access-Control-Allow-Methods", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Methods", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Methods", "filterText": "Access-Control-Allow-Methods: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "Access-Control-Allow-Origin", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Origin", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Origin", "filterText": "Access-Control-Allow-Origin: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "Access-Control-Expose-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Expose-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Expose-Headers", "filterText": "Access-Control-Expose-Headers: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "Access-Control-Max-Age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Max-Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Max-Age", "filterText": "Access-Control-Max-Age: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "Access-Control-Request-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Request-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Request-Headers", "filterText": "Access-Control-Request-Headers: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "Access-Control-Request-Method", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Request-Method", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Request-Method", "filterText": "Access-Control-Request-Method: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "Age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Age", "filterText": "Age: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "Allow", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Allow", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Allow", "filterText": "Allow: ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "Alt-Svc", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Alt-Svc", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Alt-Svc", "filterText": "Alt-Svc: ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "Alternates", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Alternates", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Alternates", "filterText": "Alternates: ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "Apply-To-Redirect-Ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Apply-To-Redirect-Ref", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Apply-To-Redirect-Ref", "filterText": "Apply-To-Redirect-Ref: ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "Authorization", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Authorization", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Authorization", "filterText": "Authorization: ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "CH", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "CH", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11CH", "filterText": "CH: ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "Cache-Control", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cache-Control", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cache-Control", "filterText": "Cache-Control: ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "Content-Base", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Base", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Base", "filterText": "Content-Base: ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "Content-DPR", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-DPR", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-DPR", "filterText": "Content-DPR: ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "Content-Disposition", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Disposition", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Disposition", "filterText": "Content-Disposition: ", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "Content-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Encoding", "filterText": "Content-Encoding: ", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "Content-Language", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Language", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Language", "filterText": "Content-Language: ", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "Content-Length", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Length", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Length", "filterText": "Content-Length: ", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "Content-Location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Location", "filterText": "Content-Location: ", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "Content-Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Range", "filterText": "Content-Range: ", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "Content-Security-Policy", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Security-Policy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Security-Policy", "filterText": "Content-Security-Policy: ", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "Content-Security-Policy-Report-Only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Security-Policy-Report-Only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Security-Policy-Report-Only", "filterText": "Content-Security-Policy-Report-Only: ", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "Content-Type", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Type", "filterText": "Content-Type: ", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "Cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cookie", "filterText": "Cookie: ", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "Cookie2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cookie2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cookie2", "filterText": "Cookie2: ", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "DASL", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DASL", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DASL", "filterText": "DASL: ", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "DAV", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DAV", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DAV", "filterText": "DAV: ", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "DNT", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DNT", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DNT", "filterText": "DNT: ", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "DPR", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DPR", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DPR", "filterText": "DPR: ", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "Date", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Date", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Date", "filterText": "Date: ", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "Delta-Base", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Delta-Base", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Delta-Base", "filterText": "Delta-Base: ", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "Depth", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Depth", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Depth", "filterText": "Depth: ", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "Destination", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Destination", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Destination", "filterText": "Destination: ", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "ETag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ETag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ETag", "filterText": "ETag: ", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "Encryption", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Encryption", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Encryption", "filterText": "Encryption: ", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "Encryption-Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Encryption-Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Encryption-Key", "filterText": "Encryption-Key: ", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "Expect", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Expect", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Expect", "filterText": "Expect: ", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "Expires", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Expires", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Expires", "filterText": "Expires: ", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "Forwarded", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Forwarded", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Forwarded", "filterText": "Forwarded: ", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "From", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "From", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11From", "filterText": "From: ", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "HTTP2-Settings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP2-Settings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP2-Settings", "filterText": "HTTP2-Settings: ", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "Host", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Host", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Host", "filterText": "Host: ", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "IM", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "IM", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11IM", "filterText": "IM: ", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "If", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If", "filterText": "If: ", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "If-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Match", "filterText": "If-Match: ", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "If-Modified-Since", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Modified-Since", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Modified-Since", "filterText": "If-Modified-Since: ", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "If-None-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-None-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-None-Match", "filterText": "If-None-Match: ", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "If-Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Range", "filterText": "If-Range: ", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "If-Schedule-Tag-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Schedule-Tag-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Schedule-Tag-Match", "filterText": "If-Schedule-Tag-Match: ", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "If-Unmodified-Since", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Unmodified-Since", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Unmodified-Since", "filterText": "If-Unmodified-Since: ", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Key", "filterText": "Key: ", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "Last-Event-ID", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Last-Event-ID", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Last-Event-ID", "filterText": "Last-Event-ID: ", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "Last-Modified", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Last-Modified", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Last-Modified", "filterText": "Last-Modified: ", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "Link", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Link", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Link", "filterText": "Link: ", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "Link-Template", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Link-Template", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Link-Template", "filterText": "Link-Template: ", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "Location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Location", "filterText": "Location: ", "insertText": null, @@ -2131,11 +2557,17 @@ }, { "label": "Lock-Token", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Lock-Token", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Lock-Token", "filterText": "Lock-Token: ", "insertText": null, @@ -2161,11 +2593,17 @@ }, { "label": "MD", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "MD", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11MD", "filterText": "MD: ", "insertText": null, @@ -2191,11 +2629,17 @@ }, { "label": "Max-Forwards", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Max-Forwards", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Max-Forwards", "filterText": "Max-Forwards: ", "insertText": null, @@ -2221,11 +2665,17 @@ }, { "label": "Negotiate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Negotiate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Negotiate", "filterText": "Negotiate: ", "insertText": null, @@ -2251,11 +2701,17 @@ }, { "label": "Nice", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Nice", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Nice", "filterText": "Nice: ", "insertText": null, @@ -2281,11 +2737,17 @@ }, { "label": "Origin", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Origin", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Origin", "filterText": "Origin: ", "insertText": null, @@ -2311,11 +2773,17 @@ }, { "label": "Overwrite", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Overwrite", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Overwrite", "filterText": "Overwrite: ", "insertText": null, @@ -2341,11 +2809,17 @@ }, { "label": "POE", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "POE", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11POE", "filterText": "POE: ", "insertText": null, @@ -2371,11 +2845,17 @@ }, { "label": "POE-Links", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "POE-Links", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11POE-Links", "filterText": "POE-Links: ", "insertText": null, @@ -2401,11 +2881,17 @@ }, { "label": "Pragma", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Pragma", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Pragma", "filterText": "Pragma: ", "insertText": null, @@ -2431,11 +2917,17 @@ }, { "label": "Prefer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Prefer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Prefer", "filterText": "Prefer: ", "insertText": null, @@ -2461,11 +2953,17 @@ }, { "label": "Preference-Applied", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Preference-Applied", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Preference-Applied", "filterText": "Preference-Applied: ", "insertText": null, @@ -2491,11 +2989,17 @@ }, { "label": "Proxy-Authenticate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Proxy-Authenticate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Proxy-Authenticate", "filterText": "Proxy-Authenticate: ", "insertText": null, @@ -2521,11 +3025,17 @@ }, { "label": "Proxy-Authorization", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Proxy-Authorization", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Proxy-Authorization", "filterText": "Proxy-Authorization: ", "insertText": null, @@ -2551,11 +3061,17 @@ }, { "label": "RW", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "RW", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11RW", "filterText": "RW: ", "insertText": null, @@ -2581,11 +3097,17 @@ }, { "label": "Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Range", "filterText": "Range: ", "insertText": null, @@ -2611,11 +3133,17 @@ }, { "label": "Redirect-Ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Redirect-Ref", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Redirect-Ref", "filterText": "Redirect-Ref: ", "insertText": null, @@ -2641,11 +3169,17 @@ }, { "label": "Referer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Referer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Referer", "filterText": "Referer: ", "insertText": null, @@ -2671,11 +3205,17 @@ }, { "label": "Retry-After", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Retry-After", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Retry-After", "filterText": "Retry-After: ", "insertText": null, @@ -2701,11 +3241,17 @@ }, { "label": "SLUG", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "SLUG", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11SLUG", "filterText": "SLUG: ", "insertText": null, @@ -2731,11 +3277,17 @@ }, { "label": "Schedule-Reply", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Schedule-Reply", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Schedule-Reply", "filterText": "Schedule-Reply: ", "insertText": null, @@ -2761,11 +3313,17 @@ }, { "label": "Schedule-Tag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Schedule-Tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Schedule-Tag", "filterText": "Schedule-Tag: ", "insertText": null, @@ -2791,11 +3349,17 @@ }, { "label": "Sec-WebSocket-Accept", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Accept", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Accept", "filterText": "Sec-WebSocket-Accept: ", "insertText": null, @@ -2821,11 +3385,17 @@ }, { "label": "Sec-WebSocket-Extensions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Extensions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Extensions", "filterText": "Sec-WebSocket-Extensions: ", "insertText": null, @@ -2851,11 +3421,17 @@ }, { "label": "Sec-WebSocket-Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Key", "filterText": "Sec-WebSocket-Key: ", "insertText": null, @@ -2881,11 +3457,17 @@ }, { "label": "Sec-WebSocket-Protocol", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Protocol", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Protocol", "filterText": "Sec-WebSocket-Protocol: ", "insertText": null, @@ -2911,11 +3493,17 @@ }, { "label": "Sec-WebSocket-Version", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Version", "filterText": "Sec-WebSocket-Version: ", "insertText": null, @@ -2941,11 +3529,17 @@ }, { "label": "Server", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Server", "filterText": "Server: ", "insertText": null, @@ -2971,11 +3565,17 @@ }, { "label": "Set-Cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Set-Cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Set-Cookie", "filterText": "Set-Cookie: ", "insertText": null, @@ -3001,11 +3601,17 @@ }, { "label": "Set-Cookie2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Set-Cookie2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Set-Cookie2", "filterText": "Set-Cookie2: ", "insertText": null, @@ -3031,11 +3637,17 @@ }, { "label": "Status-URI", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Status-URI", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Status-URI", "filterText": "Status-URI: ", "insertText": null, @@ -3061,11 +3673,17 @@ }, { "label": "Strict-Transport-Security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Strict-Transport-Security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Strict-Transport-Security", "filterText": "Strict-Transport-Security: ", "insertText": null, @@ -3091,11 +3709,17 @@ }, { "label": "Sunset", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sunset", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sunset", "filterText": "Sunset: ", "insertText": null, @@ -3121,11 +3745,17 @@ }, { "label": "Surrogate-Capability", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Surrogate-Capability", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Surrogate-Capability", "filterText": "Surrogate-Capability: ", "insertText": null, @@ -3151,11 +3781,17 @@ }, { "label": "Surrogate-Control", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Surrogate-Control", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Surrogate-Control", "filterText": "Surrogate-Control: ", "insertText": null, @@ -3181,11 +3817,17 @@ }, { "label": "TCN", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TCN", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TCN", "filterText": "TCN: ", "insertText": null, @@ -3211,11 +3853,17 @@ }, { "label": "TE", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TE", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TE", "filterText": "TE: ", "insertText": null, @@ -3241,11 +3889,17 @@ }, { "label": "Timeout", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Timeout", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Timeout", "filterText": "Timeout: ", "insertText": null, @@ -3271,11 +3925,17 @@ }, { "label": "Tk", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Tk", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Tk", "filterText": "Tk: ", "insertText": null, @@ -3301,11 +3961,17 @@ }, { "label": "Transfer-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Transfer-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Transfer-Encoding", "filterText": "Transfer-Encoding: ", "insertText": null, @@ -3331,11 +3997,17 @@ }, { "label": "User-Agent", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "User-Agent", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11User-Agent", "filterText": "User-Agent: ", "insertText": null, @@ -3361,11 +4033,17 @@ }, { "label": "Variant-Vary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Variant-Vary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Variant-Vary", "filterText": "Variant-Vary: ", "insertText": null, @@ -3391,11 +4069,17 @@ }, { "label": "Vary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Vary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Vary", "filterText": "Vary: ", "insertText": null, @@ -3421,11 +4105,17 @@ }, { "label": "Via", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Via", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Via", "filterText": "Via: ", "insertText": null, @@ -3451,11 +4141,17 @@ }, { "label": "WWW-Authenticate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "WWW-Authenticate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11WWW-Authenticate", "filterText": "WWW-Authenticate: ", "insertText": null, @@ -3481,11 +4177,17 @@ }, { "label": "Warning", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Warning", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Warning", "filterText": "Warning: ", "insertText": null, @@ -3511,11 +4213,17 @@ }, { "label": "X-Frame-Options", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "X-Frame-Options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11X-Frame-Options", "filterText": "X-Frame-Options: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/header.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/header.raml.json index dccda28757..25443a6d00 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/header.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/header.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "repeat", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "repeat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11repeat", "filterText": "repeat: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/operation-protocol.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/operation-protocol.raml.json index 5cd23ebc53..933df27e6a 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/operation-protocol.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/operation-protocol.raml.json @@ -1,11 +1,17 @@ [ { "label": "HTTP", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP", "filterText": "\n- HTTP", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "HTTPS", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTPS", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTPS", "filterText": "\n- HTTPS", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/operation.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/operation.raml.json index 2d122287af..decb051145 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/operation.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/operation.raml.json @@ -1,11 +1,17 @@ [ { "label": "body", - "kind": [], + "kind": [ + + ], "detail": "body", "documentation": "body", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11body", "filterText": "body:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "queryParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "queryParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryParameters", "filterText": "queryParameters:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "responses:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/protocols-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/protocols-array.raml.json index 8ce60c818d..f0fdd79d93 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/protocols-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/protocols-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "HTTP", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP", "filterText": "HTTP", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "HTTPS", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTPS", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTPS", "filterText": "HTTPS", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/protocols.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/protocols.raml.json index 6d74d0ea57..7121738f21 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/protocols.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/protocols.raml.json @@ -1,11 +1,17 @@ [ { "label": "HTTP", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP", "filterText": "\n- HTTP", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "HTTPS", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTPS", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTPS", "filterText": "\n- HTTPS", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/query-parameter-name.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/query-parameter-name.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/query-parameter-name.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/query-parameter-name.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/query-parameter.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/query-parameter.raml.json index dccda28757..25443a6d00 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/query-parameter.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/query-parameter.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "repeat", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "repeat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11repeat", "filterText": "repeat: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-exapanded.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-exapanded.raml.json index 9819c5c812..c67e1e543b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-exapanded.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-exapanded.raml.json @@ -1,11 +1,17 @@ [ { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-existing.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-existing.raml.json index f875db07c4..293ff5ff3e 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-existing.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-existing.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-form-exapanded.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-form-exapanded.raml.json index 98b5d64f86..b01fe782de 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-form-exapanded.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body-media-type-form-exapanded.raml.json @@ -1,11 +1,17 @@ [ { "label": "formParameters", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "formParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11formParameters", "filterText": "formParameters:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "schema", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schema", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schema", "filterText": "schema: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body.raml.json index 3967ceda33..183ba08a16 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-body.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-codes.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-codes.raml.json index 5ce0e62876..bb65aa0a36 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-codes.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-codes.raml.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "100:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "101:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "102:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "200:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "201:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "202:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "203:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "204:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "205:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "206:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "207:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "208:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "226:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "300:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "301:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "302:\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "303:\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "304:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "305:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "306:\n ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "307:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "308:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "400:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "401:\n ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "402:\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "403:\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "404:\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "405:\n ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "406:\n ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "407:\n ", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "408:\n ", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "409:\n ", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "410:\n ", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "411:\n ", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "412:\n ", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "413:\n ", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "414:\n ", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "415:\n ", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "416:\n ", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "417:\n ", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "418:\n ", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "420:\n ", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "422:\n ", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "423:\n ", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "424:\n ", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "425:\n ", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "426:\n ", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "428:\n ", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "429:\n ", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "431:\n ", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "444:\n ", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "449:\n ", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "450:\n ", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "451:\n ", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "499:\n ", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "500:\n ", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "501:\n ", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "502:\n ", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "503:\n ", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "504:\n ", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "505:\n ", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "506:\n ", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "507:\n ", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "508:\n ", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "509:\n ", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "510:\n ", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "511:\n ", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "598:\n ", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "599:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-headers.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-headers.raml.json index f6590fc1f0..c674f1c6c8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-headers.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response-headers.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "repeat", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "repeat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11repeat", "filterText": "repeat: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response.raml.json index 0d84c88f4f..14a341e4fc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/response.raml.json @@ -1,11 +1,17 @@ [ { "label": "body", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "body", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11body", "filterText": "body:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/schema-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/schema-type.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/schema-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/schema-type.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/securedBy-in-line.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/securedBy-in-line.raml.json index 68b1384377..ab756d0817 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/securedBy-in-line.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/securedBy-in-line.raml.json @@ -1,11 +1,17 @@ [ { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/securedBy-next-line.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/securedBy-next-line.raml.json index e727df1813..86496e639c 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/securedBy-next-line.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/operation/expected/securedBy-next-line.raml.json @@ -1,11 +1,17 @@ [ { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/authorization-grants-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/authorization-grants-array.raml.json index e4d837f70d..aca155a0ef 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/authorization-grants-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/authorization-grants-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "code", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "code", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11code", "filterText": "code", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "credentials", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "credentials", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11credentials", "filterText": "credentials", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "owner", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "owner", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11owner", "filterText": "owner", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "token", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "token", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11token", "filterText": "token", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/authorization-grants.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/authorization-grants.raml.json index 027056abd3..170ac579bb 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/authorization-grants.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/authorization-grants.raml.json @@ -1,11 +1,17 @@ [ { "label": "code", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "code", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11code", "filterText": "\n- code", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "credentials", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "credentials", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11credentials", "filterText": "\n- credentials", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "owner", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "owner", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11owner", "filterText": "\n- owner", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "token", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "token", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11token", "filterText": "\n- token", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/endpoint-secured-by-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/endpoint-secured-by-array.raml.json index efdb94de79..cc390566d5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/endpoint-secured-by-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/endpoint-secured-by-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "obasic", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "obasic", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11obasic", "filterText": "obasic: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/endpoint-secured-by.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/endpoint-secured-by.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/endpoint-secured-by.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/endpoint-secured-by.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/oauth2-securityScheme.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/oauth2-securityScheme.raml.json index bf9a05dd7b..787cc02320 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/oauth2-securityScheme.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/oauth2-securityScheme.raml.json @@ -1,11 +1,17 @@ [ { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11null", "filterText": "null", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/scopes-oauth2.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/scopes-oauth2.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/scopes-oauth2.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/scopes-oauth2.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/secured-by-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/secured-by-array.raml.json index 3704185ad5..365ffe05a9 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/secured-by-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/secured-by-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "obasic", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "obasic", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11obasic", "filterText": "obasic: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/secured-by.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/secured-by.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/secured-by.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/secured-by.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/security-schemes-facets.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/security-schemes-facets.raml.json index c49b131f12..ee1e9b2d77 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/security-schemes-facets.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/security-schemes-facets.raml.json @@ -1,11 +1,17 @@ [ { "label": "describedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "describedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11describedBy", "filterText": "describedBy:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "settings", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "settings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11settings", "filterText": "settings:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/security-schemes.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/security-schemes.raml.json index 03c73a65a8..4c61479eaa 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/security-schemes.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/security/expected/security-schemes.raml.json @@ -1,11 +1,17 @@ [ { "label": "Basic Authentication", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Basic Authentication", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10Basic Authentication", "filterText": "Basic Authentication", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "Digest Authentication", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Digest Authentication", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10Digest Authentication", "filterText": "Digest Authentication", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "OAuth 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "OAuth 1.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10OAuth 1.0", "filterText": "OAuth 1.0", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "OAuth 2.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "OAuth 2.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10OAuth 2.0", "filterText": "OAuth 2.0", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "x-", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "x-", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10x-", "filterText": "x-", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameter-with-prefix.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameter-with-prefix.raml.json index d84939df6e..bbe9de7954 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameter-with-prefix.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameter-with-prefix.raml.json @@ -1,11 +1,17 @@ [ { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameter.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameter.raml.json index 74cafa4b21..27499bceab 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameter.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameter.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "repeat", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "repeat", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11repeat", "filterText": "repeat: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameters.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameters.raml.json index e5d1ab1bd6..b14915c479 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameters.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/base-uri-parameters.raml.json @@ -1,11 +1,17 @@ [ { "label": "parameter", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "parameter", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter", "filterText": "parameter:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/documentation-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/documentation-array.raml.json index 5b8f90b43a..5ab6e0e165 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/documentation-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/documentation-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10content", "filterText": "content: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/documentation.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/documentation.raml.json index 7ced2e3a4d..cb9fcee286 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/documentation.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/documentation.raml.json @@ -1,11 +1,17 @@ [ { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10content", "filterText": "content: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/empty-header.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/empty-header.raml.json index 6b1a6865b8..f8aba85aac 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/empty-header.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/empty-header.raml.json @@ -1,11 +1,17 @@ [ { "label": "#%RAML 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0", "filterText": "#%RAML 1.0", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/empty.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/empty.raml.json index a3c476cb31..5e721a62f3 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/empty.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/empty.raml.json @@ -1,11 +1,17 @@ [ { "label": "#%RAML 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0", "filterText": "#%RAML 1.0", "insertText": null, @@ -29,4 +35,4 @@ "commitCharacters": null, "command": null } -] +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/external-continue.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/external-continue.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/external-continue.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/external-continue.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/external-inline.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/external-inline.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/external-inline.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/external-inline.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/media-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/media-type.raml.json index f005d5be3d..ba83a618f3 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/media-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/media-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\n- application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "\n- application/xml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/protocols-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/protocols-array.raml.json index 8ce60c818d..f0fdd79d93 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/protocols-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/protocols-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "HTTP", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP", "filterText": "HTTP", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "HTTPS", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTPS", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTPS", "filterText": "HTTPS", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/protocols.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/protocols.raml.json index 6d74d0ea57..7121738f21 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/protocols.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/protocols.raml.json @@ -1,11 +1,17 @@ [ { "label": "HTTP", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP", "filterText": "\n- HTTP", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "HTTPS", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTPS", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTPS", "filterText": "\n- HTTPS", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/root.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/root.raml.json index 859488c31a..83d712c796 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/root.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/root.raml.json @@ -1,11 +1,17 @@ [ { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "baseUri", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "baseUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUri", "filterText": "baseUri: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "mediaType", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "mediaType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mediaType", "filterText": "mediaType: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "schemas", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "schemas", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11schemas", "filterText": "schemas:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11version", "filterText": "version: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/schemas.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/schemas.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/schemas.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/schemas.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/uses.raml.json b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/uses.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/uses.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml08/by-directory/top-level/expected/uses.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/alias-from-library.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/alias-from-library.raml.json index eebe7e69fc..e8e6910301 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/alias-from-library.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/alias-from-library.raml.json @@ -1,11 +1,17 @@ [ { "label": "(lib.", - "kind": [], + "kind": [ + + ], "detail": "annotations", "documentation": "(lib.", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21(lib.", "filterText": "(lib.", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-description.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-description.raml.json index deb2ed20da..e8e40dc2f9 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-description.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-description.raml.json @@ -1,11 +1,17 @@ [ { "label": "(myAnnotation)", - "kind": [], + "kind": [ + + ], "detail": "annotations", "documentation": "(myAnnotation)", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21(myAnnotation)", "filterText": "(myAnnotation): ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "value", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "value", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11value", "filterText": "value: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-endpoint.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-endpoint.raml.json index 1cce6ca51f..7073c1498f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-endpoint.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-endpoint.raml.json @@ -1,11 +1,17 @@ [ { "label": "(myAnnotation)", - "kind": [], + "kind": [ + + ], "detail": "annotations", "documentation": "(myAnnotation)", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21(myAnnotation)", "filterText": "(myAnnotation): ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11type", "filterText": "type:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "uriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uriParameters", "filterText": "uriParameters:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-operation.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-operation.raml.json index fb95c96a46..11d97c3870 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-operation.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-operation.raml.json @@ -1,11 +1,17 @@ [ { "label": "(myAnnotation)", - "kind": [], + "kind": [ + + ], "detail": "annotations", "documentation": "(myAnnotation)", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21(myAnnotation)", "filterText": "(myAnnotation): ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "body", - "kind": [], + "kind": [ + + ], "detail": "body", "documentation": "body", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11body", "filterText": "body:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "queryParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "queryParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryParameters", "filterText": "queryParameters:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "queryString", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "queryString", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryString", "filterText": "queryString:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "responses:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-response.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-response.raml.json index ef4ebb825a..9b6370b5fa 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-response.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-response.raml.json @@ -1,11 +1,17 @@ [ { "label": "(myAnnotation)", - "kind": [], + "kind": [ + + ], "detail": "annotations", "documentation": "(myAnnotation)", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21(myAnnotation)", "filterText": "(myAnnotation): ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "body", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "body", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11body", "filterText": "body:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-root.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-root.raml.json index 8872ace73e..fbe3f6ccb4 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-root.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-root.raml.json @@ -1,11 +1,17 @@ [ { "label": "(myAnnotation)", - "kind": [], + "kind": [ + + ], "detail": "annotations", "documentation": "(myAnnotation)", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21(myAnnotation)", "filterText": "(myAnnotation): ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUri", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "baseUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUri", "filterText": "baseUri: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mediaType", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "mediaType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mediaType", "filterText": "mediaType: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11version", "filterText": "version: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-type.raml.json index f2dcbeecc5..c46c070185 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/at-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "(myAnnotation)", - "kind": [], + "kind": [ + + ], "detail": "annotations", "documentation": "(myAnnotation)", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21(myAnnotation)", "filterText": "(myAnnotation): ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-allowed-targets-flow.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-allowed-targets-flow.raml.json index c032231269..06f30e679e 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-allowed-targets-flow.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-allowed-targets-flow.raml.json @@ -1,11 +1,17 @@ [ { "label": "API", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "API", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11API", "filterText": "API", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "AnnotationType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "AnnotationType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11AnnotationType", "filterText": "AnnotationType", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "DocumentationItem", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DocumentationItem", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DocumentationItem", "filterText": "DocumentationItem", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "Example", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Example", "filterText": "Example", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "Extension", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Extension", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Extension", "filterText": "Extension", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "Library", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Library", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Library", "filterText": "Library", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "Method", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Method", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Method", "filterText": "Method", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "Overlay", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Overlay", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Overlay", "filterText": "Overlay", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "RequestBody", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "RequestBody", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11RequestBody", "filterText": "RequestBody", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "Resource", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Resource", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Resource", "filterText": "Resource", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "ResourceType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ResourceType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ResourceType", "filterText": "ResourceType", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "Response", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Response", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Response", "filterText": "Response", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "ResponseBody", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ResponseBody", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ResponseBody", "filterText": "ResponseBody", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "SecurityScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "SecurityScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11SecurityScheme", "filterText": "SecurityScheme", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "SecuritySchemeSettings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "SecuritySchemeSettings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11SecuritySchemeSettings", "filterText": "SecuritySchemeSettings", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "Trait", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Trait", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Trait", "filterText": "Trait", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "TypeDeclaration", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TypeDeclaration", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TypeDeclaration", "filterText": "TypeDeclaration", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-allowed-targets.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-allowed-targets.raml.json index e65625994b..41ecaf65dc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-allowed-targets.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-allowed-targets.raml.json @@ -1,11 +1,17 @@ [ { "label": "API", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "API", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11API", "filterText": "API", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "AnnotationType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "AnnotationType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11AnnotationType", "filterText": "AnnotationType", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "DocumentationItem", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DocumentationItem", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DocumentationItem", "filterText": "DocumentationItem", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "Example", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Example", "filterText": "Example", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "Extension", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Extension", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Extension", "filterText": "Extension", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "Library", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Library", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Library", "filterText": "Library", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "Method", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Method", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Method", "filterText": "Method", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "Overlay", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Overlay", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Overlay", "filterText": "Overlay", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "RequestBody", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "RequestBody", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11RequestBody", "filterText": "RequestBody", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "Resource", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Resource", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Resource", "filterText": "Resource", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "ResourceType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ResourceType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ResourceType", "filterText": "ResourceType", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "Response", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Response", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Response", "filterText": "Response", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "ResponseBody", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ResponseBody", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ResponseBody", "filterText": "ResponseBody", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "SecurityScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "SecurityScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11SecurityScheme", "filterText": "SecurityScheme", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "SecuritySchemeSettings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "SecuritySchemeSettings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11SecuritySchemeSettings", "filterText": "SecuritySchemeSettings", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "Trait", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Trait", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Trait", "filterText": "Trait", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "TypeDeclaration", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TypeDeclaration", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TypeDeclaration", "filterText": "TypeDeclaration", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-inline.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-inline.raml.json index e141de8e74..0391334fd4 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-inline.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-inline.raml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-names.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-names.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-names.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-names.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-with-prefix-d.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-with-prefix-d.raml.json index 8412dab84b..c51c0ab77d 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-with-prefix-d.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-with-prefix-d.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-with-prefix-m.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-with-prefix-m.raml.json index fe51488c70..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-with-prefix-m.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration-with-prefix-m.raml.json @@ -1 +1,3 @@ -[] +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration.raml.json index d6b5d940be..808d01e2e5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/declaration.raml.json @@ -1,11 +1,17 @@ [ { "label": "allowedTargets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowedTargets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowedTargets", "filterText": "allowedTargets:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/from-library.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/from-library.raml.json index 91b37cdaef..f5af747684 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/from-library.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/annotations/expected/from-library.raml.json @@ -1,11 +1,17 @@ [ { "label": "myAnnotation)", - "kind": [], + "kind": [ + + ], "detail": "annotations", "documentation": "(lib.myAnnotation)", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21myAnnotation)", "filterText": "(lib.myAnnotation): ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/resourcetypes-inline.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/resourcetypes-inline.raml.json index c4d5e9a91f..5f7f62c372 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/resourcetypes-inline.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/resourcetypes-inline.raml.json @@ -1,11 +1,17 @@ [ { "label": "resourceType2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourceType2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceType2", "filterText": "resourceType2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/resourcetypes.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/resourcetypes.raml.json index 8bb1568b0c..28b5eeb11b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/resourcetypes.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/resourcetypes.raml.json @@ -1,11 +1,17 @@ [ { "label": "New resourceType1", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "resourceType1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New resourceType1", "filterText": "resourceType1:\n param1: $1\n param2: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "resourceType2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourceType2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceType2", "filterText": "resourceType2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/traits.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/traits.raml.json index 5186f0efa3..a9989f8345 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/traits.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/duplicated/expected/traits.raml.json @@ -1,11 +1,17 @@ [ { "label": "trait1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trait1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait1", "filterText": "trait1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "trait2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trait2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait2", "filterText": "trait2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/api.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/api.raml.json index 7b6554a372..771f099094 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/api.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/api.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\n- application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "\n- application/xml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inline-before-bracket.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inline-before-bracket.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inline-before-bracket.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inline-before-bracket.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inlined-inside-bracket.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inlined-inside-bracket.raml.json index 94948e6b8f..d2714bf182 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inlined-inside-bracket.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inlined-inside-bracket.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inlined-outside-bracket.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inlined-outside-bracket.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inlined-outside-bracket.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inlined-outside-bracket.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inside-at-enum.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inside-at-enum.raml.json index 47fe8bffda..4596340310 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inside-at-enum.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inside-at-enum.raml.json @@ -1,11 +1,17 @@ [ { "label": "HTTP", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP", "filterText": "HTTP", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "HTTPS", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTPS", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTPS", "filterText": "HTTPS", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inside-security-facet.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inside-security-facet.raml.json index 3c15ba9d07..6c67a7e000 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inside-security-facet.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/inside-security-facet.raml.json @@ -1,11 +1,17 @@ [ { "label": "authorization_code", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "authorization_code", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorization_code", "filterText": "authorization_code", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "client_credentials", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "client_credentials", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11client_credentials", "filterText": "client_credentials", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "implicit", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "implicit", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11implicit", "filterText": "implicit", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11password", "filterText": "password", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-at-enum.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-at-enum.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-at-enum.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-at-enum.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-enum-populated.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-enum-populated.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-enum-populated.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-enum-populated.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-security-facet.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-security-facet.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-security-facet.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/inline-array-bracket/expected/outside-security-facet.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/multiple-operations/expected/multiple-operations.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/multiple-operations/expected/multiple-operations.raml.json index 3beeac194a..1ebc30e2cb 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/multiple-operations/expected/multiple-operations.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/multiple-operations/expected/multiple-operations.raml.json @@ -1,11 +1,17 @@ [ { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11type", "filterText": "type:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "uriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uriParameters", "filterText": "uriParameters:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api-without-colon.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api-without-colon.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api-without-colon.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api-without-colon.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api-without-key.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api-without-key.raml.json index 328e720ec6..9c8ac1f808 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api-without-key.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api-without-key.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/new-line-with-colon/expected/api.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api-trait-include.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api-trait-include.raml.json index f3a316243b..d674c81567 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api-trait-include.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api-trait-include.raml.json @@ -1,11 +1,17 @@ [ { "label": "/api-trait-inlined.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11/api-trait-inlined.raml", "filterText": "/api-trait-inlined.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "/api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11/api.raml", "filterText": "/api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "/double-slash.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11/double-slash.raml", "filterText": "/double-slash.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "/expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11/expected/", "filterText": "/expected/", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api-trait-inlined.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api-trait-inlined.raml.json index 0ad4011089..9dd2770ca1 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api-trait-inlined.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api-trait-inlined.raml.json @@ -1,11 +1,17 @@ [ { "label": "api-trait-include.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api-trait-include.raml", "filterText": "api-trait-include.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "double-slash.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11double-slash.raml", "filterText": "double-slash.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api.raml.json index 14a2a6bfbc..8c525185a6 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/api.raml.json @@ -1,11 +1,17 @@ [ { "label": "/expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11/expected/", "filterText": "/expected/", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/double-slash.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/double-slash.raml.json index 56cfc831ad..e5ea51ec17 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/double-slash.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/path-suggestion/expected/double-slash.raml.json @@ -1,11 +1,17 @@ [ { "label": "api-trait-include.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api-trait-include.raml", "filterText": "//api-trait-include.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api-trait-inlined.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api-trait-inlined.raml", "filterText": "//api-trait-inlined.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "//api.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "double-slash.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11double-slash.raml", "filterText": "//double-slash.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "//expected/", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root0.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root0.raml.json index d75cf45388..59a392e3fa 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root0.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root0.raml.json @@ -1,11 +1,17 @@ [ { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "annotationTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "annotationTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationTypes", "filterText": "annotationTypes:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root1.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root1.raml.json index 939b83edd1..dc214d4941 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root1.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root1.raml.json @@ -1,11 +1,17 @@ [ { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "annotationTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "annotationTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationTypes", "filterText": "annotationTypes:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root2.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root2.raml.json index 95d71c5bb5..7bc2c2e841 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root2.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root2.raml.json @@ -1,11 +1,17 @@ [ { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "annotationTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "annotationTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationTypes", "filterText": "annotationTypes:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root3.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root3.raml.json index e21749beb4..b8ccf11069 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root3.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root3.raml.json @@ -1,11 +1,17 @@ [ { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "annotationTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "annotationTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationTypes", "filterText": "annotationTypes:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root4.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root4.raml.json index c6920702f6..d7c82e55db 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root4.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root4.raml.json @@ -1,11 +1,17 @@ [ { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "annotationTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "annotationTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationTypes", "filterText": "annotationTypes:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root5.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root5.raml.json index 9581a41827..19fc4c3233 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root5.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/root-cases/expected/root5.raml.json @@ -1,11 +1,17 @@ [ { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "annotationTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "annotationTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationTypes", "filterText": "annotationTypes:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-01.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-01.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-01.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-01.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-02.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-02.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-02.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-02.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-03.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-03.raml.json index 9c50f62e79..8b01ed2be4 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-03.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-03.raml.json @@ -1,11 +1,17 @@ [ { "label": "dot-prefix-01.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dot-prefix-01.raml", "filterText": "./dot-prefix-01.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "dot-prefix-02.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dot-prefix-02.raml", "filterText": "./dot-prefix-02.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "dot-prefix-03.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dot-prefix-03.raml", "filterText": "./dot-prefix-03.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "dot-prefix-04.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dot-prefix-04.raml", "filterText": "./dot-prefix-04.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "./expected/", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-04.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-04.raml.json index bd0ec453a4..d527eb6074 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-04.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/uses-with-dot-prefix/expected/dot-prefix-04.raml.json @@ -1,11 +1,17 @@ [ { "label": "dot-prefix-01.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dot-prefix-01.raml", "filterText": "./dot-prefix-01.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "dot-prefix-02.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dot-prefix-02.raml", "filterText": "./dot-prefix-02.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "dot-prefix-03.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dot-prefix-03.raml", "filterText": "./dot-prefix-03.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "dot-prefix-04.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11dot-prefix-04.raml", "filterText": "./dot-prefix-04.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "./expected/", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/writing-prefix/expected/description.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/writing-prefix/expected/description.raml.json index 52fdada811..a86696e837 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/writing-prefix/expected/description.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/custom/writing-prefix/expected/description.raml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/endpoint.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/endpoint.raml.json index 01265945ec..abeb39cc9c 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/endpoint.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/endpoint.raml.json @@ -1,11 +1,17 @@ [ { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11type", "filterText": "type:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "uriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uriParameters", "filterText": "uriParameters:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/nested.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/nested.raml.json index 2072e6971e..bfe72b7729 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/nested.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/nested.raml.json @@ -1,11 +1,17 @@ [ { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11type", "filterText": "type:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "uriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uriParameters", "filterText": "uriParameters:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/second-mime.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/second-mime.raml.json index 259809101c..18702e1461 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/second-mime.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/second-mime.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter-nested.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter-nested.raml.json index d80f453375..f8255d599c 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter-nested.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter-nested.raml.json @@ -1,11 +1,17 @@ [ { "label": "anotherUri", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "anotherUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anotherUri", "filterText": "anotherUri:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "uri", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uri", "filterText": "uri:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter-props.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter-props.raml.json index c211627f32..6fa4bfc7b7 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter-props.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter-props.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter.raml.json index e5fdd0c808..a5637d56fa 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/endpoints/expected/uri-parameter.raml.json @@ -1,11 +1,17 @@ [ { "label": "uri", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uri", "filterText": "uri:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-complex-object-type-with-bracket.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-complex-object-type-with-bracket.raml.json index ae1d87e64a..d91ee0bfa5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-complex-object-type-with-bracket.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-complex-object-type-with-bracket.raml.json @@ -1,11 +1,17 @@ [ { "label": "c", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "c", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10c", "filterText": "c:", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "d", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "d", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10d", "filterText": "d:", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-complex-object-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-complex-object-type.raml.json index 80b2799b69..dad093a216 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-complex-object-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-complex-object-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "c", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "c", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10c", "filterText": "c: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "d", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "d", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10d", "filterText": "d: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-expanded.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-expanded.raml.json index 4c81420f08..a3f85a5eb2 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-expanded.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-expanded.raml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "strict", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "strict", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11strict", "filterText": "strict: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "value", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "value", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11value", "filterText": "value: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-object-well.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-object-well.raml.json index 7e4cc8fa6a..1ccd04958b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-object-well.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-object-well.raml.json @@ -1,11 +1,17 @@ [ { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p1", "filterText": "p1: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "p2", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p2", "filterText": "p2: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-object.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-object.raml.json index 7b54f7700d..b5383e76c1 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-object.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array-object.raml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "strict", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "strict", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11strict", "filterText": "strict: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "value", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "value", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11value", "filterText": "value: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/array.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-expanded.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-expanded.raml.json index b13687e06e..c5d0b1186d 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-expanded.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-expanded.raml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p1", "filterText": "p1: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "p2", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p2", "filterText": "p2: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "strict", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "strict", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11strict", "filterText": "strict: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "value", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "value", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11value", "filterText": "value: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-inheritance-two-levels.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-inheritance-two-levels.raml.json index 4d7f7f1054..aed1baacd1 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-inheritance-two-levels.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-inheritance-two-levels.raml.json @@ -1,11 +1,17 @@ [ { "label": "position", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "position", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10position", "filterText": "position: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "specializedIn", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "specializedIn", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10specializedIn", "filterText": "specializedIn: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "wageRequested", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "wageRequested", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10wageRequested", "filterText": "wageRequested: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-prop-value.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-prop-value.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-prop-value.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-prop-value.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-withprop-two-level.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-withprop-two-level.raml.json index 00475a3338..54eaa9ea65 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-withprop-two-level.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-withprop-two-level.raml.json @@ -1,11 +1,17 @@ [ { "label": "p2", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p2", "filterText": "p2: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "p3", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p3", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p3", "filterText": "p3: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-withprop.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-withprop.raml.json index 2d7d4c52ca..c3f1bb2f7c 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-withprop.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object-withprop.raml.json @@ -1,11 +1,17 @@ [ { "label": "p2", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p2", "filterText": "p2: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/object.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon-with-value.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon-with-value.raml.json index f765406466..790617ff15 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon-with-value.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon-with-value.raml.json @@ -1,11 +1,17 @@ [ { "label": "valueEight", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "valueEight", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10valueEight", "filterText": "valueEight: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "valueSeven", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "valueSeven", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10valueSeven", "filterText": "valueSeven: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon-without-key.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon-without-key.raml.json index cbc98cc06d..d638484d61 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon-without-key.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon-without-key.raml.json @@ -1,11 +1,17 @@ [ { "label": "valueEight", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "valueEight", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10valueEight", "filterText": "valueEight: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "valueSeven", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "valueSeven", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10valueSeven", "filterText": "valueSeven: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon.raml.json index f765406466..790617ff15 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-colon.raml.json @@ -1,11 +1,17 @@ [ { "label": "valueEight", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "valueEight", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10valueEight", "filterText": "valueEight: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "valueSeven", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "valueSeven", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10valueSeven", "filterText": "valueSeven: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-key-without-colon.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-key-without-colon.raml.json index 40cfd9dfb2..85ab5bf6d5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-key-without-colon.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/properties-with-key-without-colon.raml.json @@ -1,11 +1,17 @@ [ { "label": "valueEight", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "valueEight", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10valueEight", "filterText": "valueEight: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "valueSeven", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "valueSeven", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10valueSeven", "filterText": "valueSeven: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/scalar.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/scalar.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/scalar.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/scalar.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/with-explicit-value.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/with-explicit-value.raml.json index cc73dc65c2..5afa59d877 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/with-explicit-value.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/example/expected/with-explicit-value.raml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "strict", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "strict", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11strict", "filterText": "strict: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/annotation.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/annotation.raml.json index 8d0a8da471..9944a99209 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/annotation.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/annotation.raml.json @@ -1,11 +1,17 @@ [ { "label": "allowedTargets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "allowedTargets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allowedTargets", "filterText": "allowedTargets:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type-properties.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type-properties.raml.json index 228c8eff44..1cad7ce3bc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type-properties.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type-properties.raml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type-uses.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type-uses.raml.json index c38e99497c..88f475f7b0 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type-uses.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type-uses.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "documentation-item-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item-uses.raml", "filterText": "documentation-item-uses.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "extension-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension-extends.raml", "filterText": "extension-extends.raml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "include-annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-annotation.raml", "filterText": "include-annotation.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-data-type.raml", "filterText": "include-data-type.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-named-example.raml", "filterText": "include-named-example.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-resource-type.raml", "filterText": "include-resource-type.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-security-scheme.raml", "filterText": "include-security-scheme.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-trait.raml", "filterText": "include-trait.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "overlay-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay-extends.raml", "filterText": "overlay-extends.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "resource-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type-uses.raml", "filterText": "resource-type-uses.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "security-scheme-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme-uses.raml", "filterText": "security-scheme-uses.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type.raml.json index 567c06979b..c25a2f58e4 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/data-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/documentation-item-uses.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/documentation-item-uses.raml.json index d74b1bd8bc..2156b1e789 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/documentation-item-uses.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/documentation-item-uses.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-uses.raml", "filterText": "data-type-uses.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "extension-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension-extends.raml", "filterText": "extension-extends.raml", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "include-annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-annotation.raml", "filterText": "include-annotation.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-data-type.raml", "filterText": "include-data-type.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-named-example.raml", "filterText": "include-named-example.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-resource-type.raml", "filterText": "include-resource-type.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-security-scheme.raml", "filterText": "include-security-scheme.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-trait.raml", "filterText": "include-trait.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "overlay-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay-extends.raml", "filterText": "overlay-extends.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "resource-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type-uses.raml", "filterText": "resource-type-uses.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "security-scheme-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme-uses.raml", "filterText": "security-scheme-uses.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/documentation-item.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/documentation-item.raml.json index 87f925a935..a5a935b0dc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/documentation-item.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/documentation-item.raml.json @@ -1,11 +1,17 @@ [ { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10content", "filterText": "content: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/extension-extends.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/extension-extends.raml.json index 5093a5fc8b..5c37e0f226 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/extension-extends.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/extension-extends.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-uses.raml", "filterText": "data-type-uses.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item-uses.raml", "filterText": "documentation-item-uses.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "include-annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-annotation.raml", "filterText": "include-annotation.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-data-type.raml", "filterText": "include-data-type.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-named-example.raml", "filterText": "include-named-example.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-resource-type.raml", "filterText": "include-resource-type.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-security-scheme.raml", "filterText": "include-security-scheme.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-trait.raml", "filterText": "include-trait.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "overlay-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay-extends.raml", "filterText": "overlay-extends.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "resource-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type-uses.raml", "filterText": "resource-type-uses.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "security-scheme-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme-uses.raml", "filterText": "security-scheme-uses.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/extension.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/extension.raml.json index 456986ccbe..25e65c779f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/extension.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/extension.raml.json @@ -1,11 +1,17 @@ [ { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "annotationTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "annotationTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationTypes", "filterText": "annotationTypes:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUri", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "baseUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUri", "filterText": "baseUri: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "extends", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "extends", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10extends", "filterText": "extends: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "mediaType", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "mediaType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mediaType", "filterText": "mediaType: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "usage", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "usage", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11usage", "filterText": "usage: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11version", "filterText": "version: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-annotation.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-annotation.raml.json index df07315d4a..abc036533f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-annotation.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-annotation.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-uses.raml", "filterText": "data-type-uses.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item-uses.raml", "filterText": "documentation-item-uses.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension-extends.raml", "filterText": "extension-extends.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-data-type.raml", "filterText": "include-data-type.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-named-example.raml", "filterText": "include-named-example.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-resource-type.raml", "filterText": "include-resource-type.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-security-scheme.raml", "filterText": "include-security-scheme.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-trait.raml", "filterText": "include-trait.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "overlay-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay-extends.raml", "filterText": "overlay-extends.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "resource-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type-uses.raml", "filterText": "resource-type-uses.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "security-scheme-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme-uses.raml", "filterText": "security-scheme-uses.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-data-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-data-type.raml.json index c9e6277c48..bc219a3649 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-data-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-data-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-uses.raml", "filterText": "data-type-uses.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item-uses.raml", "filterText": "documentation-item-uses.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension-extends.raml", "filterText": "extension-extends.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-annotation.raml", "filterText": "include-annotation.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-named-example.raml", "filterText": "include-named-example.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-resource-type.raml", "filterText": "include-resource-type.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-security-scheme.raml", "filterText": "include-security-scheme.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-trait.raml", "filterText": "include-trait.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "overlay-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay-extends.raml", "filterText": "overlay-extends.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "resource-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type-uses.raml", "filterText": "resource-type-uses.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "security-scheme-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme-uses.raml", "filterText": "security-scheme-uses.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-named-example.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-named-example.raml.json index 36c020bd57..ecd9b581c6 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-named-example.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-named-example.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-uses.raml", "filterText": "data-type-uses.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item-uses.raml", "filterText": "documentation-item-uses.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension-extends.raml", "filterText": "extension-extends.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-annotation.raml", "filterText": "include-annotation.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-data-type.raml", "filterText": "include-data-type.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-resource-type.raml", "filterText": "include-resource-type.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-security-scheme.raml", "filterText": "include-security-scheme.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-trait.raml", "filterText": "include-trait.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "overlay-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay-extends.raml", "filterText": "overlay-extends.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "resource-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type-uses.raml", "filterText": "resource-type-uses.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "security-scheme-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme-uses.raml", "filterText": "security-scheme-uses.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-resource-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-resource-type.raml.json index e285df369f..1ce35d8d42 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-resource-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-resource-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-uses.raml", "filterText": "data-type-uses.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item-uses.raml", "filterText": "documentation-item-uses.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension-extends.raml", "filterText": "extension-extends.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-annotation.raml", "filterText": "include-annotation.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-data-type.raml", "filterText": "include-data-type.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-named-example.raml", "filterText": "include-named-example.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-security-scheme.raml", "filterText": "include-security-scheme.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-trait.raml", "filterText": "include-trait.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "overlay-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay-extends.raml", "filterText": "overlay-extends.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "resource-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type-uses.raml", "filterText": "resource-type-uses.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "security-scheme-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme-uses.raml", "filterText": "security-scheme-uses.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-security-scheme.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-security-scheme.raml.json index e27c050fe9..de3150ee7a 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-security-scheme.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-security-scheme.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-uses.raml", "filterText": "data-type-uses.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item-uses.raml", "filterText": "documentation-item-uses.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension-extends.raml", "filterText": "extension-extends.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-annotation.raml", "filterText": "include-annotation.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-data-type.raml", "filterText": "include-data-type.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-named-example.raml", "filterText": "include-named-example.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-resource-type.raml", "filterText": "include-resource-type.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-trait.raml", "filterText": "include-trait.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "overlay-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay-extends.raml", "filterText": "overlay-extends.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "resource-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type-uses.raml", "filterText": "resource-type-uses.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "security-scheme-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme-uses.raml", "filterText": "security-scheme-uses.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-trait.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-trait.raml.json index cd24c80ecc..a6924e63d1 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-trait.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/include-trait.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-uses.raml", "filterText": "data-type-uses.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item-uses.raml", "filterText": "documentation-item-uses.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension-extends.raml", "filterText": "extension-extends.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-annotation.raml", "filterText": "include-annotation.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-data-type.raml", "filterText": "include-data-type.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-named-example.raml", "filterText": "include-named-example.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-resource-type.raml", "filterText": "include-resource-type.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-security-scheme.raml", "filterText": "include-security-scheme.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "overlay-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay-extends.raml", "filterText": "overlay-extends.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "resource-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type-uses.raml", "filterText": "resource-type-uses.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "security-scheme-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme-uses.raml", "filterText": "security-scheme-uses.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/named-example-uses.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/named-example-uses.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/named-example-uses.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/named-example-uses.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/named-example.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/named-example.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/named-example.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/named-example.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/overlay-extends.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/overlay-extends.raml.json index f630db513a..270e4cbe04 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/overlay-extends.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/overlay-extends.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-uses.raml", "filterText": "data-type-uses.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item-uses.raml", "filterText": "documentation-item-uses.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension-extends.raml", "filterText": "extension-extends.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-annotation.raml", "filterText": "include-annotation.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-data-type.raml", "filterText": "include-data-type.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-named-example.raml", "filterText": "include-named-example.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-resource-type.raml", "filterText": "include-resource-type.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-security-scheme.raml", "filterText": "include-security-scheme.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "include-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-trait.raml", "filterText": "include-trait.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "resource-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type-uses.raml", "filterText": "resource-type-uses.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "security-scheme-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme-uses.raml", "filterText": "security-scheme-uses.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/overlay.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/overlay.raml.json index 456986ccbe..25e65c779f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/overlay.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/overlay.raml.json @@ -1,11 +1,17 @@ [ { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "annotationTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "annotationTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationTypes", "filterText": "annotationTypes:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUri", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "baseUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUri", "filterText": "baseUri: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "extends", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "extends", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10extends", "filterText": "extends: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "mediaType", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "mediaType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mediaType", "filterText": "mediaType: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "usage", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "usage", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11usage", "filterText": "usage: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11version", "filterText": "version: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/resource-type-uses.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/resource-type-uses.raml.json index b7a12a7f31..65eff36ead 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/resource-type-uses.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/resource-type-uses.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-uses.raml", "filterText": "data-type-uses.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item-uses.raml", "filterText": "documentation-item-uses.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension-extends.raml", "filterText": "extension-extends.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-annotation.raml", "filterText": "include-annotation.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-data-type.raml", "filterText": "include-data-type.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-named-example.raml", "filterText": "include-named-example.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-resource-type.raml", "filterText": "include-resource-type.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-security-scheme.raml", "filterText": "include-security-scheme.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "include-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-trait.raml", "filterText": "include-trait.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay-extends.raml", "filterText": "overlay-extends.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "security-scheme-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme-uses.raml", "filterText": "security-scheme-uses.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/resource-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/resource-type.raml.json index 3ef926da5a..61947f2d9d 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/resource-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/resource-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11type", "filterText": "type:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "uriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uriParameters", "filterText": "uriParameters:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "usage", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "usage", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11usage", "filterText": "usage: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/security-scheme-uses.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/security-scheme-uses.raml.json index cce99dc6b9..5cea4e88c0 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/security-scheme-uses.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/security-scheme-uses.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotation.raml", "filterText": "annotation.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "api.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11api.raml", "filterText": "api.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "data-type-properties.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-properties.raml", "filterText": "data-type-properties.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "data-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type-uses.raml", "filterText": "data-type-uses.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11data-type.raml", "filterText": "data-type.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation-item-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item-uses.raml", "filterText": "documentation-item-uses.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "documentation-item.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation-item.raml", "filterText": "documentation-item.raml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "extension-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension-extends.raml", "filterText": "extension-extends.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "extension.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11extension.raml", "filterText": "extension.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "include-annotation.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-annotation.raml", "filterText": "include-annotation.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "include-data-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-data-type.raml", "filterText": "include-data-type.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "include-named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-named-example.raml", "filterText": "include-named-example.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "include-resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-resource-type.raml", "filterText": "include-resource-type.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "include-security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-security-scheme.raml", "filterText": "include-security-scheme.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "include-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include-trait.raml", "filterText": "include-trait.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "named-example-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example-uses.raml", "filterText": "named-example-uses.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "named-example.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11named-example.raml", "filterText": "named-example.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "overlay-extends.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay-extends.raml", "filterText": "overlay-extends.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "overlay.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11overlay.raml", "filterText": "overlay.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "resource-type-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type-uses.raml", "filterText": "resource-type-uses.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "resource-type.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resource-type.raml", "filterText": "resource-type.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "security-scheme.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11security-scheme.raml", "filterText": "security-scheme.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait.raml", "filterText": "trait.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/security-scheme.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/security-scheme.raml.json index 32d4522716..f309f8195e 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/security-scheme.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/security-scheme.raml.json @@ -1,11 +1,17 @@ [ { "label": "describedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "describedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11describedBy", "filterText": "describedBy:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/trait.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/trait.raml.json index 4cca695479..9c9e06f122 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/trait.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/fragments/expected/trait.raml.json @@ -1,11 +1,17 @@ [ { "label": "body", - "kind": [], + "kind": [ + + ], "detail": "body", "documentation": "body", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11body", "filterText": "body:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "queryParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "queryParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryParameters", "filterText": "queryParameters:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "queryString", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "queryString", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryString", "filterText": "queryString:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "responses:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "usage", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "usage", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11usage", "filterText": "usage: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/description.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/description.raml.json index 410ea727db..615c80ef3b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/description.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/description.raml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/endpoint.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/endpoint.raml.json index c880f65744..3f688d6cc5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/endpoint.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/endpoint.raml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/operation.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/operation.raml.json index a57f45994b..f82273b1c9 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/operation.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/operation.raml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/response.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/response.raml.json index 7611cf1e62..3e3b125b2d 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/response.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/response.raml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/responses.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/responses.raml.json index 9c4fe4b615..9fafd88157 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/responses.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/include-tag/expected/responses.raml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/aliased-complete-ref.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/aliased-complete-ref.raml.json index 69936c0c9f..cfd8875e5b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/aliased-complete-ref.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/aliased-complete-ref.raml.json @@ -1,11 +1,17 @@ [ { "label": "A", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "alias.A", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A", "filterText": "alias.A", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/aliased-ref.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/aliased-ref.raml.json index 623bc63bbf..b1d1237801 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/aliased-ref.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/aliased-ref.raml.json @@ -1,11 +1,17 @@ [ { "label": "alias.", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "alias.", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11alias.", "filterText": "alias.", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/library-root.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/library-root.raml.json index b7f412d4e0..bf636c523f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/library-root.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/library-root.raml.json @@ -1,11 +1,17 @@ [ { "label": "annotationTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "annotationTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationTypes", "filterText": "annotationTypes:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "usage", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "usage", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11usage", "filterText": "usage: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/library-uses.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/library-uses.raml.json index 656c946427..e7964ad703 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/library-uses.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/library-uses.raml.json @@ -1,11 +1,17 @@ [ { "label": "aliased-complete-ref.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aliased-complete-ref.raml", "filterText": "aliased-complete-ref.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "aliased-ref.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aliased-ref.raml", "filterText": "aliased-ref.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "library-root.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11library-root.raml", "filterText": "library-root.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "library.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11library.raml", "filterText": "library.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "uses-alias.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses-alias.raml", "filterText": "uses-alias.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses.raml", "filterText": "uses.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/uses-alias.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/uses-alias.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/uses-alias.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/uses-alias.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/uses.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/uses.raml.json index 3f470d9b82..3ff64c945f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/uses.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/libraries/expected/uses.raml.json @@ -1,11 +1,17 @@ [ { "label": "aliased-complete-ref.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aliased-complete-ref.raml", "filterText": "aliased-complete-ref.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "aliased-ref.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aliased-ref.raml", "filterText": "aliased-ref.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "library-root.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11library-root.raml", "filterText": "library-root.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "library-uses.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11library-uses.raml", "filterText": "library-uses.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "library.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11library.raml", "filterText": "library.raml", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "uses-alias.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses-alias.raml", "filterText": "uses-alias.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType01.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType01.raml.json index 68a2b42afc..9600577970 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType01.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType01.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\n- application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "\n- application/xml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType02.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType02.raml.json index 9753b639e7..0f601e1d29 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType02.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType02.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType03.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType03.raml.json index e14d1ae2d8..5b0c957fbb 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType03.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType03.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\n[\n application/json\n]", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "\n[\n application/xml\n]", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType04.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType04.raml.json index 76bdff6103..8102d6dc2b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType04.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType04.raml.json @@ -1,11 +1,17 @@ [ { "label": "json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11json", "filterText": "application/json:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType05.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType05.raml.json index 377ed0c22b..dca6e4ad5f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType05.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType05.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType06.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType06.raml.json index 8d912c513c..f0a3c88fab 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType06.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType06.raml.json @@ -1,11 +1,17 @@ [ { "label": "json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11json", "filterText": "application/json:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "application/xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType07.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType07.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType07.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/media-types/expected/mediaType07.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-expanded.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-expanded.raml.json index b4d6798332..f1a1663c16 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-expanded.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-expanded.raml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "strict", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "strict", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11strict", "filterText": "strict: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "value", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "value", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11value", "filterText": "value: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-object-well.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-object-well.raml.json index f0ff5fb43d..6200e698a5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-object-well.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-object-well.raml.json @@ -1,11 +1,17 @@ [ { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p1", "filterText": "p1: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "p2", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p2", "filterText": "p2: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-object.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-object.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-object.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array-object.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/array.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-expanded.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-expanded.raml.json index f3966e0c55..ae917a7dee 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-expanded.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-expanded.raml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p1", "filterText": "p1: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "p2", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p2", "filterText": "p2: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "strict", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "strict", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11strict", "filterText": "strict: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "value", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "value", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11value", "filterText": "value: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-prop-value.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-prop-value.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-prop-value.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-prop-value.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-withprop.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-withprop.raml.json index 9df955327f..c41f8a221e 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-withprop.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object-withprop.raml.json @@ -1,11 +1,17 @@ [ { "label": "p2", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p2", "filterText": "p2: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object.raml.json index f3966e0c55..ae917a7dee 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/object.raml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "p1", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p1", "filterText": "p1: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "p2", - "kind": [], + "kind": [ + + ], "detail": "example", "documentation": "p2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10p2", "filterText": "p2: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "strict", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "strict", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11strict", "filterText": "strict: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "value", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "value", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11value", "filterText": "value: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/scalar-name.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/scalar-name.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/scalar-name.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/scalar-name.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/scalar.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/scalar.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/scalar.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/named-examples/expected/scalar.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type-existing.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type-existing.raml.json index 39160b2d23..0e96b1f784 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type-existing.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type-existing.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type-expanded.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type-expanded.raml.json index f2f81da7eb..113ba8d7c4 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type-expanded.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type-expanded.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type.raml.json index 5571d16d30..bee8728873 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body-media-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "A", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A", "filterText": "A", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body.raml.json index 09e733f5f2..9a3a6dcd78 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/body.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header-inlined.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header-inlined.raml.json index f03f64a9c8..c5a6a61923 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header-inlined.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header-inlined.raml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "t", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "t", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11t", "filterText": "t", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header-name.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header-name.raml.json index 57e2913066..db31b97ad5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header-name.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header-name.raml.json @@ -1,11 +1,17 @@ [ { "label": "A-IM", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A-IM", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A-IM", "filterText": "A-IM: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "ALPN", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ALPN", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ALPN", "filterText": "ALPN: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "Accept", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept", "filterText": "Accept: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "Accept-CH", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-CH", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-CH", "filterText": "Accept-CH: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "Accept-Charset", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Charset", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Charset", "filterText": "Accept-Charset: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "Accept-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Encoding", "filterText": "Accept-Encoding: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "Accept-Features", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Features", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Features", "filterText": "Accept-Features: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "Accept-Language", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Language", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Language", "filterText": "Accept-Language: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "Accept-Patch", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Patch", "filterText": "Accept-Patch: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "Accept-Post", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Post", "filterText": "Accept-Post: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "Accept-Ranges", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Accept-Ranges", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Accept-Ranges", "filterText": "Accept-Ranges: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "Access-Control-Allow-Credentials", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Credentials", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Credentials", "filterText": "Access-Control-Allow-Credentials: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "Access-Control-Allow-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Headers", "filterText": "Access-Control-Allow-Headers: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "Access-Control-Allow-Methods", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Methods", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Methods", "filterText": "Access-Control-Allow-Methods: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "Access-Control-Allow-Origin", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Allow-Origin", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Allow-Origin", "filterText": "Access-Control-Allow-Origin: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "Access-Control-Expose-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Expose-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Expose-Headers", "filterText": "Access-Control-Expose-Headers: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "Access-Control-Max-Age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Max-Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Max-Age", "filterText": "Access-Control-Max-Age: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "Access-Control-Request-Headers", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Request-Headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Request-Headers", "filterText": "Access-Control-Request-Headers: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "Access-Control-Request-Method", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Access-Control-Request-Method", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Access-Control-Request-Method", "filterText": "Access-Control-Request-Method: ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "Age", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Age", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Age", "filterText": "Age: ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "Allow", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Allow", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Allow", "filterText": "Allow: ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "Alt-Svc", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Alt-Svc", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Alt-Svc", "filterText": "Alt-Svc: ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "Alternates", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Alternates", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Alternates", "filterText": "Alternates: ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "Apply-To-Redirect-Ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Apply-To-Redirect-Ref", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Apply-To-Redirect-Ref", "filterText": "Apply-To-Redirect-Ref: ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "Authorization", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Authorization", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Authorization", "filterText": "Authorization: ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "CH", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "CH", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11CH", "filterText": "CH: ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "Cache-Control", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cache-Control", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cache-Control", "filterText": "Cache-Control: ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "Content-Base", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Base", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Base", "filterText": "Content-Base: ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "Content-DPR", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-DPR", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-DPR", "filterText": "Content-DPR: ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "Content-Disposition", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Disposition", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Disposition", "filterText": "Content-Disposition: ", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "Content-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Encoding", "filterText": "Content-Encoding: ", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "Content-Language", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Language", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Language", "filterText": "Content-Language: ", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "Content-Length", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Length", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Length", "filterText": "Content-Length: ", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "Content-Location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Location", "filterText": "Content-Location: ", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "Content-Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Range", "filterText": "Content-Range: ", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "Content-Security-Policy", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Security-Policy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Security-Policy", "filterText": "Content-Security-Policy: ", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "Content-Security-Policy-Report-Only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Security-Policy-Report-Only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Security-Policy-Report-Only", "filterText": "Content-Security-Policy-Report-Only: ", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "Content-Type", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Content-Type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Content-Type", "filterText": "Content-Type: ", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "Cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cookie", "filterText": "Cookie: ", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "Cookie2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Cookie2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Cookie2", "filterText": "Cookie2: ", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "DASL", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DASL", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DASL", "filterText": "DASL: ", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "DAV", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DAV", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DAV", "filterText": "DAV: ", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "DNT", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DNT", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DNT", "filterText": "DNT: ", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "DPR", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "DPR", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11DPR", "filterText": "DPR: ", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "Date", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Date", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Date", "filterText": "Date: ", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "Delta-Base", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Delta-Base", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Delta-Base", "filterText": "Delta-Base: ", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "Depth", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Depth", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Depth", "filterText": "Depth: ", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "Destination", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Destination", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Destination", "filterText": "Destination: ", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "ETag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "ETag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11ETag", "filterText": "ETag: ", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "Encryption", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Encryption", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Encryption", "filterText": "Encryption: ", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "Encryption-Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Encryption-Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Encryption-Key", "filterText": "Encryption-Key: ", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "Expect", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Expect", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Expect", "filterText": "Expect: ", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "Expires", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Expires", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Expires", "filterText": "Expires: ", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "Forwarded", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Forwarded", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Forwarded", "filterText": "Forwarded: ", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "From", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "From", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11From", "filterText": "From: ", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "HTTP2-Settings", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP2-Settings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP2-Settings", "filterText": "HTTP2-Settings: ", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "Host", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Host", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Host", "filterText": "Host: ", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "IM", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "IM", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11IM", "filterText": "IM: ", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "If", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If", "filterText": "If: ", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "If-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Match", "filterText": "If-Match: ", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "If-Modified-Since", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Modified-Since", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Modified-Since", "filterText": "If-Modified-Since: ", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "If-None-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-None-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-None-Match", "filterText": "If-None-Match: ", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "If-Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Range", "filterText": "If-Range: ", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "If-Schedule-Tag-Match", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Schedule-Tag-Match", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Schedule-Tag-Match", "filterText": "If-Schedule-Tag-Match: ", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "If-Unmodified-Since", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "If-Unmodified-Since", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11If-Unmodified-Since", "filterText": "If-Unmodified-Since: ", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Key", "filterText": "Key: ", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "Last-Event-ID", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Last-Event-ID", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Last-Event-ID", "filterText": "Last-Event-ID: ", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "Last-Modified", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Last-Modified", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Last-Modified", "filterText": "Last-Modified: ", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "Link", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Link", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Link", "filterText": "Link: ", "insertText": null, @@ -2071,11 +2485,17 @@ }, { "label": "Link-Template", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Link-Template", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Link-Template", "filterText": "Link-Template: ", "insertText": null, @@ -2101,11 +2521,17 @@ }, { "label": "Location", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Location", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Location", "filterText": "Location: ", "insertText": null, @@ -2131,11 +2557,17 @@ }, { "label": "Lock-Token", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Lock-Token", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Lock-Token", "filterText": "Lock-Token: ", "insertText": null, @@ -2161,11 +2593,17 @@ }, { "label": "MD", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "MD", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11MD", "filterText": "MD: ", "insertText": null, @@ -2191,11 +2629,17 @@ }, { "label": "Max-Forwards", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Max-Forwards", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Max-Forwards", "filterText": "Max-Forwards: ", "insertText": null, @@ -2221,11 +2665,17 @@ }, { "label": "Negotiate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Negotiate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Negotiate", "filterText": "Negotiate: ", "insertText": null, @@ -2251,11 +2701,17 @@ }, { "label": "Nice", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Nice", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Nice", "filterText": "Nice: ", "insertText": null, @@ -2281,11 +2737,17 @@ }, { "label": "Origin", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Origin", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Origin", "filterText": "Origin: ", "insertText": null, @@ -2311,11 +2773,17 @@ }, { "label": "Overwrite", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Overwrite", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Overwrite", "filterText": "Overwrite: ", "insertText": null, @@ -2341,11 +2809,17 @@ }, { "label": "POE", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "POE", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11POE", "filterText": "POE: ", "insertText": null, @@ -2371,11 +2845,17 @@ }, { "label": "POE-Links", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "POE-Links", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11POE-Links", "filterText": "POE-Links: ", "insertText": null, @@ -2401,11 +2881,17 @@ }, { "label": "Pragma", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Pragma", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Pragma", "filterText": "Pragma: ", "insertText": null, @@ -2431,11 +2917,17 @@ }, { "label": "Prefer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Prefer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Prefer", "filterText": "Prefer: ", "insertText": null, @@ -2461,11 +2953,17 @@ }, { "label": "Preference-Applied", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Preference-Applied", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Preference-Applied", "filterText": "Preference-Applied: ", "insertText": null, @@ -2491,11 +2989,17 @@ }, { "label": "Proxy-Authenticate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Proxy-Authenticate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Proxy-Authenticate", "filterText": "Proxy-Authenticate: ", "insertText": null, @@ -2521,11 +3025,17 @@ }, { "label": "Proxy-Authorization", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Proxy-Authorization", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Proxy-Authorization", "filterText": "Proxy-Authorization: ", "insertText": null, @@ -2551,11 +3061,17 @@ }, { "label": "RW", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "RW", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11RW", "filterText": "RW: ", "insertText": null, @@ -2581,11 +3097,17 @@ }, { "label": "Range", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Range", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Range", "filterText": "Range: ", "insertText": null, @@ -2611,11 +3133,17 @@ }, { "label": "Redirect-Ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Redirect-Ref", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Redirect-Ref", "filterText": "Redirect-Ref: ", "insertText": null, @@ -2641,11 +3169,17 @@ }, { "label": "Referer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Referer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Referer", "filterText": "Referer: ", "insertText": null, @@ -2671,11 +3205,17 @@ }, { "label": "Retry-After", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Retry-After", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Retry-After", "filterText": "Retry-After: ", "insertText": null, @@ -2701,11 +3241,17 @@ }, { "label": "SLUG", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "SLUG", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11SLUG", "filterText": "SLUG: ", "insertText": null, @@ -2731,11 +3277,17 @@ }, { "label": "Schedule-Reply", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Schedule-Reply", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Schedule-Reply", "filterText": "Schedule-Reply: ", "insertText": null, @@ -2761,11 +3313,17 @@ }, { "label": "Schedule-Tag", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Schedule-Tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Schedule-Tag", "filterText": "Schedule-Tag: ", "insertText": null, @@ -2791,11 +3349,17 @@ }, { "label": "Sec-WebSocket-Accept", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Accept", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Accept", "filterText": "Sec-WebSocket-Accept: ", "insertText": null, @@ -2821,11 +3385,17 @@ }, { "label": "Sec-WebSocket-Extensions", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Extensions", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Extensions", "filterText": "Sec-WebSocket-Extensions: ", "insertText": null, @@ -2851,11 +3421,17 @@ }, { "label": "Sec-WebSocket-Key", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Key", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Key", "filterText": "Sec-WebSocket-Key: ", "insertText": null, @@ -2881,11 +3457,17 @@ }, { "label": "Sec-WebSocket-Protocol", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Protocol", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Protocol", "filterText": "Sec-WebSocket-Protocol: ", "insertText": null, @@ -2911,11 +3493,17 @@ }, { "label": "Sec-WebSocket-Version", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sec-WebSocket-Version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sec-WebSocket-Version", "filterText": "Sec-WebSocket-Version: ", "insertText": null, @@ -2941,11 +3529,17 @@ }, { "label": "Server", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Server", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Server", "filterText": "Server: ", "insertText": null, @@ -2971,11 +3565,17 @@ }, { "label": "Set-Cookie", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Set-Cookie", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Set-Cookie", "filterText": "Set-Cookie: ", "insertText": null, @@ -3001,11 +3601,17 @@ }, { "label": "Set-Cookie2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Set-Cookie2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Set-Cookie2", "filterText": "Set-Cookie2: ", "insertText": null, @@ -3031,11 +3637,17 @@ }, { "label": "Status-URI", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Status-URI", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Status-URI", "filterText": "Status-URI: ", "insertText": null, @@ -3061,11 +3673,17 @@ }, { "label": "Strict-Transport-Security", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Strict-Transport-Security", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Strict-Transport-Security", "filterText": "Strict-Transport-Security: ", "insertText": null, @@ -3091,11 +3709,17 @@ }, { "label": "Sunset", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Sunset", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Sunset", "filterText": "Sunset: ", "insertText": null, @@ -3121,11 +3745,17 @@ }, { "label": "Surrogate-Capability", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Surrogate-Capability", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Surrogate-Capability", "filterText": "Surrogate-Capability: ", "insertText": null, @@ -3151,11 +3781,17 @@ }, { "label": "Surrogate-Control", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Surrogate-Control", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Surrogate-Control", "filterText": "Surrogate-Control: ", "insertText": null, @@ -3181,11 +3817,17 @@ }, { "label": "TCN", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TCN", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TCN", "filterText": "TCN: ", "insertText": null, @@ -3211,11 +3853,17 @@ }, { "label": "TE", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "TE", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11TE", "filterText": "TE: ", "insertText": null, @@ -3241,11 +3889,17 @@ }, { "label": "Timeout", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Timeout", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Timeout", "filterText": "Timeout: ", "insertText": null, @@ -3271,11 +3925,17 @@ }, { "label": "Tk", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Tk", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Tk", "filterText": "Tk: ", "insertText": null, @@ -3301,11 +3961,17 @@ }, { "label": "Transfer-Encoding", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Transfer-Encoding", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Transfer-Encoding", "filterText": "Transfer-Encoding: ", "insertText": null, @@ -3331,11 +3997,17 @@ }, { "label": "User-Agent", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "User-Agent", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11User-Agent", "filterText": "User-Agent: ", "insertText": null, @@ -3361,11 +4033,17 @@ }, { "label": "Variant-Vary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Variant-Vary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Variant-Vary", "filterText": "Variant-Vary: ", "insertText": null, @@ -3391,11 +4069,17 @@ }, { "label": "Vary", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Vary", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Vary", "filterText": "Vary: ", "insertText": null, @@ -3421,11 +4105,17 @@ }, { "label": "Via", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Via", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Via", "filterText": "Via: ", "insertText": null, @@ -3451,11 +4141,17 @@ }, { "label": "WWW-Authenticate", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "WWW-Authenticate", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11WWW-Authenticate", "filterText": "WWW-Authenticate: ", "insertText": null, @@ -3481,11 +4177,17 @@ }, { "label": "Warning", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Warning", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11Warning", "filterText": "Warning: ", "insertText": null, @@ -3511,11 +4213,17 @@ }, { "label": "X-Frame-Options", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "X-Frame-Options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11X-Frame-Options", "filterText": "X-Frame-Options: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header.raml.json index 71ad01f511..87808875a1 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/header.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/operation-with-body-defined.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/operation-with-body-defined.raml.json index 1cc55c814b..a68ad35b41 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/operation-with-body-defined.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/operation-with-body-defined.raml.json @@ -1,11 +1,17 @@ [ { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "queryParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "queryParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryParameters", "filterText": "queryParameters:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "queryString", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "queryString", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryString", "filterText": "queryString:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "responses:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/operation.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/operation.raml.json index 8e7216930c..58e00294d4 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/operation.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/operation.raml.json @@ -1,11 +1,17 @@ [ { "label": "body", - "kind": [], + "kind": [ + + ], "detail": "body", "documentation": "body", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11body", "filterText": "body:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "queryParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "queryParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryParameters", "filterText": "queryParameters:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "queryString", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "queryString", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryString", "filterText": "queryString:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "responses:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter-name-started.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter-name-started.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter-name-started.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter-name-started.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter-name.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter-name.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter-name.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter-name.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter.raml.json index d481b5d43a..dfba68d1c2 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-parameter.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-string.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-string.raml.json index 17f92b3a49..ff1d949889 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-string.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/query-string.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type-exapanded.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type-exapanded.raml.json index 1d2354ec87..18b9731485 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type-exapanded.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type-exapanded.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type-existing.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type-existing.raml.json index b0d35b58bc..f6dbe83515 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type-existing.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type-existing.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type.raml.json index 5752cf59a0..a3bd6fe50a 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body-media-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body.raml.json index 03b1a00814..ee490f802f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-body.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-codes.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-codes.raml.json index f6ed95549f..3dcdb4c01a 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-codes.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-codes.raml.json @@ -1,11 +1,17 @@ [ { "label": "100", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "100", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11100", "filterText": "100:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "101", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "101", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11101", "filterText": "101:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "102", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "102", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11102", "filterText": "102:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "200", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "200", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11200", "filterText": "200:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "201", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "201", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11201", "filterText": "201:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "202", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "202", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11202", "filterText": "202:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "203", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "203", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11203", "filterText": "203:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "204", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "204", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11204", "filterText": "204:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "205", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "205", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11205", "filterText": "205:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "206", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "206", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11206", "filterText": "206:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "207", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "207", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11207", "filterText": "207:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "208", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "208", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11208", "filterText": "208:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "226", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "226", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11226", "filterText": "226:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "300", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "300", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11300", "filterText": "300:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "301", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "301", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11301", "filterText": "301:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "302", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "302", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11302", "filterText": "302:\n ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "303", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "303", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11303", "filterText": "303:\n ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "304", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "304", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11304", "filterText": "304:\n ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "305", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "305", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11305", "filterText": "305:\n ", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "306", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "306", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11306", "filterText": "306:\n ", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "307", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "307", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11307", "filterText": "307:\n ", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "308", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "308", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11308", "filterText": "308:\n ", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "400", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "400", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11400", "filterText": "400:\n ", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "401", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "401", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11401", "filterText": "401:\n ", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "402", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "402", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11402", "filterText": "402:\n ", "insertText": null, @@ -751,11 +901,17 @@ }, { "label": "403", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "403", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11403", "filterText": "403:\n ", "insertText": null, @@ -781,11 +937,17 @@ }, { "label": "404", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "404", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11404", "filterText": "404:\n ", "insertText": null, @@ -811,11 +973,17 @@ }, { "label": "405", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "405", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11405", "filterText": "405:\n ", "insertText": null, @@ -841,11 +1009,17 @@ }, { "label": "406", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "406", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11406", "filterText": "406:\n ", "insertText": null, @@ -871,11 +1045,17 @@ }, { "label": "407", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "407", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11407", "filterText": "407:\n ", "insertText": null, @@ -901,11 +1081,17 @@ }, { "label": "408", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "408", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11408", "filterText": "408:\n ", "insertText": null, @@ -931,11 +1117,17 @@ }, { "label": "409", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "409", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11409", "filterText": "409:\n ", "insertText": null, @@ -961,11 +1153,17 @@ }, { "label": "410", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "410", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11410", "filterText": "410:\n ", "insertText": null, @@ -991,11 +1189,17 @@ }, { "label": "411", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "411", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11411", "filterText": "411:\n ", "insertText": null, @@ -1021,11 +1225,17 @@ }, { "label": "412", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "412", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11412", "filterText": "412:\n ", "insertText": null, @@ -1051,11 +1261,17 @@ }, { "label": "413", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "413", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11413", "filterText": "413:\n ", "insertText": null, @@ -1081,11 +1297,17 @@ }, { "label": "414", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "414", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11414", "filterText": "414:\n ", "insertText": null, @@ -1111,11 +1333,17 @@ }, { "label": "415", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "415", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11415", "filterText": "415:\n ", "insertText": null, @@ -1141,11 +1369,17 @@ }, { "label": "416", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "416", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11416", "filterText": "416:\n ", "insertText": null, @@ -1171,11 +1405,17 @@ }, { "label": "417", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "417", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11417", "filterText": "417:\n ", "insertText": null, @@ -1201,11 +1441,17 @@ }, { "label": "418", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "418", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11418", "filterText": "418:\n ", "insertText": null, @@ -1231,11 +1477,17 @@ }, { "label": "420", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "420", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11420", "filterText": "420:\n ", "insertText": null, @@ -1261,11 +1513,17 @@ }, { "label": "422", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "422", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11422", "filterText": "422:\n ", "insertText": null, @@ -1291,11 +1549,17 @@ }, { "label": "423", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "423", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11423", "filterText": "423:\n ", "insertText": null, @@ -1321,11 +1585,17 @@ }, { "label": "424", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "424", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11424", "filterText": "424:\n ", "insertText": null, @@ -1351,11 +1621,17 @@ }, { "label": "425", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "425", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11425", "filterText": "425:\n ", "insertText": null, @@ -1381,11 +1657,17 @@ }, { "label": "426", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "426", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11426", "filterText": "426:\n ", "insertText": null, @@ -1411,11 +1693,17 @@ }, { "label": "428", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "428", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11428", "filterText": "428:\n ", "insertText": null, @@ -1441,11 +1729,17 @@ }, { "label": "429", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "429", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11429", "filterText": "429:\n ", "insertText": null, @@ -1471,11 +1765,17 @@ }, { "label": "431", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "431", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11431", "filterText": "431:\n ", "insertText": null, @@ -1501,11 +1801,17 @@ }, { "label": "444", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "444", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11444", "filterText": "444:\n ", "insertText": null, @@ -1531,11 +1837,17 @@ }, { "label": "449", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "449", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11449", "filterText": "449:\n ", "insertText": null, @@ -1561,11 +1873,17 @@ }, { "label": "450", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "450", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11450", "filterText": "450:\n ", "insertText": null, @@ -1591,11 +1909,17 @@ }, { "label": "451", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "451", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11451", "filterText": "451:\n ", "insertText": null, @@ -1621,11 +1945,17 @@ }, { "label": "499", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "499", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11499", "filterText": "499:\n ", "insertText": null, @@ -1651,11 +1981,17 @@ }, { "label": "500", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "500", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11500", "filterText": "500:\n ", "insertText": null, @@ -1681,11 +2017,17 @@ }, { "label": "501", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "501", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11501", "filterText": "501:\n ", "insertText": null, @@ -1711,11 +2053,17 @@ }, { "label": "502", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "502", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11502", "filterText": "502:\n ", "insertText": null, @@ -1741,11 +2089,17 @@ }, { "label": "503", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "503", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11503", "filterText": "503:\n ", "insertText": null, @@ -1771,11 +2125,17 @@ }, { "label": "504", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "504", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11504", "filterText": "504:\n ", "insertText": null, @@ -1801,11 +2161,17 @@ }, { "label": "505", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "505", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11505", "filterText": "505:\n ", "insertText": null, @@ -1831,11 +2197,17 @@ }, { "label": "506", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "506", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11506", "filterText": "506:\n ", "insertText": null, @@ -1861,11 +2233,17 @@ }, { "label": "507", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "507", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11507", "filterText": "507:\n ", "insertText": null, @@ -1891,11 +2269,17 @@ }, { "label": "508", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "508", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11508", "filterText": "508:\n ", "insertText": null, @@ -1921,11 +2305,17 @@ }, { "label": "509", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "509", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11509", "filterText": "509:\n ", "insertText": null, @@ -1951,11 +2341,17 @@ }, { "label": "510", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "510", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11510", "filterText": "510:\n ", "insertText": null, @@ -1981,11 +2377,17 @@ }, { "label": "511", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "511", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11511", "filterText": "511:\n ", "insertText": null, @@ -2011,11 +2413,17 @@ }, { "label": "598", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "598", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11598", "filterText": "598:\n ", "insertText": null, @@ -2041,11 +2449,17 @@ }, { "label": "599", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "599", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11599", "filterText": "599:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-headers.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-headers.raml.json index 5e8babbf07..356f00a14c 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-headers.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response-headers.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response.raml.json index 376adad8a4..17bf9c447f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/response.raml.json @@ -1,11 +1,17 @@ [ { "label": "body", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "body", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11body", "filterText": "body:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/securedBy-in-line.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/securedBy-in-line.raml.json index b4be122bf7..810a618939 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/securedBy-in-line.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/securedBy-in-line.raml.json @@ -1,11 +1,17 @@ [ { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11null", "filterText": "null", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/securedBy-next-line.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/securedBy-next-line.raml.json index efaeb7aefd..d1500c921e 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/securedBy-next-line.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/operation/expected/securedBy-next-line.raml.json @@ -1,11 +1,17 @@ [ { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11null", "filterText": "null", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-link.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-link.raml.json index 3b9342170c..141c44903a 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-link.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-link.raml.json @@ -1,11 +1,17 @@ [ { "label": "rt2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rt2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11rt2", "filterText": "rt2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-name-after-declaration.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-name-after-declaration.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-name-after-declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-name-after-declaration.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-name.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-name.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-name.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-name.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-operation-level.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-operation-level.raml.json index 4698861897..9b99f4c0d2 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-operation-level.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition-operation-level.raml.json @@ -1,11 +1,17 @@ [ { "label": "body", - "kind": [], + "kind": [ + + ], "detail": "body", "documentation": "body", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11body", "filterText": "body:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "queryParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "queryParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryParameters", "filterText": "queryParameters:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "queryString", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "queryString", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryString", "filterText": "queryString:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "responses:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition.raml.json index abf8e4170d..0ad6656153 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/definition.raml.json @@ -1,11 +1,17 @@ [ { "label": "delete", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "delete", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11delete", "filterText": "delete:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "get", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "get", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11get", "filterText": "get:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "head", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "head", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11head", "filterText": "head:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "options", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "options", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11options", "filterText": "options:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "patch", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "patch", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11patch", "filterText": "patch:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "post", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "post", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11post", "filterText": "post:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "put", - "kind": [], + "kind": [ + + ], "detail": "methods", "documentation": "put", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11put", "filterText": "put:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11type", "filterText": "type:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "uriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "uriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uriParameters", "filterText": "uriParameters:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "usage", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "usage", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11usage", "filterText": "usage: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/reference-map.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/reference-map.raml.json index b5c2554520..404a8252a5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/reference-map.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/reference-map.raml.json @@ -1,11 +1,17 @@ [ { "label": "rt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11rt", "filterText": "rt", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/reference.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/reference.raml.json index a2db090ae4..c0c3cfbb7a 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/reference.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/reference.raml.json @@ -1,11 +1,17 @@ [ { "label": "rt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11rt", "filterText": "rt", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference-filter.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference-filter.raml.json index 56787a12c1..320d13d317 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference-filter.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference-filter.raml.json @@ -1,11 +1,17 @@ [ { "label": "param2", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "param2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10param2", "filterText": "param2: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference-value.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference-value.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference-value.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference-value.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference.raml.json index fbbac63e45..ebe4e81bb1 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/variables-reference.raml.json @@ -1,11 +1,17 @@ [ { "label": "param1", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "param1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10param1", "filterText": "param1: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "param2", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "param2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10param2", "filterText": "param2: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/with-variables-reference-inline.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/with-variables-reference-inline.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/with-variables-reference-inline.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/with-variables-reference-inline.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/with-variables-reference.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/with-variables-reference.raml.json index c49a2b2b9c..4e8e6c5394 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/with-variables-reference.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/with-variables-reference.raml.json @@ -1,11 +1,17 @@ [ { "label": "New rt", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "rt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New rt", "filterText": "rt:\n param1: $1\n param2: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/without-variables-reference-inline.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/without-variables-reference-inline.raml.json index 296a17befe..95dec83c47 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/without-variables-reference-inline.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/expected/without-variables-reference-inline.raml.json @@ -1,11 +1,17 @@ [ { "label": "rt", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "rt", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11rt", "filterText": "rt", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/key-var-function.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/key-var-function.raml.json index c19cbcb5f9..11971193de 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/key-var-function.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/key-var-function.raml.json @@ -1,11 +1,17 @@ [ { "label": "!lowercamelcase", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!lowercamelcase", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!lowercamelcase", "filterText": "<>: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "!lowercase", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!lowercase", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!lowercase", "filterText": "<>: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "!pluralize", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!pluralize", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!pluralize", "filterText": "<>: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "!singularize", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!singularize", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!singularize", "filterText": "<>: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "!uppercamelcase", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!uppercamelcase", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!uppercamelcase", "filterText": "<>: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "!uppercase", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!uppercase", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!uppercase", "filterText": "<>: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/key-var.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/key-var.raml.json index 689efaa7ad..46b0a1f62d 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/key-var.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/key-var.raml.json @@ -1,11 +1,17 @@ [ { "label": "methodName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "methodName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11methodName", "filterText": "<>: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "resourcePath", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourcePath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourcePath", "filterText": "<>: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "resourcePathName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourcePathName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourcePathName", "filterText": "<>: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var-function.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var-function.raml.json index 041e10537c..0013989c1c 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var-function.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var-function.raml.json @@ -1,11 +1,17 @@ [ { "label": "!lowercamelcase", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!lowercamelcase", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!lowercamelcase", "filterText": "description for <>", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "!lowercase", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!lowercase", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!lowercase", "filterText": "description for <>", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "!pluralize", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!pluralize", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!pluralize", "filterText": "description for <>", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "!singularize", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!singularize", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!singularize", "filterText": "description for <>", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "!uppercamelcase", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!uppercamelcase", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!uppercamelcase", "filterText": "description for <>", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "!uppercase", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "!uppercase", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!uppercase", "filterText": "description for <>", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var-posfix.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var-posfix.raml.json index 71aec2cfb6..7bcfe86ece 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var-posfix.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var-posfix.raml.json @@ -1,11 +1,17 @@ [ { "label": "methodName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "methodName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11methodName", "filterText": "description for <> endpoint", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "resourcePath", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourcePath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourcePath", "filterText": "description for <> endpoint", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "resourcePathName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourcePathName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourcePathName", "filterText": "description for <> endpoint", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var.raml.json index 9f1ffe6c4d..015b8081e7 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/resource-types/variables-functions/expected/value-var.raml.json @@ -1,11 +1,17 @@ [ { "label": "methodName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "methodName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11methodName", "filterText": "description for <>", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "resourcePath", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourcePath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourcePath", "filterText": "description for <>", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "resourcePathName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourcePathName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourcePathName", "filterText": "description for <>", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/basic-facets.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/basic-facets.raml.json index bb0ff2211d..1a052927bc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/basic-facets.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/basic-facets.raml.json @@ -1,11 +1,17 @@ [ { "label": "describedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "describedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11describedBy", "filterText": "describedBy:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration-name-after-declaration.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration-name-after-declaration.raml.json index bf38181d9f..6d0b88557f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration-name-after-declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration-name-after-declaration.raml.json @@ -1,11 +1,17 @@ [ { "label": "New securityScheme", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New securityScheme", "filterText": "$1:\n type: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration-name.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration-name.raml.json index 5cd9be5134..4a880f7648 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration-name.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration-name.raml.json @@ -1,11 +1,17 @@ [ { "label": "New securityScheme", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New securityScheme", "filterText": "$1:\n type: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration.raml.json index fd3bb94d47..bb7cccb125 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/declaration.raml.json @@ -1,11 +1,17 @@ [ { "label": "describedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "describedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11describedBy", "filterText": "describedBy:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/describedBy.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/describedBy.raml.json index 3751c89a00..de619a0339 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/describedBy.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/describedBy.raml.json @@ -1,11 +1,17 @@ [ { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "queryParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "queryParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryParameters", "filterText": "queryParameters:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "queryString", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "queryString", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryString", "filterText": "queryString:\n ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "responses:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-facets.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-facets.raml.json index 040bac4571..c074e47f15 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-facets.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-facets.raml.json @@ -1,11 +1,17 @@ [ { "label": "describedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "describedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11describedBy", "filterText": "describedBy:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "settings", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "settings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11settings", "filterText": "settings:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-settings-signature.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-settings-signature.raml.json index ddca6a0d71..184937aa86 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-settings-signature.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-settings-signature.raml.json @@ -1,11 +1,17 @@ [ { "label": "HMAC-SHA1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HMAC-SHA1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HMAC-SHA1", "filterText": "HMAC-SHA1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "PLAINTEXT", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "PLAINTEXT", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11PLAINTEXT", "filterText": "PLAINTEXT", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "RSA-SHA1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "RSA-SHA1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11RSA-SHA1", "filterText": "RSA-SHA1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-settings.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-settings.raml.json index 43b34309d2..427930aed9 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-settings.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth1-settings.raml.json @@ -1,11 +1,17 @@ [ { "label": "authorizationUri", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "authorizationUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUri", "filterText": "authorizationUri: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "requestTokenUri", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "requestTokenUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11requestTokenUri", "filterText": "requestTokenUri: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "signatures", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "signatures", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11signatures", "filterText": "signatures: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "tokenCredentialsUri", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tokenCredentialsUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tokenCredentialsUri", "filterText": "tokenCredentialsUri: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-auth-grants.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-auth-grants.raml.json index 7fcefe8ac6..3bd9b4613c 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-auth-grants.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-auth-grants.raml.json @@ -1,11 +1,17 @@ [ { "label": "authorization_code", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "authorization_code", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorization_code", "filterText": "authorization_code", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "client_credentials", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "client_credentials", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11client_credentials", "filterText": "client_credentials", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "implicit", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "implicit", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11implicit", "filterText": "implicit", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "password", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "password", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11password", "filterText": "password", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-facets.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-facets.raml.json index 040bac4571..c074e47f15 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-facets.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-facets.raml.json @@ -1,11 +1,17 @@ [ { "label": "describedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "describedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11describedBy", "filterText": "describedBy:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "settings", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "settings", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11settings", "filterText": "settings:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-scopes-withLibrary.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-scopes-withLibrary.raml.json index 278902eb1c..2dcc02c4f7 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-scopes-withLibrary.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-scopes-withLibrary.raml.json @@ -1,11 +1,17 @@ [ { "label": "read:scope", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "read:scope", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11read:scope", "filterText": "read:scope", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "write:scope", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "write:scope", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11write:scope", "filterText": "write:scope", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-scopes.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-scopes.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-scopes.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-scopes.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-securityScheme.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-securityScheme.raml.json index efa113da1e..575678c16f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-securityScheme.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-securityScheme.raml.json @@ -1,11 +1,17 @@ [ { "label": "lib.", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "lib.", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11lib.", "filterText": "lib.", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11null", "filterText": "null", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-settings.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-settings.raml.json index 3fcd4eeb2d..68e39c6e95 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-settings.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/oauth2-settings.raml.json @@ -1,11 +1,17 @@ [ { "label": "accessTokenUri", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "accessTokenUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11accessTokenUri", "filterText": "accessTokenUri: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "authorizationGrants", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "authorizationGrants", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationGrants", "filterText": "authorizationGrants:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "authorizationUri", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "authorizationUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11authorizationUri", "filterText": "authorizationUri: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "scopes:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/operation-securedBy-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/operation-securedBy-array.raml.json index 1133a27344..7736c6eaba 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/operation-securedBy-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/operation-securedBy-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11null", "filterText": "null", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/operation-securedBy.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/operation-securedBy.raml.json index 5a4a24379f..d7a2c6fb18 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/operation-securedBy.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/operation-securedBy.raml.json @@ -1,11 +1,17 @@ [ { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11null", "filterText": "null", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/pass-throuth-facets.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/pass-throuth-facets.raml.json index bb0ff2211d..1a052927bc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/pass-throuth-facets.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/pass-throuth-facets.raml.json @@ -1,11 +1,17 @@ [ { "label": "describedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "describedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11describedBy", "filterText": "describedBy:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-secured-by-full-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-secured-by-full-array.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-secured-by-full-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-secured-by-full-array.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-array-flow.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-array-flow.raml.json index fb6ed6861c..44b83bfd98 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-array-flow.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-array-flow.raml.json @@ -1,11 +1,17 @@ [ { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2: {\n $1\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "obasic", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "obasic", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11obasic", "filterText": "obasic:", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-array.raml.json index 382f13d30d..38a803efc7 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11null", "filterText": "null", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-oauth2-scopes.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-oauth2-scopes.raml.json index be8599a962..4df1d26cc8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-oauth2-scopes.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-oauth2-scopes.raml.json @@ -1,11 +1,17 @@ [ { "label": "SCO1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "SCO1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11SCO1", "filterText": "SCO1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "SCO2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "SCO2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11SCO2", "filterText": "SCO2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-oauth2.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-oauth2.raml.json index 70124eeee5..4d165a8f3f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-oauth2.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy-oauth2.raml.json @@ -1,11 +1,17 @@ [ { "label": "scopes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "scopes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11scopes", "filterText": "scopes:\n - ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy.raml.json index c92a278198..6ded3973ee 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/root-securedBy.raml.json @@ -1,11 +1,17 @@ [ { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11null", "filterText": "null", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/settings-signature-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/settings-signature-array.raml.json index 3bf6046d3d..56c8d087d1 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/settings-signature-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/settings-signature-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "HMAC-SHA1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HMAC-SHA1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HMAC-SHA1", "filterText": "HMAC-SHA1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "PLAINTEXT", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "PLAINTEXT", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11PLAINTEXT", "filterText": "PLAINTEXT", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "RSA-SHA1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "RSA-SHA1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11RSA-SHA1", "filterText": "RSA-SHA1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/traits-securedBy-oauth2-scopes.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/traits-securedBy-oauth2-scopes.raml.json index f4acee6a92..99b1d95463 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/traits-securedBy-oauth2-scopes.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/traits-securedBy-oauth2-scopes.raml.json @@ -1,11 +1,17 @@ [ { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11null", "filterText": "null", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/traits-securedBy-oauth2-withoutScopes.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/traits-securedBy-oauth2-withoutScopes.raml.json index b93a429ed9..c854e4e93e 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/traits-securedBy-oauth2-withoutScopes.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/traits-securedBy-oauth2-withoutScopes.raml.json @@ -1,11 +1,17 @@ [ { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11null", "filterText": "null", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "oauth2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oauth2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oauth2", "filterText": "oauth2:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/types.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/types.raml.json index de51722b08..2d5051c244 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/types.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/types.raml.json @@ -1,11 +1,17 @@ [ { "label": "Basic Authentication", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Basic Authentication", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10Basic Authentication", "filterText": "Basic Authentication", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "Digest Authentication", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Digest Authentication", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10Digest Authentication", "filterText": "Digest Authentication", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "OAuth 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "OAuth 1.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10OAuth 1.0", "filterText": "OAuth 1.0", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "OAuth 2.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "OAuth 2.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10OAuth 2.0", "filterText": "OAuth 2.0", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "Pass Through", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Pass Through", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10Pass Through", "filterText": "Pass Through", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "x-", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "x-", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10x-", "filterText": "x-", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/x-other-facets.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/x-other-facets.raml.json index bb0ff2211d..1a052927bc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/x-other-facets.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/security-schemes/expected/x-other-facets.raml.json @@ -1,11 +1,17 @@ [ { "label": "describedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "describedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11describedBy", "filterText": "describedBy:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/special-cases/expected/boolean-completion.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/special-cases/expected/boolean-completion.raml.json index f558e2ec01..a442d61edc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/special-cases/expected/boolean-completion.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/special-cases/expected/boolean-completion.raml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/special-cases/expected/reference-in-middle.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/special-cases/expected/reference-in-middle.raml.json index 9bac9ba58d..97f3dcea59 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/special-cases/expected/reference-in-middle.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/special-cases/expected/reference-in-middle.raml.json @@ -1,11 +1,17 @@ [ { "label": "trait1", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trait1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait1", "filterText": "trait1", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "trait2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "trait2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11trait2", "filterText": "trait2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-type-array-with-prefix.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-type-array-with-prefix.raml.json index 86c8f52a4c..09dccf6eb4 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-type-array-with-prefix.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-type-array-with-prefix.raml.json @@ -1,11 +1,17 @@ [ { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-type-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-type-array.raml.json index 4d5bf90a9a..aa67832fd1 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-type-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-type-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-with-prefix.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-with-prefix.raml.json index 45d9db6b56..901c3b9269 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-with-prefix.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter-with-prefix.raml.json @@ -1,11 +1,17 @@ [ { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter.raml.json index 66a037f214..368393a3ce 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameter.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameters.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameters.raml.json index f02d2dab5a..5f1a48a48c 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameters.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/base-uri-parameters.raml.json @@ -1,11 +1,17 @@ [ { "label": "parameter", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "parameter", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11parameter", "filterText": "parameter:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/documentation-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/documentation-array.raml.json index 5b8f90b43a..5ab6e0e165 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/documentation-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/documentation-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "content", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "content", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10content", "filterText": "content: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/empty-header.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/empty-header.raml.json index 6b1a6865b8..f8aba85aac 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/empty-header.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/empty-header.raml.json @@ -1,11 +1,17 @@ [ { "label": "#%RAML 1.0", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0", "filterText": "#%RAML 1.0", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/media-type-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/media-type-array.raml.json index 17af33f4e1..31b4150de0 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/media-type-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/media-type-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "application/xml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/media-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/media-type.raml.json index f005d5be3d..ba83a618f3 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/media-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/media-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "application/json", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/json", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/json", "filterText": "\n- application/json", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "application/xml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "application/xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11application/xml", "filterText": "\n- application/xml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/protocols-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/protocols-array.raml.json index 8ce60c818d..f0fdd79d93 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/protocols-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/protocols-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "HTTP", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP", "filterText": "HTTP", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "HTTPS", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTPS", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTPS", "filterText": "HTTPS", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/protocols.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/protocols.raml.json index 6d74d0ea57..7121738f21 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/protocols.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/protocols.raml.json @@ -1,11 +1,17 @@ [ { "label": "HTTP", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP", "filterText": "\n- HTTP", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "HTTPS", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTPS", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTPS", "filterText": "\n- HTTPS", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/query-parameter-with-prefix.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/query-parameter-with-prefix.raml.json index b9716ee2ae..12d9971136 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/query-parameter-with-prefix.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/query-parameter-with-prefix.raml.json @@ -1,11 +1,17 @@ [ { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/query-parameter.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/query-parameter.raml.json index 10dbd51f99..d48bd7c021 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/query-parameter.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/query-parameter.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/raml-header.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/raml-header.raml.json index 6c4187b513..3d0aae8265 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/raml-header.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/raml-header.raml.json @@ -1,11 +1,17 @@ [ { "label": "#%RAML 1.0 AnnotationTypeDeclaration", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0 AnnotationTypeDeclaration", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0 AnnotationTypeDeclaration", "filterText": "#%RAML 1.0 AnnotationTypeDeclaration", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "#%RAML 1.0 DataType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0 DataType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0 DataType", "filterText": "#%RAML 1.0 DataType", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "#%RAML 1.0 DocumentationItem", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0 DocumentationItem", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0 DocumentationItem", "filterText": "#%RAML 1.0 DocumentationItem", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "#%RAML 1.0 Extension", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0 Extension", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0 Extension", "filterText": "#%RAML 1.0 Extension", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "#%RAML 1.0 Library", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0 Library", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0 Library", "filterText": "#%RAML 1.0 Library", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "#%RAML 1.0 NamedExample", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0 NamedExample", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0 NamedExample", "filterText": "#%RAML 1.0 NamedExample", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "#%RAML 1.0 Overlay", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0 Overlay", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0 Overlay", "filterText": "#%RAML 1.0 Overlay", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "#%RAML 1.0 ResourceType", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0 ResourceType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0 ResourceType", "filterText": "#%RAML 1.0 ResourceType", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "#%RAML 1.0 SecurityScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0 SecurityScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0 SecurityScheme", "filterText": "#%RAML 1.0 SecurityScheme", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "#%RAML 1.0 Trait", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "#%RAML 1.0 Trait", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11#%RAML 1.0 Trait", "filterText": "#%RAML 1.0 Trait", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/root.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/root.raml.json index c2fb007546..2adaa075f0 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/root.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/top-level/expected/root.raml.json @@ -1,11 +1,17 @@ [ { "label": "New documentation", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New documentation", "filterText": "documentation:\n -\n content: $1\n title: $2", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "annotationTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "annotationTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11annotationTypes", "filterText": "annotationTypes:\n ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "baseUri", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "baseUri", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUri", "filterText": "baseUri: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "baseUriParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "baseUriParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11baseUriParameters", "filterText": "baseUriParameters:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "documentation", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "documentation", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11documentation", "filterText": "documentation:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "mediaType", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "mediaType", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mediaType", "filterText": "mediaType: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "resourceTypes", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "resourceTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourceTypes", "filterText": "resourceTypes:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "securitySchemes", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securitySchemes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securitySchemes", "filterText": "securitySchemes:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10title", "filterText": "title: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "traits", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "traits", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11traits", "filterText": "traits:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "types", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "types", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11types", "filterText": "types:\n ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "uses", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uses", "filterText": "uses:\n ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11version", "filterText": "version: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-link.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-link.raml.json index 92f4027b8f..20f28b616c 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-link.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-link.raml.json @@ -1,11 +1,17 @@ [ { "label": "tr2", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tr2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tr2", "filterText": "tr2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-name-after-declaration.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-name-after-declaration.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-name-after-declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-name-after-declaration.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-name.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-name.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-name.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-name.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-operation-level.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-operation-level.raml.json index d481b5d43a..dfba68d1c2 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-operation-level.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition-operation-level.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition.raml.json index 989a34b6e2..14b61a3517 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/definition.raml.json @@ -1,11 +1,17 @@ [ { "label": "body", - "kind": [], + "kind": [ + + ], "detail": "body", "documentation": "body", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11body", "filterText": "body:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "headers", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "headers", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11headers", "filterText": "headers:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "is", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "is", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11is", "filterText": "is:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "protocols", - "kind": [], + "kind": [ + + ], "detail": "root", "documentation": "protocols", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols", "filterText": "protocols:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "queryParameters", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "queryParameters", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryParameters", "filterText": "queryParameters:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "queryString", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "queryString", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11queryString", "filterText": "queryString:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "responses", - "kind": [], + "kind": [ + + ], "detail": "responses", "documentation": "responses", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11responses", "filterText": "responses:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "securedBy", - "kind": [], + "kind": [ + + ], "detail": "security", "documentation": "securedBy", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy", "filterText": "securedBy:\n - ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "usage", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "usage", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11usage", "filterText": "usage: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/fragment-last-line.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/fragment-last-line.raml.json index b2202d0b4d..4d3b8861fa 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/fragment-last-line.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/fragment-last-line.raml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/in-trait-complex-value.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/in-trait-complex-value.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/in-trait-complex-value.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/in-trait-complex-value.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/include.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/include.raml.json index 2546e4e0b5..800f17cfcc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/include.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/include.raml.json @@ -1,11 +1,17 @@ [ { "label": "!include", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "inclusion tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11!include", "filterText": "!include ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/known-variables-single-char.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/known-variables-single-char.raml.json index bf9c4e0acc..f302d350e0 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/known-variables-single-char.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/known-variables-single-char.raml.json @@ -1,11 +1,17 @@ [ { "label": "methodName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "methodName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11methodName", "filterText": "<>", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "resourcePath", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourcePath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourcePath", "filterText": "<>", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "resourcePathName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourcePathName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourcePathName", "filterText": "<>", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/known-variables.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/known-variables.raml.json index 8241be7b3d..b0633c4ae7 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/known-variables.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/known-variables.raml.json @@ -1,11 +1,17 @@ [ { "label": "methodName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "methodName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11methodName", "filterText": "<>", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "resourcePath", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourcePath", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourcePath", "filterText": "<>", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "resourcePathName", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "resourcePathName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11resourcePathName", "filterText": "<>", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/over-include.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/over-include.raml.json index 429cf9458f..a93cbb88da 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/over-include.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/over-include.raml.json @@ -1,11 +1,17 @@ [ { "label": "definition-link.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definition-link.raml", "filterText": "definition-link.raml", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "definition-name-after-declaration.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definition-name-after-declaration.raml", "filterText": "definition-name-after-declaration.raml", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "definition-name.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definition-name.raml", "filterText": "definition-name.raml", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "definition-operation-level.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definition-operation-level.raml", "filterText": "definition-operation-level.raml", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "definition.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11definition.raml", "filterText": "definition.raml", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "expected/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11expected/", "filterText": "expected/", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "fragment-last-line.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11fragment-last-line.raml", "filterText": "fragment-last-line.raml", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "fragment/", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11fragment/", "filterText": "fragment/", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "in-trait-complex-value.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11in-trait-complex-value.raml", "filterText": "in-trait-complex-value.raml", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "include.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11include.raml", "filterText": "include.raml", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "known-variables-single-char.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11known-variables-single-char.raml", "filterText": "known-variables-single-char.raml", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "known-variables.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11known-variables.raml", "filterText": "known-variables.raml", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "protocols.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11protocols.raml", "filterText": "protocols.raml", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "reference-array-variables.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11reference-array-variables.raml", "filterText": "reference-array-variables.raml", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "reference-array-with-params.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11reference-array-with-params.raml", "filterText": "reference-array-with-params.raml", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "reference-array.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11reference-array.raml", "filterText": "reference-array.raml", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "reference-endpoint.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11reference-endpoint.raml", "filterText": "reference-endpoint.raml", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "reference-inside-flow-array.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11reference-inside-flow-array.raml", "filterText": "reference-inside-flow-array.raml", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "reference.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11reference.raml", "filterText": "reference.raml", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "required-in-trait.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required-in-trait.raml", "filterText": "required-in-trait.raml", "insertText": null, @@ -601,11 +721,17 @@ }, { "label": "securedBy-array.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11securedBy-array.raml", "filterText": "securedBy-array.raml", "insertText": null, @@ -631,11 +757,17 @@ }, { "label": "variables-reference-array.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11variables-reference-array.raml", "filterText": "variables-reference-array.raml", "insertText": null, @@ -661,11 +793,17 @@ }, { "label": "variables-reference-filter.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11variables-reference-filter.raml", "filterText": "variables-reference-filter.raml", "insertText": null, @@ -691,11 +829,17 @@ }, { "label": "variables-reference-value.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11variables-reference-value.raml", "filterText": "variables-reference-value.raml", "insertText": null, @@ -721,11 +865,17 @@ }, { "label": "variables-reference.raml", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "Path suggestion", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11variables-reference.raml", "filterText": "variables-reference.raml", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/protocols.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/protocols.raml.json index d4822d5e40..4bf7a1cf54 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/protocols.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/protocols.raml.json @@ -1,11 +1,17 @@ [ { "label": "HTTP", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTP", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTP", "filterText": "HTTP", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "HTTPS", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "HTTPS", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11HTTPS", "filterText": "HTTPS", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-array-with-params.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-array-with-params.raml.json index e676edf6e8..f0a912ab2b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-array-with-params.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-array-with-params.raml.json @@ -1,11 +1,17 @@ [ { "label": "New tr", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "tr", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New tr", "filterText": "tr:\n param: $1", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-array.raml.json index f5524ce3b7..8027172e09 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "tr", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tr", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tr", "filterText": "tr", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-endpoint.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-endpoint.raml.json index 6c50e797f0..c87a5f8bed 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-endpoint.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-endpoint.raml.json @@ -1,11 +1,17 @@ [ { "label": "tr", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tr", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tr", "filterText": "tr", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-inside-flow-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-inside-flow-array.raml.json index c0f493c19f..dc9af710a6 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-inside-flow-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference-inside-flow-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "New secured", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "secured", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "21New secured", "filterText": "secured: {\n tokenName: $1\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference.raml.json index 8bb3ad09b3..fca542b67f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/reference.raml.json @@ -1,11 +1,17 @@ [ { "label": "tr", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "tr", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11tr", "filterText": "tr", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/required-in-trait.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/required-in-trait.raml.json index cfd7b8d0e0..079ca77436 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/required-in-trait.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/required-in-trait.raml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/securedBy-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/securedBy-array.raml.json index fa2c54e95c..de4331c5e8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/securedBy-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/securedBy-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "mySecurityScheme", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "mySecurityScheme", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11mySecurityScheme", "filterText": "mySecurityScheme:\n ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "null", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "null", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11null", "filterText": "null", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-array.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-array.raml.json index bfc00ed083..a059705c01 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-array.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-array.raml.json @@ -1,11 +1,17 @@ [ { "label": "param1", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "param1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10param1", "filterText": "param1: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "param2", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "param2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10param2", "filterText": "param2: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-filter.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-filter.raml.json index 68ef46d4df..4ef1f28a80 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-filter.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-filter.raml.json @@ -1,11 +1,17 @@ [ { "label": "param2", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "param2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10param2", "filterText": "param2: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-value.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-value.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-value.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference-value.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference.raml.json index 0ddfdd6438..e3f5f489f4 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/traits/expected/variables-reference.raml.json @@ -1,11 +1,17 @@ [ { "label": "param1", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "param1", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10param1", "filterText": "param1: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "param2", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "param2", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10param2", "filterText": "param2: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-items-entry.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-items-entry.raml.json index 61f1967b2a..864e3b59f5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-items-entry.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-items-entry.raml.json @@ -1,11 +1,17 @@ [ { "label": "A", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A", "filterText": "A", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-items.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-items.raml.json index 17f92b3a49..ff1d949889 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-items.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-items.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-type.raml.json index 6cc6867190..7519eda621 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/array-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxItems", "filterText": "maxItems: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minItems", "filterText": "minItems: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "uniqueItems", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "uniqueItems", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11uniqueItems", "filterText": "uniqueItems: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/boolean-completion.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/boolean-completion.raml.json index a5f608df4a..b22922e978 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/boolean-completion.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/boolean-completion.raml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/boolean-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/boolean-type.raml.json index 408c668818..6cc686657b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/boolean-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/boolean-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets-dont-suggest-on-declaration.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets-dont-suggest-on-declaration.raml.json index 8b9c2d4f76..bafec027da 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets-dont-suggest-on-declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets-dont-suggest-on-declaration.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets-two-levels.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets-two-levels.raml.json index 6f9b8376b4..d422fa5ff5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets-two-levels.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets-two-levels.raml.json @@ -1,11 +1,17 @@ [ { "label": "aNewFacet", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "aNewFacet", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11aNewFacet", "filterText": "aNewFacet: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "noHolidays", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "noHolidays", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11noHolidays", "filterText": "noHolidays: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "onlyFutureDates", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "onlyFutureDates", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11onlyFutureDates", "filterText": "onlyFutureDates: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets.raml.json index 8012d2e287..53099aa05f 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/custom-facets.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "noHolidays", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "noHolidays", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11noHolidays", "filterText": "noHolidays: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "onlyFutureDates", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "onlyFutureDates", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11onlyFutureDates", "filterText": "onlyFutureDates: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/datetime-only-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/datetime-only-type.raml.json index 408c668818..6cc686657b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/datetime-only-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/datetime-only-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/datetime-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/datetime-type.raml.json index 408c668818..6cc686657b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/datetime-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/datetime-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/default-declaration.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/default-declaration.raml.json index 32be695242..8297391ca6 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/default-declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/default-declaration.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/discriminator.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/discriminator.raml.json index 4058d06d4d..2a572a97d4 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/discriminator.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/discriminator.raml.json @@ -1,11 +1,17 @@ [ { "label": "one", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "one", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11one", "filterText": "one", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "two", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "two", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11two", "filterText": "two", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/file-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/file-type.raml.json index 51ddbcdc61..21f843e378 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/file-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/file-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "fileTypes", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "fileTypes", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11fileTypes", "filterText": "fileTypes: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/integer-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/integer-type.raml.json index d934187bdd..f1def9dbdc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/integer-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/integer-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration-after-previous-declaration.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration-after-previous-declaration.raml.json index aba2816eaf..f2d830db69 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration-after-previous-declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration-after-previous-declaration.raml.json @@ -1,11 +1,17 @@ [ { "label": "New type", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New type", "filterText": "$1:\n type: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration-before-next-declaration.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration-before-next-declaration.raml.json index 296fbc9cac..ae399cc19d 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration-before-next-declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration-before-next-declaration.raml.json @@ -1,11 +1,17 @@ [ { "label": "New type", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New type", "filterText": "$1:\n type: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration.raml.json index aba2816eaf..f2d830db69 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/name-declaration.raml.json @@ -1,11 +1,17 @@ [ { "label": "New type", - "kind": [], + "kind": [ + + ], "detail": "template", "documentation": "", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "20New type", "filterText": "$1:\n type: $2", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/nil-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/nil-type.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/nil-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/nil-type.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/number-format.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/number-format.raml.json index c6c1d28ada..39d59df480 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/number-format.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/number-format.raml.json @@ -1,11 +1,17 @@ [ { "label": "double", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "double", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11double", "filterText": "double", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "float", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "float", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11float", "filterText": "float", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "int", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int", "filterText": "int", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "int16", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int16", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int16", "filterText": "int16", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "int32", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int32", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int32", "filterText": "int32", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "int64", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int64", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int64", "filterText": "int64", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "int8", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "int8", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11int8", "filterText": "int8", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "long", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "long", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11long", "filterText": "long", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/number-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/number-type.raml.json index d934187bdd..f1def9dbdc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/number-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/number-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "format", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "format", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11format", "filterText": "format: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "maximum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maximum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maximum", "filterText": "maximum: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "minimum", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minimum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minimum", "filterText": "minimum: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "multipleOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "multipleOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11multipleOf", "filterText": "multipleOf: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property-inline.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property-inline.raml.json index 6b63e355e5..fd346297db 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property-inline.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property-inline.raml.json @@ -1,11 +1,17 @@ [ { "label": "A", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A", "filterText": "A", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property-name.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property-name.raml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property-name.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property-name.raml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property.raml.json index d481b5d43a..dfba68d1c2 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-property.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-type.raml.json index d8ad859d29..21aa025e73 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/object-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "additionalProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "additionalProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11additionalProperties", "filterText": "additionalProperties: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "discriminator: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "discriminatorValue", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "discriminatorValue", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminatorValue", "filterText": "discriminatorValue: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "maxProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "maxProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxProperties", "filterText": "maxProperties: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "minProperties", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "minProperties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minProperties", "filterText": "minProperties: ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/recursion.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/recursion.raml.json index ac894032fd..4bd83bf76e 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/recursion.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/recursion.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/required-boolean.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/required-boolean.raml.json index ce89dfe7a4..dff715d123 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/required-boolean.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/required-boolean.raml.json @@ -1,11 +1,17 @@ [ { "label": "false", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "false", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11false", "filterText": "false", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "true", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "true", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11true", "filterText": "true", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/string-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/string-type.raml.json index 408c668818..6cc686657b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/string-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/string-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/time-only-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/time-only-type.raml.json index 408c668818..6cc686657b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/time-only-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/time-only-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "maxLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "maxLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11maxLength", "filterText": "maxLength: ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "minLength", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "minLength", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11minLength", "filterText": "minLength: ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "pattern", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "pattern", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11pattern", "filterText": "pattern: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-item-reference.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-item-reference.raml.json index 3807ce0ccf..68ac30feb5 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-item-reference.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-item-reference.raml.json @@ -1,11 +1,17 @@ [ { "label": "A", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A", "filterText": "A", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "B", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "B", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11B", "filterText": "B", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties-with-prefix-m.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties-with-prefix-m.raml.json index fe51488c70..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties-with-prefix-m.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties-with-prefix-m.raml.json @@ -1 +1,3 @@ -[] +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties-with-prefix-p.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties-with-prefix-p.raml.json index 0d2946b530..99f5d295cc 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties-with-prefix-p.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties-with-prefix-p.raml.json @@ -1,11 +1,17 @@ [ { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -29,4 +35,4 @@ "commitCharacters": null, "command": null } -] +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties.raml.json index c6bf7ea821..048a7d5efa 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-properties.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "types and traits", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-property-reference.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-property-reference.raml.json index 86e4bedf41..0c30d79652 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-property-reference.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-property-reference.raml.json @@ -1,11 +1,17 @@ [ { "label": "A", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A", "filterText": "A", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "B", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "B", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11B", "filterText": "B", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-reference-inline.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-reference-inline.raml.json index 24cef76389..b951d80b1e 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-reference-inline.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-reference-inline.raml.json @@ -1,11 +1,17 @@ [ { "label": "A", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A", "filterText": "A", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-reference.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-reference.raml.json index 31c3a875a8..e21760714a 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-reference.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-reference.raml.json @@ -1,11 +1,17 @@ [ { "label": "A", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "A", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11A", "filterText": "A", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10any", "filterText": "any", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "array", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10date-only", "filterText": "date-only", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10datetime", "filterText": "datetime", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10datetime-only", "filterText": "datetime-only", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10file", "filterText": "file", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10nil", "filterText": "nil", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "object", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-with-comment.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-with-comment.raml.json index 4297eba13c..e69c0a62d4 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-with-comment.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/type-with-comment.raml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/types-explicit.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/types-explicit.raml.json index b7cec982fa..1ccea005a0 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/types-explicit.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/types-explicit.raml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10date-only", "filterText": "date-only", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10datetime", "filterText": "datetime", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10datetime-only", "filterText": "datetime-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10file", "filterText": "file", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10integer", "filterText": "integer", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10nil", "filterText": "nil", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10number", "filterText": "number", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10object", "filterText": "object", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10string", "filterText": "string", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/types-inline.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/types-inline.raml.json index 34e5e29b05..cd95928e37 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/types-inline.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/types-inline.raml.json @@ -1,11 +1,17 @@ [ { "label": "any", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "any", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11any", "filterText": "any", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "array", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "array", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11array", "filterText": "array", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "boolean", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "boolean", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11boolean", "filterText": "boolean", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "date-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "date-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11date-only", "filterText": "date-only", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "datetime", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime", "filterText": "datetime", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "datetime-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "datetime-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11datetime-only", "filterText": "datetime-only", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "file", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "file", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11file", "filterText": "file", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "integer", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "integer", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11integer", "filterText": "integer", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "nil", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nil", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nil", "filterText": "nil", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "number", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "number", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11number", "filterText": "number", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "object", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "object", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11object", "filterText": "object", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "string", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "string", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11string", "filterText": "string", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "time-only", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "time-only", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11time-only", "filterText": "time-only", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/union-type.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/union-type.raml.json index 21db8a467f..6e32c942a9 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/union-type.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/union-type.raml.json @@ -1,11 +1,17 @@ [ { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "displayName", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "displayName", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11displayName", "filterText": "displayName: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:\n ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "examples", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "examples", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11examples", "filterText": "examples:\n ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "facets", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "facets", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11facets", "filterText": "facets:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/xml-serialization.raml.json b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/xml-serialization.raml.json index 534e14b9e9..e50d7bce8b 100644 --- a/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/xml-serialization.raml.json +++ b/als-suggestions/shared/src/test/resources/test/raml10/by-directory/types/expected/xml-serialization.raml.json @@ -1,11 +1,17 @@ [ { "label": "attribute", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "attribute", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11attribute", "filterText": "attribute: ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "name", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "name", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11name", "filterText": "name: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "namespace", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "namespace", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11namespace", "filterText": "namespace: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "prefix", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "prefix", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11prefix", "filterText": "prefix: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "wrapped", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "wrapped", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11wrapped", "filterText": "wrapped: ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-begin.yaml.json b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-begin.yaml.json index e8b5de43b1..cd0d952132 100644 --- a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-begin.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-begin.yaml.json @@ -1,11 +1,17 @@ [ { "label": "contact", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "contact", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contact", "filterText": "contact: {\n $1\n},", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description: $1,", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "license", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "license", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11license", "filterText": "license: {\n $1\n},", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "termsOfService", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "termsOfService", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11termsOfService", "filterText": "termsOfService: $1,", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10version", "filterText": "version: $1,", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-end.yaml.json b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-end.yaml.json index 3f23eb8e91..25aeb3d1ee 100644 --- a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-end.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-end.yaml.json @@ -1,11 +1,17 @@ [ { "label": "contact", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "contact", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11contact", "filterText": "contact: {\n $1\n}", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11description", "filterText": "description:", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "license", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "license", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11license", "filterText": "license: {\n $1\n}", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "termsOfService", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "termsOfService", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11termsOfService", "filterText": "termsOfService:", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "version", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "version", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10version", "filterText": "version:", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-outside.yaml.json b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-outside.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-outside.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-map-indicators-outside.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-begin-with-comma.yaml.json b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-begin-with-comma.yaml.json index d05755fdf2..dffea9a6b0 100644 --- a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-begin-with-comma.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-begin-with-comma.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf:\n - ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description: ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-begin.yaml.json b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-begin.yaml.json index a9f391ea44..491437e180 100644 --- a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-begin.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-begin.yaml.json @@ -1,11 +1,17 @@ [ { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf:\n - ", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default: ", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated: ", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "discriminator", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "discriminator", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11discriminator", "filterText": "discriminator:\n ", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum:\n - ", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example: ", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs:\n ", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items:\n ", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not:\n ", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable: ", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf:\n ", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties:\n ", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly: ", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required: ", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title: ", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type: ", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly: ", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml:\n ", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-end-with-comma.yaml.json b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-end-with-comma.yaml.json index 361392594d..98d27c5bab 100644 --- a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-end-with-comma.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-end-with-comma.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref:", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf: [\n $1\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf: [\n $1\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default:", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated:", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description:", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum: [\n $1\n]", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs: {\n $1\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items: {\n $1\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not: {\n $1\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable:", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf: {\n $1\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties: {\n $1\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly:", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title:", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type:", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly:", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml: {\n $1\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-end.yaml.json b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-end.yaml.json index 361392594d..98d27c5bab 100644 --- a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-end.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-end.yaml.json @@ -1,11 +1,17 @@ [ { "label": "$ref", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "reference tag", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "0$ref", "filterText": "$ref:", "insertText": null, @@ -31,11 +37,17 @@ }, { "label": "allOf", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "allOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11allOf", "filterText": "allOf: [\n $1\n]", "insertText": null, @@ -61,11 +73,17 @@ }, { "label": "anyOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "anyOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11anyOf", "filterText": "anyOf: [\n $1\n]", "insertText": null, @@ -91,11 +109,17 @@ }, { "label": "default", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "default", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11default", "filterText": "default:", "insertText": null, @@ -121,11 +145,17 @@ }, { "label": "deprecated", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "deprecated", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11deprecated", "filterText": "deprecated:", "insertText": null, @@ -151,11 +181,17 @@ }, { "label": "description", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "description", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10description", "filterText": "description:", "insertText": null, @@ -181,11 +217,17 @@ }, { "label": "enum", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "enum", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11enum", "filterText": "enum: [\n $1\n]", "insertText": null, @@ -211,11 +253,17 @@ }, { "label": "example", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "example", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11example", "filterText": "example:", "insertText": null, @@ -241,11 +289,17 @@ }, { "label": "externalDocs", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "externalDocs", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11externalDocs", "filterText": "externalDocs: {\n $1\n}", "insertText": null, @@ -271,11 +325,17 @@ }, { "label": "items", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "items", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11items", "filterText": "items: {\n $1\n}", "insertText": null, @@ -301,11 +361,17 @@ }, { "label": "not", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "not", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11not", "filterText": "not: {\n $1\n}", "insertText": null, @@ -331,11 +397,17 @@ }, { "label": "nullable", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "nullable", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11nullable", "filterText": "nullable:", "insertText": null, @@ -361,11 +433,17 @@ }, { "label": "oneOf", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "oneOf", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11oneOf", "filterText": "oneOf: {\n $1\n}", "insertText": null, @@ -391,11 +469,17 @@ }, { "label": "properties", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "properties", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11properties", "filterText": "properties: {\n $1\n}", "insertText": null, @@ -421,11 +505,17 @@ }, { "label": "readOnly", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "readOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11readOnly", "filterText": "readOnly:", "insertText": null, @@ -451,11 +541,17 @@ }, { "label": "required", - "kind": [], + "kind": [ + + ], "detail": "parameters", "documentation": "required", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11required", "filterText": "required:", "insertText": null, @@ -481,11 +577,17 @@ }, { "label": "title", - "kind": [], + "kind": [ + + ], "detail": "docs", "documentation": "title", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11title", "filterText": "title:", "insertText": null, @@ -511,11 +613,17 @@ }, { "label": "type", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "type", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "10type", "filterText": "type:", "insertText": null, @@ -541,11 +649,17 @@ }, { "label": "writeOnly", - "kind": [], + "kind": [ + + ], "detail": "unknown", "documentation": "writeOnly", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11writeOnly", "filterText": "writeOnly:", "insertText": null, @@ -571,11 +685,17 @@ }, { "label": "xml", - "kind": [], + "kind": [ + + ], "detail": "schemas", "documentation": "xml", - "deprecated": [], - "preselect": [], + "deprecated": [ + + ], + "preselect": [ + + ], "sortText": "11xml", "filterText": "xml: {\n $1\n}", "insertText": null, diff --git a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-outside.yaml.json b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-outside.yaml.json index 0637a088a0..c9c513b9b8 100644 --- a/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-outside.yaml.json +++ b/als-suggestions/shared/src/test/resources/test/yaml/expected/yaml-seq-indicator-outside.yaml.json @@ -1 +1,3 @@ -[] \ No newline at end of file +[ + +] \ No newline at end of file diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/JsonSuggestionStylerTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/JsonSuggestionStylerTest.scala index aa07ba14fc..d8d053a9e4 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/JsonSuggestionStylerTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/JsonSuggestionStylerTest.scala @@ -1,12 +1,12 @@ package org.mulesoft.als.suggestions -import org.mulesoft.common.client.lexical.{PositionRange, SourceLocation, Position => AmfPosition} import org.mulesoft.als.common.YPartBranch import org.mulesoft.als.common.diff.FileAssertionTest import org.mulesoft.als.common.dtoTypes.Position import org.mulesoft.als.suggestions.styler.{JsonSuggestionStyler, SyamlStylerParams} +import org.mulesoft.common.client.lexical.{PositionRange, SourceLocation, Position => AmfPosition} import org.mulesoft.lsp.configuration.{DefaultFormattingOptions, FormattingOptions} -import org.scalatest.AsyncFunSuite +import org.scalatest.funsuite.AsyncFunSuite import org.yaml.model._ import scala.concurrent.ExecutionContext diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/PathTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/PathTest.scala index a88b5ee518..69c4f2d1e9 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/PathTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/PathTest.scala @@ -6,9 +6,13 @@ import amf.core.internal.remote.FileNotFound import amf.core.internal.unsafe.PlatformSecrets import org.mulesoft.als.common.DirectoryResolver import org.mulesoft.als.suggestions.plugins.aml.AMLPathCompletionPlugin -import org.mulesoft.amfintegration.amfconfiguration.{ALSConfigurationState, EditorConfiguration, EmptyProjectConfigurationState} -import org.scalatest.AsyncFunSuite -import org.scalatest.compatible.Assertion +import org.mulesoft.amfintegration.amfconfiguration.{ + ALSConfigurationState, + EditorConfiguration, + EmptyProjectConfigurationState +} +import org.scalatest.Assertion +import org.scalatest.funsuite.AsyncFunSuite import scala.concurrent.ExecutionContext.Implicits.global import scala.concurrent.{ExecutionContext, Future} @@ -70,7 +74,7 @@ class PathTest extends AsyncFunSuite with PlatformSecrets { test("Should list files from absolute route, having '/' prefix") { val eventualAssertion: Future[Assertion] = for { alsConfiguration <- futureAlsConfiguration - result <- AMLPathCompletionPlugin.resolveInclusion(url, directoryResolver, "/", None, alsConfiguration, None) + result <- AMLPathCompletionPlugin.resolveInclusion(url, directoryResolver, "/", None, alsConfiguration, None) } yield { assert(result.size == 1) } @@ -80,7 +84,7 @@ class PathTest extends AsyncFunSuite with PlatformSecrets { test("Should list files from absolute route, NOT having '/' prefix") { for { alsConfiguration <- futureAlsConfiguration - result <- AMLPathCompletionPlugin.resolveInclusion(url, directoryResolver, "", None, alsConfiguration, None) + result <- AMLPathCompletionPlugin.resolveInclusion(url, directoryResolver, "", None, alsConfiguration, None) } yield { assert(result.size == 1) } @@ -89,7 +93,14 @@ class PathTest extends AsyncFunSuite with PlatformSecrets { test("Should list files from root route, having '/' prefix") { for { alsConfiguration <- futureAlsConfiguration - result <- AMLPathCompletionPlugin.resolveInclusion(url, directoryResolver, "/", Some(urlDir), alsConfiguration, None) + result <- AMLPathCompletionPlugin.resolveInclusion( + url, + directoryResolver, + "/", + Some(urlDir), + alsConfiguration, + None + ) } yield { assert(result.forall(r => Seq("/api.raml", "/directory/").contains(r.newText))) } diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/YamlSuggestionStylerTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/YamlSuggestionStylerTest.scala index 2390e316cf..7116414af6 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/YamlSuggestionStylerTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/YamlSuggestionStylerTest.scala @@ -4,11 +4,11 @@ import org.mulesoft.als.common.diff.FileAssertionTest import org.mulesoft.als.common.dtoTypes.{Position, PositionRange} import org.mulesoft.als.common.{NodeBranchBuilder, YPartBranch} import org.mulesoft.als.suggestions.styler.{SyamlStylerParams, YamlSuggestionStyler} +import org.mulesoft.common.client.lexical.{Position => AmfPosition} import org.mulesoft.lsp.configuration.FormattingOptions import org.mulesoft.lsp.edit.TextEdit import org.mulesoft.lsp.feature.common.{Range, Position => LspPosition} -import org.mulesoft.common.client.lexical.{Position => AmfPosition} -import org.scalatest.AsyncFunSuite +import org.scalatest.funsuite.AsyncFunSuite import org.yaml.model.{YDocument, YNode} import org.yaml.parser.YamlParser diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/SuggestionByDirectoryTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/SuggestionByDirectoryTest.scala index a66df4fe76..4a62b43e3a 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/SuggestionByDirectoryTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/SuggestionByDirectoryTest.scala @@ -8,7 +8,7 @@ import org.mulesoft.amfintegration.amfconfiguration.{ EmptyProjectConfigurationState } import org.mulesoft.common.io.{Fs, SyncFile} -import org.scalatest.AsyncFreeSpec +import org.scalatest.freespec.AsyncFreeSpec import scala.concurrent.{ExecutionContext, Future} diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/SuggestionsTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/SuggestionsTest.scala index c4f9140613..bf8850264b 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/SuggestionsTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/SuggestionsTest.scala @@ -10,7 +10,8 @@ import org.mulesoft.amfintegration.amfconfiguration.{ EmptyProjectConfigurationState } import org.mulesoft.lsp.feature.completion.CompletionItem -import org.scalatest.{Assertion, AsyncFunSuite} +import org.scalatest.compatible.Assertion +import org.scalatest.funsuite.AsyncFunSuite import scala.concurrent.{ExecutionContext, Future} diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/TwinSyntaxQtyDirValidationTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/TwinSyntaxQtyDirValidationTest.scala index 1cfa565486..80a1cdcc17 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/TwinSyntaxQtyDirValidationTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/TwinSyntaxQtyDirValidationTest.scala @@ -1,9 +1,9 @@ package org.mulesoft.als.suggestions.test import org.mulesoft.common.io.{Fs, SyncFile} -import org.scalatest.FunSuite +import org.scalatest.funsuite.AnyFunSuite -class TwinSyntaxQtyDirValidationTest extends FunSuite { +class TwinSyntaxQtyDirValidationTest extends AnyFunSuite { test("test that Oas 2.0 yaml has same files than json resources") { val jsonPath = "als-suggestions/shared/src/test/resources/test/oas20/by-directory/json" diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/AMLSuggestionsTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/AMLSuggestionsTest.scala index 377b56ce4b..31bd408e6e 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/AMLSuggestionsTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/AMLSuggestionsTest.scala @@ -1,7 +1,7 @@ package org.mulesoft.als.suggestions.test.aml import org.mulesoft.als.suggestions.test.SuggestionsTest -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.Future diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/AsyncAPI/AMLAsyncApi06SuggestionTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/AsyncAPI/AMLAsyncApi06SuggestionTest.scala index 622fd4d64c..3ce8cdbab5 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/AsyncAPI/AMLAsyncApi06SuggestionTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/AsyncAPI/AMLAsyncApi06SuggestionTest.scala @@ -1,7 +1,7 @@ package org.mulesoft.als.suggestions.test.aml.AsyncAPI import org.mulesoft.als.suggestions.test.aml.AMLSuggestionsTest -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.Future diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/SuggestionsWithDialectTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/SuggestionsWithDialectTest.scala index cc02635048..d285ccc77c 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/SuggestionsWithDialectTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/SuggestionsWithDialectTest.scala @@ -7,7 +7,7 @@ import org.mulesoft.amfintegration.amfconfiguration.{ EditorConfiguration, EmptyProjectConfigurationState } -import org.scalatest.Assertion +import org.scalatest.compatible.Assertion import scala.concurrent.Future diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/UnionSuggestionsTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/UnionSuggestionsTest.scala index 80ad89000c..45bcee96cc 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/UnionSuggestionsTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/aml/UnionSuggestionsTest.scala @@ -1,9 +1,5 @@ package org.mulesoft.als.suggestions.test.aml -import org.scalatest.Assertion - -import scala.concurrent.Future - class UnionSuggestionsTest extends SuggestionsWithDialectTest { override def rootPath: String = "AML/union" diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/core/CoreTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/core/CoreTest.scala index b28712534e..218530459a 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/core/CoreTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/core/CoreTest.scala @@ -5,14 +5,15 @@ import amf.core.client.scala.resource.ResourceLoader import amf.core.internal.unsafe.PlatformSecrets import org.mulesoft.als.common.{MarkerFinderTest, PlatformDirectoryResolver} import org.mulesoft.als.configuration.AlsConfiguration -import org.mulesoft.als.suggestions.client.{Suggestions, UnitBundle} +import org.mulesoft.als.suggestions.client.Suggestions import org.mulesoft.amfintegration.amfconfiguration.{ ALSConfigurationState, EditorConfiguration, EmptyProjectConfigurationState } import org.mulesoft.lsp.feature.completion.CompletionItem -import org.scalatest.{Assertion, AsyncFunSuite} +import org.scalatest.Assertion +import org.scalatest.funsuite.AsyncFunSuite import scala.concurrent.{ExecutionContext, Future} diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30ComponentRefSuggestionTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30ComponentRefSuggestionTest.scala index 86670388d8..db35042144 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30ComponentRefSuggestionTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30ComponentRefSuggestionTest.scala @@ -6,12 +6,12 @@ import org.mulesoft.als.configuration.ProjectConfiguration import org.mulesoft.als.suggestions.test.{BaseSuggestionsForTest, TestProjectConfigurationState} import org.mulesoft.amfintegration.amfconfiguration.{ALSConfigurationState, EditorConfigurationState} import org.mulesoft.lsp.feature.completion.CompletionItem -import org.scalatest.AsyncFunSuite -import org.scalatest.Matchers.convertToAnyShouldWrapper +import org.scalatest.funsuite.AsyncFunSuite +import org.scalatest.matchers.should.Matchers import scala.concurrent.{ExecutionContext, Future} -class Oas30ComponentRefSuggestionTest extends AsyncFunSuite with BaseSuggestionsForTest { +class Oas30ComponentRefSuggestionTest extends AsyncFunSuite with BaseSuggestionsForTest with Matchers { def rootPath: String = "file://als-suggestions/shared/src/test/resources/test/oas30/oas-components/root-oas/" override implicit val executionContext: ExecutionContext = ExecutionContext.Implicits.global diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30ComponentSuggestionTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30ComponentSuggestionTest.scala index 6c4d3a2680..d573f13f83 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30ComponentSuggestionTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30ComponentSuggestionTest.scala @@ -1,19 +1,18 @@ package org.mulesoft.als.suggestions.test.oas30 -import amf.apicontract.client.scala.AMFConfiguration -import amf.apicontract.client.scala.OASConfiguration +import amf.apicontract.client.scala.{AMFConfiguration, OASConfiguration} import amf.core.client.scala.AMFGraphConfiguration import amf.core.client.scala.resource.ResourceLoader import org.mulesoft.als.configuration.ProjectConfiguration import org.mulesoft.als.suggestions.test.{BaseSuggestionsForTest, TestProjectConfigurationState} import org.mulesoft.amfintegration.amfconfiguration.{ALSConfigurationState, EditorConfigurationState} import org.mulesoft.lsp.feature.completion.CompletionItem -import org.scalatest.AsyncFunSuite -import org.scalatest.Matchers.convertToAnyShouldWrapper +import org.scalatest.funsuite.AsyncFunSuite +import org.scalatest.matchers.should.Matchers import scala.concurrent.{ExecutionContext, Future} -class Oas30ComponentSuggestionTest extends AsyncFunSuite with BaseSuggestionsForTest { +class Oas30ComponentSuggestionTest extends AsyncFunSuite with BaseSuggestionsForTest with Matchers { def rootPath: String = "file://als-suggestions/shared/src/test/resources/test/oas30/oas-components/root-components/" override implicit val executionContext: ExecutionContext = ExecutionContext.Implicits.global diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30JsonSchemaRefSuggestionTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30JsonSchemaRefSuggestionTest.scala index 486c5b812a..540ae887e9 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30JsonSchemaRefSuggestionTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/oas30/Oas30JsonSchemaRefSuggestionTest.scala @@ -6,12 +6,12 @@ import org.mulesoft.als.configuration.ProjectConfiguration import org.mulesoft.als.suggestions.test.{BaseSuggestionsForTest, TestProjectConfigurationState} import org.mulesoft.amfintegration.amfconfiguration.{ALSConfigurationState, EditorConfigurationState} import org.mulesoft.lsp.feature.completion.CompletionItem -import org.scalatest.AsyncFunSuite -import org.scalatest.Matchers.convertToAnyShouldWrapper +import org.scalatest.funsuite.AsyncFunSuite +import org.scalatest.matchers.should.Matchers import scala.concurrent.{ExecutionContext, Future} -class Oas30JsonSchemaRefSuggestionTest extends AsyncFunSuite with BaseSuggestionsForTest { +class Oas30JsonSchemaRefSuggestionTest extends AsyncFunSuite with BaseSuggestionsForTest with Matchers { def rootPath: String = "file://als-suggestions/shared/src/test/resources/test/oas30/json-schema/" override implicit val executionContext: ExecutionContext = ExecutionContext.Implicits.global diff --git a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/raml10/AliasedSemexSuggestionTest.scala b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/raml10/AliasedSemexSuggestionTest.scala index 2595d864f9..116f4546d8 100644 --- a/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/raml10/AliasedSemexSuggestionTest.scala +++ b/als-suggestions/shared/src/test/scala/org/mulesoft/als/suggestions/test/raml10/AliasedSemexSuggestionTest.scala @@ -5,12 +5,12 @@ import amf.apicontract.client.scala.RAMLConfiguration import amf.core.client.scala.AMFGraphConfiguration import org.mulesoft.als.configuration.ProjectConfiguration import org.mulesoft.als.suggestions.test.{BaseSuggestionsForTest, TestProjectConfigurationState} -import org.mulesoft.amfintegration.AmfImplicits._ import org.mulesoft.amfintegration.amfconfiguration.{ALSConfigurationState, EditorConfigurationState} import org.mulesoft.lsp.edit.TextEdit import org.mulesoft.lsp.feature.common.{Position, Range} import org.mulesoft.lsp.feature.completion.CompletionItem -import org.scalatest.{AsyncFunSuite, Matchers} +import org.scalatest.funsuite.AsyncFunSuite +import org.scalatest.matchers.should.Matchers import scala.concurrent.{ExecutionContext, Future} diff --git a/build.sbt b/build.sbt index e481236f42..cfd1beaed7 100755 --- a/build.sbt +++ b/build.sbt @@ -1,11 +1,9 @@ import Dependencies.deps import NpmOpsPlugin.autoImport.npmDependencies -import org.scalajs.core.tools.linker.ModuleKind -import org.scalajs.core.tools.linker.backend.OutputMode -import org.scalajs.sbtplugin.ScalaJSPlugin.AutoImport.{fastOptJS, scalaJSOutputMode} import sbt.File import sbt.Keys.{libraryDependencies, mainClass, packageOptions} import sbtcrossproject.CrossPlugin.autoImport.crossProject +import org.scalajs.linker.interface.ESVersion import scala.language.postfixOps import scala.sys.process.Process @@ -30,6 +28,7 @@ val amfVersion = deps("amf") val amfCustomValidatorJSVersion = deps("amf.custom-validator.js") val amfCustomValidatorScalaJSVersion = deps("amf.custom-validator-scalajs") val amfAntlrParsersVersion = deps("amf-antlr-parsers") +val scalaJSVersion = "1.1.0" val commonNpmDependencies = List( ("ajv", "6.12.6"), @@ -39,7 +38,7 @@ val commonNpmDependencies = List( lazy val amfJVMRef = ProjectRef(workspaceDirectory / "amf", "graphqlJVM") lazy val amfJSRef = ProjectRef(workspaceDirectory / "amf", "graphqlJS") lazy val amfLibJVM = "com.github.amlorg" %% "amf-graphql" % amfVersion -lazy val amfLibJS = "com.github.amlorg" %% "amf-graphql_sjs0.6" % amfVersion +lazy val amfLibJS = "com.github.amlorg" %% "amf-graphql_sjs1" % amfVersion lazy val customValidatorWebJVMRef = ProjectRef(workspaceDirectory / "amf-custom-validator-scalajs", "amfCustomValidatorWebJVM") @@ -47,7 +46,7 @@ lazy val customValidatorWebJSRef = ProjectRef(workspaceDirectory / "amf-custom-validator-scalajs", "amfCustomValidatorWebJS") lazy val customValidatorWebLibJVM = "com.github.amlorg" %% "amf-custom-validator-web" % amfCustomValidatorScalaJSVersion lazy val customValidatorWebLibJS = - "com.github.amlorg" %% "amf-custom-validator-web_sjs0.6" % amfCustomValidatorScalaJSVersion + "com.github.amlorg" %% "amf-custom-validator-web_sjs1" % amfCustomValidatorScalaJSVersion lazy val customValidatorNodeJVMRef = ProjectRef(workspaceDirectory / "amf-custom-validator-scalajs", "amfCustomValidatorNodeJVM") lazy val customValidatorNodeJSRef = @@ -55,12 +54,18 @@ lazy val customValidatorNodeJSRef = lazy val customValidatorNodeLibJVM = "com.github.amlorg" %% "amf-custom-validator-node" % amfCustomValidatorScalaJSVersion lazy val customValidatorNodeLibJS = - "com.github.amlorg" %% "amf-custom-validator-node_sjs0.6" % amfCustomValidatorScalaJSVersion + "com.github.amlorg" %% "amf-custom-validator-node_sjs1" % amfCustomValidatorScalaJSVersion lazy val npmDependencyAmfCustomValidatorWeb = s"@aml-org/amf-custom-validator-web@$amfCustomValidatorJSVersion" lazy val npmDependencyAmfCustomValidator = s"@aml-org/amf-custom-validator@$amfCustomValidatorJSVersion" lazy val npmDependencyAmfAntlr = s"@aml-org/amf-antlr-parsers@$amfAntlrParsersVersion" +////region SBT-Dependencies +lazy val scalaJS_DomDependency = ModuleID("org.scala-js", "scalajs-dom_sjs1_2.12" , "1.1.0") +lazy val upickle_Dependency = ModuleID("com.lihaoyi", "upickle_sjs1_2.12", "0.9.9") +lazy val scalaJS_NodeDependency = ModuleID("net.exoego", "scala-js-nodejs-v14_sjs1_2.12", "0.13.0") +////endregion + val orgSettings = Seq( organization := "org.mule.als", version := deps("version"), @@ -76,13 +81,13 @@ val orgSettings = Seq( libraryDependencies ++= Seq( "com.chuusai" %% "shapeless" % "2.3.3", "org.scala-js" %% "scalajs-stubs" % scalaJSVersion % "provided", - "org.scalatest" %%% "scalatest" % "3.0.5" % Test, - "org.scalamock" %%% "scalamock" % "4.1.0" % Test, - "com.lihaoyi" %%% "upickle" % "0.5.1" % Test + "org.scalatest" %%% "scalatest" % "3.2.0" % Test, + upickle_Dependency ) ) val settings = Common.settings ++ Common.publish ++ orgSettings +concurrentRestrictions in Global := Seq(Tags.limitAll(2)) ////region ALS-COMMON /** ALS common */ @@ -105,10 +110,12 @@ lazy val common = crossProject(JSPlatform, JVMPlatform) ) #&& Process("npm install", new File(s"$pathAlsCommon/js/")) ! }, - scalaJSOutputMode := org.scalajs.core.tools.linker.backend.OutputMode.ECMAScript6, - scalaJSModuleKind := ModuleKind.CommonJSModule, - npmDependencies ++= commonNpmDependencies - // artifactPath in (Compile, fastOptJS) := baseDirectory.value / "target" / "artifact" /"high-level.js" + scalaJSLinkerConfig ~= { _ + .withModuleKind(ModuleKind.CommonJSModule) + .withESFeatures(_.withESVersion(ESVersion.ES2016)) + }, + npmDependencies ++= commonNpmDependencies +// ,scalaJSLinkerOutputDirectory in (Compile, fastOptJS) := baseDirectory.value / "target" / "artifact" /"high-level.js" ) .disablePlugins(SonarPlugin) @@ -139,9 +146,11 @@ lazy val lsp = crossProject(JSPlatform, JVMPlatform) libraryDependencies += "org.scala-lang.modules" % "scala-java8-compat_2.12" % "0.8.0" ) .jsSettings( - scalaJSOutputMode := org.scalajs.core.tools.linker.backend.OutputMode.ECMAScript6, - scalaJSModuleKind := ModuleKind.CommonJSModule - // artifactPath in (Compile, fastOptJS) := baseDirectory.value / "target" / "artifact" /"high-level.js" + scalaJSLinkerConfig ~= { _ + .withModuleKind(ModuleKind.CommonJSModule) + .withESFeatures(_.withESVersion(ESVersion.ES2016)) + } + // scalaJSLinkerOutputDirectory in (Compile, fastOptJS) := baseDirectory.value / "target" / "artifact" /"high-level.js" ) .disablePlugins(SonarPlugin) @@ -162,9 +171,12 @@ lazy val suggestions = crossProject(JSPlatform, JVMPlatform) .in(file("./als-suggestions")) .settings(settings: _*) .jsSettings( - packageJSDependencies / skip := false, - scalaJSOutputMode := OutputMode.Defaults, - scalaJSModuleKind := ModuleKind.CommonJSModule, + libraryDependencies += upickle_Dependency, +// packageJSDependencies / skip := false, + scalaJSLinkerConfig ~= { _ + .withModuleKind(ModuleKind.CommonJSModule) + .withESFeatures(_.withESVersion(ESVersion.ES2016)) + }, npmDependencies ++= commonNpmDependencies ) .disablePlugins(SonarPlugin) @@ -187,12 +199,15 @@ lazy val structure = crossProject(JSPlatform, JVMPlatform) .in(file(s"$pathAlsStructure")) .settings(settings: _*) .jsSettings( - libraryDependencies += "org.scala-js" %%% "scalajs-dom" % "0.9.2", - libraryDependencies += "com.lihaoyi" %%% "upickle" % "0.5.1", - scalaJSOutputMode := org.scalajs.core.tools.linker.backend.OutputMode.ECMAScript6, - scalaJSModuleKind := ModuleKind.CommonJSModule, + libraryDependencies ++= Seq( + scalaJS_DomDependency, + upickle_Dependency + ), + scalaJSLinkerConfig ~= { _ + .withModuleKind(ModuleKind.CommonJSModule) + .withESFeatures(_.withESVersion(ESVersion.ES2016)) + }, npmDependencies ++= commonNpmDependencies - // artifactPath in (Compile, fastOptJS) := baseDirectory.value / "target" / "artifact" /"als-suggestions.js" ) .disablePlugins(SonarPlugin) @@ -211,9 +226,10 @@ lazy val actions = crossProject(JSPlatform, JVMPlatform) .in(file(s"$pathAlsActions")) .settings(settings: _*) .jsSettings( - packageJSDependencies / skip := false, - scalaJSOutputMode := OutputMode.Defaults, - scalaJSModuleKind := ModuleKind.CommonJSModule, + scalaJSLinkerConfig ~= { _ + .withModuleKind(ModuleKind.CommonJSModule) + .withESFeatures(_.withESVersion(ESVersion.ES2016)) + }, npmDependencies ++= commonNpmDependencies ) .disablePlugins(SonarPlugin) @@ -267,12 +283,18 @@ lazy val server = crossProject(JSPlatform, JVMPlatform) ) #&& Process("npm install", new File("./als-server/js/node-package")) ! }, - Test / test := ((Test / test) dependsOn installJsDependencies).value, - Test / fastOptJS / artifactPath := baseDirectory.value / "node-package" / "tmp" / "als-server.js", - scalaJSModuleKind := ModuleKind.CommonJSModule, - libraryDependencies += "org.scala-js" %%% "scalajs-dom" % "0.9.2", - Compile / fastOptJS / artifactPath := baseDirectory.value / "node-package" / "lib" / "als-server.js", - Compile / fullOptJS / artifactPath := baseDirectory.value / "node-package" / "lib" / "als-server.min.js" + Test / test := ((Test / test) dependsOn installJsDependencies).value, + Test / fastLinkJS / scalaJSLinkerOutputDirectory := baseDirectory.value / "node-package" / "tmp" / "als-server.js", + scalaJSLinkerConfig ~= { _ + .withModuleKind(ModuleKind.CommonJSModule) + .withESFeatures(_.withESVersion(ESVersion.ES2016)) + }, + libraryDependencies ++= Seq( + scalaJS_NodeDependency, + scalaJS_DomDependency + ), + Compile / fastLinkJS / scalaJSLinkerOutputDirectory := baseDirectory.value / "node-package" / "tmp" / "als-server.js", + Compile / fullLinkJS / scalaJSLinkerOutputDirectory := baseDirectory.value / "node-package" / "tmp" / "als-server.min.js" ) lazy val serverJVM = server.jvm.in(file("./als-server/jvm")) @@ -295,8 +317,11 @@ lazy val nodeClient = project settings ++ Seq( name := "als-node-client", scalaJSUseMainModuleInitializer := true, - scalaJSModuleKind := ModuleKind.CommonJSModule, - libraryDependencies += "io.scalajs" %%% "nodejs-core" % "0.4.2", + scalaJSLinkerConfig ~= { _ + .withModuleKind(ModuleKind.CommonJSModule) + .withESFeatures(_.withESVersion(ESVersion.ES2016)) + }, + libraryDependencies += scalaJS_NodeDependency, Compile / mainClass := Some("org.mulesoft.als.nodeclient.Main"), npmIClient := { Process( @@ -315,9 +340,9 @@ lazy val nodeClient = project Process("npm i", new File("./als-node-client/node-package/")) ! }, Test / test := ((Test / test) dependsOn npmIClient).value, - Test / fastOptJS / artifactPath := baseDirectory.value / "node-package" / "tmp" / "als-node-client.js", - Compile / fastOptJS / artifactPath := baseDirectory.value / "node-package" / "dist" / "als-node-client.js", - Compile / fullOptJS / artifactPath := baseDirectory.value / "node-package" / "dist" / "als-node-client.min.js" + Test / fastLinkJS / scalaJSLinkerOutputDirectory := baseDirectory.value / "node-package" / "tmp" / "als-node-client.js", + Compile / fullLinkJS / scalaJSLinkerOutputDirectory := baseDirectory.value / "node-package" / "tmp" / "als-node-client.min.js", + Compile / fastLinkJS / scalaJSLinkerOutputDirectory := baseDirectory.value / "node-package" / "tmp" / "als-node-client.js" ) ) .sourceDependency(customValidatorNodeJSRef, customValidatorNodeLibJS) @@ -334,18 +359,28 @@ lazy val nodeClient = project val buildJsServerLibrary = TaskKey[Unit]("buildJsServerLibrary", "Build server library") buildJsServerLibrary := { - (serverJS / Compile / fastOptJS).value - (serverJS / Compile / fullOptJS).value (serverJS / installJsDependenciesWeb).value + (serverJS / Compile / fastLinkJS).value + (serverJS / Compile / fullLinkJS).value + val result = (Process( + "./scripts/build.sh", + new File("./als-server/js/node-package") + ).!) + if (result != 0) throw new IllegalStateException("Node JS build.sh failed") } // Node client val buildNodeJsClient = TaskKey[Unit]("buildNodeJsClient", "Build node client") buildNodeJsClient := { - (nodeClient / Compile / fastOptJS).value - (nodeClient / Compile / fullOptJS).value + (nodeClient / Compile / fastLinkJS).value + (nodeClient / Compile / fullLinkJS).value (nodeClient / npmIClient).value + val result = (Process( + "./scripts/build.sh", + new File("./als-node-client/node-package") + ).!) + if (result != 0) throw new IllegalStateException("Node JS build.sh failed") } // ************** SONAR ******************************* diff --git a/dependencies.properties b/dependencies.properties index 282ea0d6c6..3bc8e17ea2 100644 --- a/dependencies.properties +++ b/dependencies.properties @@ -1,5 +1,5 @@ version=5.4.0-SNAPSHOT -amf=5.3.0-RC.2 +amf=5.4.0-RC.0 amf.custom-validator.js=1.4.0 -amf.custom-validator-scalajs=0.4.0-RC.1 -amf-antlr-parsers=0.6.23 +amf.custom-validator-scalajs=0.5.0-RC.1 +amf-antlr-parsers=0.7.24 \ No newline at end of file diff --git a/project/NpmOpsPlugin.scala b/project/NpmOpsPlugin.scala index 258f8b63a1..27e36ccae0 100644 --- a/project/NpmOpsPlugin.scala +++ b/project/NpmOpsPlugin.scala @@ -1,5 +1,5 @@ import org.scalajs.sbtplugin.ScalaJSPlugin -import org.scalajs.sbtplugin.ScalaJSPlugin.AutoImport.{fastOptJS, fullOptJS} +import org.scalajs.sbtplugin.ScalaJSPlugin.autoImport.{fastLinkJS, fullLinkJS} import sbt.Keys.{baseDirectory, sLog} import sbt.util.Logger import sbt.{AutoPlugin, Compile, Def, Test, settingKey, taskKey} @@ -48,12 +48,12 @@ object NpmOpsPlugin extends AutoPlugin { deps.map(tuple => s"${tuple._1}@${tuple._2}") override def projectSettings: Seq[Def.Setting[_]] = Seq( - npmInstallDeps := npmInstallDepsTask.value, - npmDependencies := Nil, - npmPackageLoc := baseDirectory.value, - Compile / fastOptJS := (Compile / fastOptJS).dependsOn(npmInstallDepsTask).value, - Compile / fullOptJS := (Compile / fullOptJS).dependsOn(npmInstallDepsTask).value, - Test / fastOptJS := (Test / fastOptJS).dependsOn(npmInstallDepsTask).value, - Test / fullOptJS := (Test / fullOptJS).dependsOn(npmInstallDepsTask).value + npmInstallDeps := npmInstallDepsTask.value, + npmDependencies := Nil, + npmPackageLoc := baseDirectory.value, + Compile / fastLinkJS := (Compile / fastLinkJS).dependsOn(npmInstallDepsTask).value, + Compile / fullLinkJS := (Compile / fullLinkJS).dependsOn(npmInstallDepsTask).value, + Test / fastLinkJS := (Test / fastLinkJS).dependsOn(npmInstallDepsTask).value, + Test / fullLinkJS := (Test / fullLinkJS).dependsOn(npmInstallDepsTask).value ) } diff --git a/project/plugins.sbt b/project/plugins.sbt index 4d742c74b4..5c4a67ae8b 100755 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,6 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.33") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.6.0") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.4") addSbtPlugin("com.github.mwz" % "sbt-sonar" % "2.1.0") addSbtPlugin("com.eed3si9n" % "sbt-sriracha" % "0.1.0") +addDependencyTreePlugin From 60b2f9d454ce07f1735352fb2640e85fc027f2af Mon Sep 17 00:00:00 2001 From: emilianoascona Date: Wed, 31 May 2023 16:46:03 -0300 Subject: [PATCH 4/7] [W-13472862] Bump to stable dependencies --- als-actions/js/package-lock.json | 70 +- als-common/js/package-lock.json | 70 +- .../node-package/package-lock.json | 824 +-- als-server/js/node-package/package-lock.json | 4813 +---------------- als-structure/js/package-lock.json | 70 +- als-structure/js/package.json | 2 +- als-suggestions/js/package-lock.json | 70 +- als-suggestions/js/package.json | 2 +- dependencies.properties | 4 +- 9 files changed, 73 insertions(+), 5852 deletions(-) diff --git a/als-actions/js/package-lock.json b/als-actions/js/package-lock.json index 855557e119..81c6dc1f0c 100644 --- a/als-actions/js/package-lock.json +++ b/als-actions/js/package-lock.json @@ -1,75 +1,13 @@ { "name": "als-actions", "version": "1.0.0", - "lockfileVersion": 2, + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "name": "als-actions", - "version": "1.0.0", - "license": "ISC", - "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", - "ajv": "6.12.6" - } - }, - "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.6.22-SCALAJS1.6-SNAPSHOT", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", - "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - } - }, "dependencies": { "@aml-org/amf-antlr-parsers": { - "version": "0.6.22-SCALAJS1.6-SNAPSHOT", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", - "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" + "version": "0.7.24", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.7.24.tgz", + "integrity": "sha512-RmDT1ljRUuRvwZQViWgEUtq4OFZ8FHptFbB512ljY44+g+p4DOWm+J6MxWvx0tRuH8IYBUXsK3c5SchaWb85Lw==" }, "ajv": { "version": "6.12.6", diff --git a/als-common/js/package-lock.json b/als-common/js/package-lock.json index 8ad84ac275..16e63c6e94 100644 --- a/als-common/js/package-lock.json +++ b/als-common/js/package-lock.json @@ -1,75 +1,13 @@ { "name": "als-common", "version": "1.0.0", - "lockfileVersion": 2, + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "name": "als-common", - "version": "1.0.0", - "license": "ISC", - "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", - "ajv": "6.12.6" - } - }, - "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.6.22-SCALAJS1.6-SNAPSHOT", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", - "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - } - }, "dependencies": { "@aml-org/amf-antlr-parsers": { - "version": "0.6.22-SCALAJS1.6-SNAPSHOT", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", - "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" + "version": "0.7.24", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.7.24.tgz", + "integrity": "sha512-RmDT1ljRUuRvwZQViWgEUtq4OFZ8FHptFbB512ljY44+g+p4DOWm+J6MxWvx0tRuH8IYBUXsK3c5SchaWb85Lw==" }, "ajv": { "version": "6.12.6", diff --git a/als-node-client/node-package/package-lock.json b/als-node-client/node-package/package-lock.json index 9d4bcdcd22..3c91b430ec 100644 --- a/als-node-client/node-package/package-lock.json +++ b/als-node-client/node-package/package-lock.json @@ -1,806 +1,8 @@ { "name": "@aml-org/als-node-client", "version": "5.1.0-SNAPSHOT", - "lockfileVersion": 2, + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "name": "@aml-org/als-node-client", - "version": "5.1.0-SNAPSHOT", - "license": "Apache-2.0", - "dependencies": { - "@aml-org/amf-antlr-parsers": "0.7.24", - "@aml-org/amf-custom-validator": "1.4.0", - "@aml-org/amf-custom-validator-web": "1.4.0", - "ajv": "6.12.6", - "vscode-jsonrpc": "6.0.0", - "vscode-languageserver-protocol": "3.16.0" - }, - "bin": { - "als": "dist/als-node-client.min.js" - } - }, - "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.7.24", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.7.24.tgz", - "integrity": "sha512-RmDT1ljRUuRvwZQViWgEUtq4OFZ8FHptFbB512ljY44+g+p4DOWm+J6MxWvx0tRuH8IYBUXsK3c5SchaWb85Lw==" - }, - "node_modules/@aml-org/amf-custom-validator": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@aml-org/amf-custom-validator/-/amf-custom-validator-1.4.0.tgz", - "integrity": "sha512-2tpWSIUPuycta6doKariTBhYHnr2iUPHbDOXfYu0df9MF6H+p06zyb4ysDo856Cxfji85WZrZhIjdzMfirDHOg==", - "dependencies": { - "pako": "^2.0.4" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aml-org/amf-custom-validator-web": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@aml-org/amf-custom-validator-web/-/amf-custom-validator-web-1.4.0.tgz", - "integrity": "sha512-+CnTVnoD0i5a3yJFGNSXsfuS27q7jOtawH7z5LT67tgq3sUJ1NBC30I3gJVHUtP7fSrGRegIN2vUq36OXy3WHg==", - "dependencies": { - "buffer": "^6.0.3", - "crypto-browserify": "^3.12.0", - "os-browserify": "^0.3.0", - "pako": "^2.0.4", - "stream-browserify": "^3.0.0", - "util": "^0.12.4" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/bn.js": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" - }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" - }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "node_modules/browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "dependencies": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - } - }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "node_modules/crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - }, - "engines": { - "node": "*" - } - }, - "node_modules/des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "bin": { - "miller-rabin": "bin/miller-rabin" - } - }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" - }, - "node_modules/os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" - }, - "node_modules/pako": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pako/-/pako-2.1.0.tgz", - "integrity": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==" - }, - "node_modules/parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "dependencies": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" - } - }, - "node_modules/stream-browserify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", - "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", - "dependencies": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", - "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "which-typed-array": "^1.1.2" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/vscode-jsonrpc": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz", - "integrity": "sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==", - "engines": { - "node": ">=8.0.0 || >=10.0.0" - } - }, - "node_modules/vscode-languageserver-protocol": { - "version": "3.16.0", - "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz", - "integrity": "sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==", - "dependencies": { - "vscode-jsonrpc": "6.0.0", - "vscode-languageserver-types": "3.16.0" - } - }, - "node_modules/vscode-languageserver-types": { - "version": "3.16.0", - "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", - "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==" - }, - "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - } - }, "dependencies": { "@aml-org/amf-antlr-parsers": { "version": "0.7.24", @@ -1028,9 +230,9 @@ } }, "des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", "requires": { "inherits": "^2.0.1", "minimalistic-assert": "^1.0.0" @@ -1107,12 +309,13 @@ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", + "has-proto": "^1.0.1", "has-symbols": "^1.0.3" } }, @@ -1132,6 +335,11 @@ "function-bind": "^1.1.1" } }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + }, "has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", @@ -1336,9 +544,9 @@ } }, "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", diff --git a/als-server/js/node-package/package-lock.json b/als-server/js/node-package/package-lock.json index d51ade4dd8..64b7a3c611 100644 --- a/als-server/js/node-package/package-lock.json +++ b/als-server/js/node-package/package-lock.json @@ -1,4743 +1,8 @@ { "name": "@aml-org/als-server", "version": "5.2.0-SNAPSHOT", - "lockfileVersion": 2, + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "name": "@aml-org/als-server", - "version": "5.2.0-SNAPSHOT", - "license": "Apache-2.0", - "dependencies": { - "@aml-org/amf-antlr-parsers": "0.7.24", - "@aml-org/amf-custom-validator": "1.4.0", - "@aml-org/amf-custom-validator-web": "1.4.0", - "ajv": "6.12.6", - "buffer": "^6.0.3", - "fs": "latest", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "^1.0.1", - "stream-http": "^3.2.0", - "url": "^0.11.0", - "util": "^0.12.4", - "vscode-jsonrpc": "6.0.0", - "vscode-languageserver-protocol": "3.16.0" - }, - "devDependencies": { - "@babel/core": "^7.9.0", - "@babel/polyfill": "^7.0.0", - "@babel/preset-env": "^7.9.5", - "babel-loader": "^8.2.2", - "process": "0.11.10", - "terser-webpack-plugin": "^2.3.6", - "webpack": "^5.28.0", - "webpack-cli": "^4.5.0", - "webpack-merge": "^5.7.3" - } - }, - "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.7.24", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.7.24.tgz", - "integrity": "sha512-RmDT1ljRUuRvwZQViWgEUtq4OFZ8FHptFbB512ljY44+g+p4DOWm+J6MxWvx0tRuH8IYBUXsK3c5SchaWb85Lw==" - }, - "node_modules/@aml-org/amf-custom-validator": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@aml-org/amf-custom-validator/-/amf-custom-validator-1.4.0.tgz", - "integrity": "sha512-2tpWSIUPuycta6doKariTBhYHnr2iUPHbDOXfYu0df9MF6H+p06zyb4ysDo856Cxfji85WZrZhIjdzMfirDHOg==", - "dependencies": { - "pako": "^2.0.4" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aml-org/amf-custom-validator-web": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@aml-org/amf-custom-validator-web/-/amf-custom-validator-web-1.4.0.tgz", - "integrity": "sha512-+CnTVnoD0i5a3yJFGNSXsfuS27q7jOtawH7z5LT67tgq3sUJ1NBC30I3gJVHUtP7fSrGRegIN2vUq36OXy3WHg==", - "dependencies": { - "buffer": "^6.0.3", - "crypto-browserify": "^3.12.0", - "os-browserify": "^0.3.0", - "pako": "^2.0.4", - "stream-browserify": "^3.0.0", - "util": "^0.12.4" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "dev": true, - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.20.10", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.10.tgz", - "integrity": "sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.20.12", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz", - "integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.7", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helpers": "^7.20.7", - "@babel/parser": "^7.20.7", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.12", - "@babel/types": "^7.20.7", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/generator": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.7.tgz", - "integrity": "sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "dev": true, - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", - "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", - "dev": true, - "dependencies": { - "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", - "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.20.12", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz", - "integrity": "sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/helper-split-export-declaration": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", - "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.2.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", - "dev": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0-0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-explode-assignable-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", - "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", - "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", - "dev": true, - "dependencies": { - "@babel/template": "^7.18.10", - "@babel/types": "^7.19.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "dev": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz", - "integrity": "sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", - "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.10", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", - "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-wrap-function": "^7.18.9", - "@babel/types": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", - "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.7", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", - "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", - "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", - "dev": true, - "dependencies": { - "@babel/helper-function-name": "^7.19.0", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.5", - "@babel/types": "^7.20.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.7.tgz", - "integrity": "sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==", - "dev": true, - "dependencies": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.7", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.7.tgz", - "integrity": "sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==", - "dev": true, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", - "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", - "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-proposal-optional-chaining": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" - } - }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", - "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-class-static-block": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz", - "integrity": "sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, - "node_modules/@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", - "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", - "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", - "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", - "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.20.5", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", - "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", - "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", - "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", - "dev": true, - "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", - "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.11.tgz", - "integrity": "sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz", - "integrity": "sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-split-export-declaration": "^7.18.6", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", - "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/template": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz", - "integrity": "sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", - "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", - "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", - "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", - "dev": true, - "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", - "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", - "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", - "dev": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", - "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", - "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", - "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", - "dev": true, - "dependencies": { - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz", - "integrity": "sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==", - "dev": true, - "dependencies": { - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-simple-access": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", - "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", - "dev": true, - "dependencies": { - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-identifier": "^7.19.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", - "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", - "dev": true, - "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", - "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.20.5", - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", - "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", - "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz", - "integrity": "sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", - "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", - "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "regenerator-transform": "^0.15.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", - "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", - "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", - "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", - "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", - "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", - "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", - "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", - "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/polyfill": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz", - "integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==", - "deprecated": "🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.", - "dev": true, - "dependencies": { - "core-js": "^2.6.5", - "regenerator-runtime": "^0.13.4" - } - }, - "node_modules/@babel/preset-env": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", - "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.20.1", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-async-generator-functions": "^7.20.1", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.18.6", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.2", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.18.6", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.18.6", - "@babel/plugin-transform-async-to-generator": "^7.18.6", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.20.2", - "@babel/plugin-transform-classes": "^7.20.2", - "@babel/plugin-transform-computed-properties": "^7.18.9", - "@babel/plugin-transform-destructuring": "^7.20.2", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.8", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.19.6", - "@babel/plugin-transform-modules-commonjs": "^7.19.6", - "@babel/plugin-transform-modules-systemjs": "^7.19.6", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.20.1", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.18.6", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.19.0", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.7.tgz", - "integrity": "sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==", - "dev": true, - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.20.12", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.12.tgz", - "integrity": "sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.7", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", - "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", - "dev": true, - "dependencies": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "dev": true, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", - "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", - "dev": true, - "dependencies": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "dev": true, - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", - "dev": true, - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/@types/eslint": { - "version": "8.4.10", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz", - "integrity": "sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==", - "dev": true, - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", - "dev": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", - "dev": true - }, - "node_modules/@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", - "dev": true - }, - "node_modules/@types/node": { - "version": "18.11.18", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.18.tgz", - "integrity": "sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==", - "dev": true - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", - "dev": true, - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", - "dev": true, - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", - "dev": true, - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", - "dev": true, - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", - "dev": true - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webpack-cli/configtest": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", - "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", - "dev": true, - "peerDependencies": { - "webpack": "4.x.x || 5.x.x", - "webpack-cli": "4.x.x" - } - }, - "node_modules/@webpack-cli/info": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", - "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", - "dev": true, - "dependencies": { - "envinfo": "^7.7.3" - }, - "peerDependencies": { - "webpack-cli": "4.x.x" - } - }, - "node_modules/@webpack-cli/serve": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", - "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", - "dev": true, - "peerDependencies": { - "webpack-cli": "4.x.x" - }, - "peerDependenciesMeta": { - "webpack-dev-server": { - "optional": true - } - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "node_modules/acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", - "dev": true, - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "dev": true - }, - "node_modules/asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/babel-loader": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", - "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", - "dev": true, - "dependencies": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, - "engines": { - "node": ">= 8.9" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "webpack": ">=2" - } - }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", - "dev": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", - "dev": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/bn.js": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" - }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "node_modules/browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "dependencies": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "node_modules/browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" - }, - "node_modules/builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" - }, - "node_modules/cacache": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz", - "integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==", - "dev": true, - "dependencies": { - "chownr": "^1.1.2", - "figgy-pudding": "^3.5.1", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.2", - "infer-owner": "^1.0.4", - "lru-cache": "^5.1.1", - "minipass": "^3.0.0", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "p-map": "^3.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^2.7.1", - "ssri": "^7.0.0", - "unique-filename": "^1.1.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001442", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001442.tgz", - "integrity": "sha512-239m03Pqy0hwxYPYR5JwOIxRJfLTWtle9FV8zosfV5pHg+/51uD4nxcUlM8+mWWGfwKtt8lJNHnD3cWw9VZ6ow==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - } - ] - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "dev": true, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "dev": true, - "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", - "dev": true - }, - "node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "node_modules/copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", - "dev": true, - "dependencies": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - } - }, - "node_modules/core-js": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", - "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", - "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", - "dev": true, - "hasInstallScript": true - }, - "node_modules/core-js-compat": { - "version": "3.27.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.27.1.tgz", - "integrity": "sha512-Dg91JFeCDA17FKnneN7oCMz4BkQ4TcffkgHP4OWwp9yx3pi7ubqMDXXSacfNak1PQqjc95skyt+YBLHQJnkJwA==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - } - }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - }, - "engines": { - "node": "*" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.284", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", - "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", - "dev": true - }, - "node_modules/elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/envinfo": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", - "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", - "dev": true, - "bin": { - "envinfo": "dist/cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", - "dev": true - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "dev": true, - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", - "dev": true, - "engines": { - "node": ">= 4.9.1" - } - }, - "node_modules/figgy-pudding": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", - "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", - "dev": true - }, - "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" - } - }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/fs": { - "version": "0.0.1-security", - "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", - "integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==" - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - } - }, - "node_modules/fs-write-stream-atomic/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/fs-write-stream-atomic/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/fs-write-stream-atomic/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", - "dev": true - }, - "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - "dev": true, - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/interpret": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", - "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "dev": true, - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jest-worker": { - "version": "25.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz", - "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", - "dev": true, - "dependencies": { - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "dev": true, - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" - } - }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "bin": { - "miller-rabin": "bin/miller-rabin" - } - }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", - "dev": true, - "dependencies": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.8.tgz", - "integrity": "sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==", - "dev": true - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" - }, - "node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-map": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", - "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pako": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pako/-/pako-2.1.0.tgz", - "integrity": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==" - }, - "node_modules/parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "dependencies": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true, - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true - }, - "node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", - "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/rechoir": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", - "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", - "dev": true, - "dependencies": { - "resolve": "^1.9.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", - "dev": true, - "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "dev": true - }, - "node_modules/regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, - "node_modules/regexpu-core": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz", - "integrity": "sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==", - "dev": true, - "dependencies": { - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsgen": "^0.7.1", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regjsgen": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz", - "integrity": "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==", - "dev": true - }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "dev": true, - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "dev": true, - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "dev": true, - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "node_modules/run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", - "dev": true, - "dependencies": { - "aproba": "^1.1.1" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "dev": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" - } - }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", - "dev": true - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/ssri": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-7.1.1.tgz", - "integrity": "sha512-w+daCzXN89PseTL99MkA+fxJEcU3wfaE/ah0i0lnOlpG1CYLJ2ZjzEry68YBKfLs4JfoTShrTEsJkAZuNZ/stw==", - "dev": true, - "dependencies": { - "figgy-pudding": "^3.5.1", - "minipass": "^3.1.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/stream-browserify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", - "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", - "dependencies": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "node_modules/stream-http": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz", - "integrity": "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==", - "dependencies": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "xtend": "^4.0.2" - } - }, - "node_modules/stream-http/node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/terser": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", - "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", - "dev": true, - "dependencies": { - "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz", - "integrity": "sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==", - "dev": true, - "dependencies": { - "cacache": "^13.0.1", - "find-cache-dir": "^3.3.1", - "jest-worker": "^25.4.0", - "p-limit": "^2.3.0", - "schema-utils": "^2.6.6", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.6.12", - "webpack-sources": "^1.4.3" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dev": true, - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "dependencies": { - "unique-slug": "^2.0.0" - } - }, - "node_modules/unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "browserslist-lint": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", - "dependencies": { - "punycode": "1.3.2", - "querystring": "0.2.0" - } - }, - "node_modules/url/node_modules/punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" - }, - "node_modules/util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", - "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "which-typed-array": "^1.1.2" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/vscode-jsonrpc": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz", - "integrity": "sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==", - "engines": { - "node": ">=8.0.0 || >=10.0.0" - } - }, - "node_modules/vscode-languageserver-protocol": { - "version": "3.16.0", - "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz", - "integrity": "sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==", - "dependencies": { - "vscode-jsonrpc": "6.0.0", - "vscode-languageserver-types": "3.16.0" - } - }, - "node_modules/vscode-languageserver-types": { - "version": "3.16.0", - "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", - "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==" - }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dev": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", - "dev": true, - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-cli": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz", - "integrity": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==", - "dev": true, - "dependencies": { - "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^1.2.0", - "@webpack-cli/info": "^1.5.0", - "@webpack-cli/serve": "^1.7.0", - "colorette": "^2.0.14", - "commander": "^7.0.0", - "cross-spawn": "^7.0.3", - "fastest-levenshtein": "^1.0.12", - "import-local": "^3.0.2", - "interpret": "^2.2.0", - "rechoir": "^0.7.0", - "webpack-merge": "^5.7.3" - }, - "bin": { - "webpack-cli": "bin/cli.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "4.x.x || 5.x.x" - }, - "peerDependenciesMeta": { - "@webpack-cli/generators": { - "optional": true - }, - "@webpack-cli/migrate": { - "optional": true - }, - "webpack-bundle-analyzer": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - } - } - }, - "node_modules/webpack-cli/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/webpack-merge": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", - "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", - "dev": true, - "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "dev": true, - "dependencies": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - } - }, - "node_modules/webpack/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/webpack/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "dev": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/webpack/node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", - "dev": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/webpack/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/webpack/node_modules/terser": { - "version": "5.16.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz", - "integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==", - "dev": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/webpack/node_modules/terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.14", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/webpack/node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "dev": true, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wildcard": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", - "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", - "dev": true - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - } - }, "dependencies": { "@aml-org/amf-antlr-parsers": { "version": "0.7.24", @@ -6142,8 +1407,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", - "dev": true, - "requires": {} + "dev": true }, "@webpack-cli/info": { "version": "1.5.0", @@ -6158,8 +1422,7 @@ "version": "1.7.0", "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", - "dev": true, - "requires": {} + "dev": true }, "@xtuc/ieee754": { "version": "1.2.0", @@ -6183,8 +1446,7 @@ "version": "1.8.0", "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", - "dev": true, - "requires": {} + "dev": true }, "aggregate-error": { "version": "3.1.0", @@ -6211,8 +1473,7 @@ "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "requires": {} + "dev": true }, "ansi-styles": { "version": "3.2.1", @@ -6425,7 +1686,7 @@ "builtin-status-codes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" }, "cacache": { "version": "13.0.1", @@ -6529,7 +1790,7 @@ "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "colorette": { @@ -6547,13 +1808,13 @@ "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", "dev": true }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, "convert-source-map": { @@ -6677,9 +1938,9 @@ } }, "des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", "requires": { "inherits": "^2.0.1", "minimalistic-assert": "^1.0.0" @@ -6766,7 +2027,7 @@ "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, "eslint-scope": { @@ -6891,7 +2152,7 @@ "fs-write-stream-atomic": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", "dev": true, "requires": { "graceful-fs": "^4.1.2", @@ -6935,7 +2196,7 @@ "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, "function-bind": { @@ -7010,7 +2271,7 @@ "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, "has-symbols": { @@ -7058,7 +2319,7 @@ "https-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" }, "ieee754": { "version": "1.2.1", @@ -7068,7 +2329,7 @@ "iferr": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", "dev": true }, "import-local": { @@ -7084,7 +2345,7 @@ "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true }, "indent-string": { @@ -7102,7 +2363,7 @@ "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "dev": true, "requires": { "once": "^1.3.0", @@ -7175,19 +2436,19 @@ "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", "dev": true }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", "dev": true }, "jest-worker": { @@ -7281,7 +2542,7 @@ "lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", "dev": true }, "lru-cache": { @@ -7430,7 +2691,7 @@ "move-concurrently": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", "dev": true, "requires": { "aproba": "^1.1.1", @@ -7462,7 +2723,7 @@ "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "dev": true, "requires": { "wrappy": "1" @@ -7471,7 +2732,7 @@ "os-browserify": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" }, "p-limit": { "version": "2.3.0", @@ -7537,7 +2798,7 @@ "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "dev": true }, "path-key": { @@ -7582,7 +2843,7 @@ "process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", "dev": true }, "process-nextick-args": { @@ -7594,7 +2855,7 @@ "promise-inflight": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", "dev": true }, "public-encrypt": { @@ -7625,7 +2886,7 @@ "querystring": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==" + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" }, "randombytes": { "version": "2.1.0", @@ -7777,7 +3038,7 @@ "run-queue": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", "dev": true, "requires": { "aproba": "^1.1.1" @@ -7971,7 +3232,7 @@ "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", "dev": true }, "unicode-canonical-property-names-ecmascript": { @@ -8041,7 +3302,7 @@ "url": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", "requires": { "punycode": "1.3.2", "querystring": "0.2.0" @@ -8050,7 +3311,7 @@ "punycode": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" } } }, @@ -8069,7 +3330,7 @@ "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, "vscode-jsonrpc": { "version": "6.0.0", @@ -8290,7 +3551,7 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true }, "yallist": { diff --git a/als-structure/js/package-lock.json b/als-structure/js/package-lock.json index 9f7f48da4b..cf756ef98b 100644 --- a/als-structure/js/package-lock.json +++ b/als-structure/js/package-lock.json @@ -1,75 +1,13 @@ { "name": "als-structure", "version": "1.0.0", - "lockfileVersion": 2, + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "name": "als-structure", - "version": "1.0.0", - "license": "ISC", - "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", - "ajv": "6.12.6" - } - }, - "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.6.22-SCALAJS1.6-SNAPSHOT", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", - "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - } - }, "dependencies": { "@aml-org/amf-antlr-parsers": { - "version": "0.6.22-SCALAJS1.6-SNAPSHOT", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", - "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" + "version": "0.7.24", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.7.24.tgz", + "integrity": "sha512-RmDT1ljRUuRvwZQViWgEUtq4OFZ8FHptFbB512ljY44+g+p4DOWm+J6MxWvx0tRuH8IYBUXsK3c5SchaWb85Lw==" }, "ajv": { "version": "6.12.6", diff --git a/als-structure/js/package.json b/als-structure/js/package.json index 61364572cc..0a35e29ac9 100644 --- a/als-structure/js/package.json +++ b/als-structure/js/package.json @@ -6,7 +6,7 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", + "@aml-org/amf-antlr-parsers": "0.7.24", "ajv": "6.12.6" }, "author": "", diff --git a/als-suggestions/js/package-lock.json b/als-suggestions/js/package-lock.json index eea282561e..0e00fa9589 100644 --- a/als-suggestions/js/package-lock.json +++ b/als-suggestions/js/package-lock.json @@ -1,75 +1,13 @@ { "name": "als-suggestions", "version": "1.0.0", - "lockfileVersion": 2, + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "name": "als-suggestions", - "version": "1.0.0", - "license": "ISC", - "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", - "ajv": "6.12.6" - } - }, - "node_modules/@aml-org/amf-antlr-parsers": { - "version": "0.6.22-SCALAJS1.6-SNAPSHOT", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", - "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - } - }, "dependencies": { "@aml-org/amf-antlr-parsers": { - "version": "0.6.22-SCALAJS1.6-SNAPSHOT", - "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.6.22-SCALAJS1.6-SNAPSHOT.tgz", - "integrity": "sha512-pl959yrkBGbSdARjWvf3SJ/denFOB5pW6BPw6ZZmPltHfDC+bcL3Y+SrHIhwTvuaXNHQfPEFR4uBVRWhIFAOEg==" + "version": "0.7.24", + "resolved": "https://registry.npmjs.org/@aml-org/amf-antlr-parsers/-/amf-antlr-parsers-0.7.24.tgz", + "integrity": "sha512-RmDT1ljRUuRvwZQViWgEUtq4OFZ8FHptFbB512ljY44+g+p4DOWm+J6MxWvx0tRuH8IYBUXsK3c5SchaWb85Lw==" }, "ajv": { "version": "6.12.6", diff --git a/als-suggestions/js/package.json b/als-suggestions/js/package.json index 3199c1c418..18739f0db8 100644 --- a/als-suggestions/js/package.json +++ b/als-suggestions/js/package.json @@ -6,7 +6,7 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "dependencies": { - "@aml-org/amf-antlr-parsers": "0.6.22-SCALAJS1.6-SNAPSHOT", + "@aml-org/amf-antlr-parsers": "0.7.24", "ajv": "6.12.6" }, "author": "", diff --git a/dependencies.properties b/dependencies.properties index 3bc8e17ea2..6475c5b568 100644 --- a/dependencies.properties +++ b/dependencies.properties @@ -1,5 +1,5 @@ version=5.4.0-SNAPSHOT -amf=5.4.0-RC.0 +amf=5.4.0 amf.custom-validator.js=1.4.0 -amf.custom-validator-scalajs=0.5.0-RC.1 +amf.custom-validator-scalajs=0.5.0 amf-antlr-parsers=0.7.24 \ No newline at end of file From 2d0be63884e3d775429d845c9158f7c0d18d14d1 Mon Sep 17 00:00:00 2001 From: emilianoascona Date: Wed, 31 May 2023 17:05:16 -0300 Subject: [PATCH 5/7] [W-13472862] Bump to 5.4.0-RC --- dependencies.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies.properties b/dependencies.properties index 6475c5b568..ba86c513f3 100644 --- a/dependencies.properties +++ b/dependencies.properties @@ -1,4 +1,4 @@ -version=5.4.0-SNAPSHOT +version=5.4.0-RC amf=5.4.0 amf.custom-validator.js=1.4.0 amf.custom-validator-scalajs=0.5.0 From ca3315686b5d377d593cfb1cee6c1cd73ecc1f06 Mon Sep 17 00:00:00 2001 From: emilianoascona Date: Thu, 1 Jun 2023 12:18:34 -0300 Subject: [PATCH 6/7] [W-13472862] Bump to RC.0 --- dependencies.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies.properties b/dependencies.properties index ba86c513f3..20aae17776 100644 --- a/dependencies.properties +++ b/dependencies.properties @@ -1,4 +1,4 @@ -version=5.4.0-RC +version=5.4.0-RC.0 amf=5.4.0 amf.custom-validator.js=1.4.0 amf.custom-validator-scalajs=0.5.0 From 594bda836dcf5c86f8d6abfbadf5d7706b3d4e65 Mon Sep 17 00:00:00 2001 From: emilianoascona Date: Thu, 1 Jun 2023 18:19:52 -0300 Subject: [PATCH 7/7] [W-13472862] Bump to stable version --- dependencies.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies.properties b/dependencies.properties index 20aae17776..b5c880464b 100644 --- a/dependencies.properties +++ b/dependencies.properties @@ -1,4 +1,4 @@ -version=5.4.0-RC.0 +version=5.4.0 amf=5.4.0 amf.custom-validator.js=1.4.0 amf.custom-validator-scalajs=0.5.0