@likec4/language-server 1.12.1 → 1.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/shared/{language-server.B8Ce0R_D.d.ts → language-server.CfQfeZck.d.ts} +1 -1
- package/dist/shared/{language-server.DJAHXekh.d.cts → language-server.CtaXfyB2.d.cts} +1 -1
- package/dist/shared/{language-server.CzkWpuWT.d.mts → language-server.DdS5JzQT.d.mts} +1 -1
- package/package.json +5 -5
|
@@ -955,7 +955,7 @@ interface ParsedLikeC4LangiumDocument extends Omit<LangiumDocument<LikeC4Grammar
|
|
|
955
955
|
}
|
|
956
956
|
type Guard<N extends AstNode> = (n: AstNode) => n is N;
|
|
957
957
|
type Guarded<G> = G extends Guard<infer N> ? N : never;
|
|
958
|
-
declare const isValidatableAstNode: (n: AstNode) => n is Guarded<typeof isRelation | typeof
|
|
958
|
+
declare const isValidatableAstNode: (n: AstNode) => n is Guarded<typeof isRelation | typeof isLikeC4View | typeof isExtendElement | typeof isElement | typeof isDynamicViewPredicateIterator | typeof isElementPredicateWith | typeof isRelationPredicateWith | typeof isElementExpression | typeof isRelationExpression | typeof isDynamicViewParallelSteps | typeof isDynamicViewStep | typeof isViewProperty | typeof isStyleProperty | typeof isTags | typeof isViewRule | typeof isDynamicViewRule | typeof isElementViewBody | typeof isDynamicViewBody | typeof isRelationProperty | typeof isRelationBody | typeof isElementProperty | typeof isElementBody | typeof isExtendElementBody | typeof isSpecificationElementKind | typeof isSpecificationRelationshipKind | typeof isSpecificationTag | typeof isSpecificationColor | typeof isSpecificationRule | typeof isModelViews | typeof isModel>;
|
|
959
959
|
type ValidatableAstNode = Guarded<typeof isValidatableAstNode>;
|
|
960
960
|
declare function checksFromDiagnostics(doc: LikeC4LangiumDocument): {
|
|
961
961
|
isValid: (n: ValidatableAstNode) => boolean;
|
|
@@ -955,7 +955,7 @@ interface ParsedLikeC4LangiumDocument extends Omit<LangiumDocument<LikeC4Grammar
|
|
|
955
955
|
}
|
|
956
956
|
type Guard<N extends AstNode> = (n: AstNode) => n is N;
|
|
957
957
|
type Guarded<G> = G extends Guard<infer N> ? N : never;
|
|
958
|
-
declare const isValidatableAstNode: (n: AstNode) => n is Guarded<typeof isRelation | typeof
|
|
958
|
+
declare const isValidatableAstNode: (n: AstNode) => n is Guarded<typeof isRelation | typeof isLikeC4View | typeof isExtendElement | typeof isElement | typeof isDynamicViewPredicateIterator | typeof isElementPredicateWith | typeof isRelationPredicateWith | typeof isElementExpression | typeof isRelationExpression | typeof isDynamicViewParallelSteps | typeof isDynamicViewStep | typeof isViewProperty | typeof isStyleProperty | typeof isTags | typeof isViewRule | typeof isDynamicViewRule | typeof isElementViewBody | typeof isDynamicViewBody | typeof isRelationProperty | typeof isRelationBody | typeof isElementProperty | typeof isElementBody | typeof isExtendElementBody | typeof isSpecificationElementKind | typeof isSpecificationRelationshipKind | typeof isSpecificationTag | typeof isSpecificationColor | typeof isSpecificationRule | typeof isModelViews | typeof isModel>;
|
|
959
959
|
type ValidatableAstNode = Guarded<typeof isValidatableAstNode>;
|
|
960
960
|
declare function checksFromDiagnostics(doc: LikeC4LangiumDocument): {
|
|
961
961
|
isValid: (n: ValidatableAstNode) => boolean;
|
|
@@ -955,7 +955,7 @@ interface ParsedLikeC4LangiumDocument extends Omit<LangiumDocument<LikeC4Grammar
|
|
|
955
955
|
}
|
|
956
956
|
type Guard<N extends AstNode> = (n: AstNode) => n is N;
|
|
957
957
|
type Guarded<G> = G extends Guard<infer N> ? N : never;
|
|
958
|
-
declare const isValidatableAstNode: (n: AstNode) => n is Guarded<typeof isRelation | typeof
|
|
958
|
+
declare const isValidatableAstNode: (n: AstNode) => n is Guarded<typeof isRelation | typeof isLikeC4View | typeof isExtendElement | typeof isElement | typeof isDynamicViewPredicateIterator | typeof isElementPredicateWith | typeof isRelationPredicateWith | typeof isElementExpression | typeof isRelationExpression | typeof isDynamicViewParallelSteps | typeof isDynamicViewStep | typeof isViewProperty | typeof isStyleProperty | typeof isTags | typeof isViewRule | typeof isDynamicViewRule | typeof isElementViewBody | typeof isDynamicViewBody | typeof isRelationProperty | typeof isRelationBody | typeof isElementProperty | typeof isElementBody | typeof isExtendElementBody | typeof isSpecificationElementKind | typeof isSpecificationRelationshipKind | typeof isSpecificationTag | typeof isSpecificationColor | typeof isSpecificationRule | typeof isModelViews | typeof isModel>;
|
|
959
959
|
type ValidatableAstNode = Guarded<typeof isValidatableAstNode>;
|
|
960
960
|
declare function checksFromDiagnostics(doc: LikeC4LangiumDocument): {
|
|
961
961
|
isValid: (n: ValidatableAstNode) => boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@likec4/language-server",
|
|
3
3
|
"description": "LikeC4 Language Server",
|
|
4
|
-
"version": "1.12.
|
|
4
|
+
"version": "1.12.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bugs": "https://github.com/likec4/likec4/issues",
|
|
7
7
|
"homepage": "https://likec4.dev",
|
|
@@ -112,8 +112,8 @@
|
|
|
112
112
|
},
|
|
113
113
|
"dependencies": {
|
|
114
114
|
"@dagrejs/graphlib": "^2.2.4",
|
|
115
|
-
"@likec4/core": "1.12.
|
|
116
|
-
"@likec4/log": "1.12.
|
|
115
|
+
"@likec4/core": "1.12.2",
|
|
116
|
+
"@likec4/log": "1.12.2",
|
|
117
117
|
"@msgpack/msgpack": "^3.0.0-beta2",
|
|
118
118
|
"@smithy/util-base64": "^3.0.0",
|
|
119
119
|
"fast-equals": "^5.0.1",
|
|
@@ -133,8 +133,8 @@
|
|
|
133
133
|
"vscode-uri": "3.0.8"
|
|
134
134
|
},
|
|
135
135
|
"devDependencies": {
|
|
136
|
-
"@likec4/icons": "1.12.
|
|
137
|
-
"@likec4/tsconfig": "1.12.
|
|
136
|
+
"@likec4/icons": "1.12.2",
|
|
137
|
+
"@likec4/tsconfig": "1.12.2",
|
|
138
138
|
"@types/node": "^20.16.5",
|
|
139
139
|
"@types/object-hash": "^3.0.6",
|
|
140
140
|
"@types/string-hash": "^1.1.3",
|