You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/ql-vscode/src/data-extensions-editor/queries/query.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ export type Query = {
8
8
* - supported: whether the external API is modeled. This should be a string representation of a boolean to satify the result pattern for a problem query.
9
9
* - "supported": a string literal. This is required to make the query a valid problem query.
10
10
* - libraryName: the name of the library that contains the external API. This is a string and usually the basename of a file.
11
-
* - "library": a string literal. This is required to make the query a valid problem query.
11
+
* - libraryVersion: the version of the library that contains the external API. This is a string and can be empty if the version cannot be determined.
12
12
* - type: the modeled kind of the method, either "sink", "source", "summary", or "neutral"
13
13
* - "type": a string literal. This is required to make the query a valid problem query.
14
14
* - classification: the classification of the use of the method, either "source", "test", "generated", or "unknown"
@@ -25,7 +25,7 @@ export type Query = {
25
25
* - supported: whether this method is modeled. This should be a string representation of a boolean to satify the result pattern for a problem query.
26
26
* - "supported": a string literal. This is required to make the query a valid problem query.
27
27
* - libraryName: an arbitrary string. This is required to make it match the structure of the application query.
28
-
* - "library": a string literal. This is required to make the query a valid problem query.
28
+
* - libraryVersion: an arbitrary string. This is required to make it match the structure of the application query.
29
29
* - type: the modeled kind of the method, either "sink", "source", "summary", or "neutral"
30
30
* - "type": a string literal. This is required to make the query a valid problem query.
31
31
* - "unknown": a string literal. This is required to make it match the structure of the application query.
0 commit comments