@crowdstrike/logscale-parser-edit 1.137.0--build-1167--sha-fb0896f3864b600116726e91465c99f8d9ec6e8c → 1.139.0--build-1268--sha-93eb6bd9aa018eabe805af3b4b5922fe55722b28
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/index.d.ts +4 -2
- package/index.js +514 -806
- package/index.js.map +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -92,8 +92,10 @@ export declare interface Options extends CommonOptions {
|
|
92
92
|
languageVersion?: string;
|
93
93
|
/** Name of the repository containing the parser to be edited. */
|
94
94
|
repoName: string;
|
95
|
-
/** ID of the parser to be edited. */
|
96
|
-
parserId
|
95
|
+
/** ID of the parser to be edited. Overrides the `script` field if it is provided. */
|
96
|
+
parserId?: string;
|
97
|
+
/** Makes the editor display a fictitious script with the given value. This field is ignored if `repoName` and `parserId` are provided. */
|
98
|
+
script?: string;
|
97
99
|
/** Whether the parser should be read-only or editable. Defaults to false (meaning it's editable).
|
98
100
|
* Note that if the parser is built-in, then it will be read-only regardless of this value.
|
99
101
|
*/
|