doc-detective-common 1.2.7 → 1.2.9
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/package.json +1 -1
- package/src/schemas/dereferenceSchemas.js +2 -0
- package/src/schemas/output_schemas/analytics_v1.schema.json +1 -2
- package/src/schemas/output_schemas/checkLink_v1.schema.json +1 -2
- package/src/schemas/output_schemas/checkLink_v2.schema.json +1 -2
- package/src/schemas/output_schemas/click_v1.schema.json +1 -2
- package/src/schemas/output_schemas/config_v2.schema.json +1 -3
- package/src/schemas/output_schemas/context_v2.schema.json +1 -2
- package/src/schemas/output_schemas/find_v1.schema.json +1 -2
- package/src/schemas/output_schemas/find_v2.schema.json +1 -2
- package/src/schemas/output_schemas/goTo_v1.schema.json +1 -2
- package/src/schemas/output_schemas/goTo_v2.schema.json +1 -2
- package/src/schemas/output_schemas/httpRequest_v1.schema.json +1 -2
- package/src/schemas/output_schemas/httpRequest_v2.schema.json +1 -2
- package/src/schemas/output_schemas/matchText_v1.schema.json +1 -2
- package/src/schemas/output_schemas/moveMouse_v1.schema.json +1 -2
- package/src/schemas/output_schemas/runShell_v1.schema.json +1 -2
- package/src/schemas/output_schemas/runShell_v2.schema.json +1 -2
- package/src/schemas/output_schemas/saveScreenshot_v2.schema.json +1 -2
- package/src/schemas/output_schemas/screenshot_v1.schema.json +1 -2
- package/src/schemas/output_schemas/scroll_v1.schema.json +1 -2
- package/src/schemas/output_schemas/setVariables_v2.schema.json +1 -2
- package/src/schemas/output_schemas/spec_v2.schema.json +1 -2
- package/src/schemas/output_schemas/startRecording_v1.schema.json +1 -2
- package/src/schemas/output_schemas/startRecording_v2.schema.json +1 -2
- package/src/schemas/output_schemas/stopRecording_v1.schema.json +1 -2
- package/src/schemas/output_schemas/test_v2.schema.json +1 -2
- package/src/schemas/output_schemas/typeKeys_v2.schema.json +1 -2
- package/src/schemas/output_schemas/type_v1.schema.json +1 -2
- package/src/schemas/output_schemas/wait_v1.schema.json +1 -2
- package/src/schemas/output_schemas/wait_v2.schema.json +1 -2
- package/src/schemas/src_schemas/config_v2.schema.json +0 -1
package/package.json
CHANGED
|
@@ -27,6 +27,8 @@ async function dereferenceSchemas() {
|
|
|
27
27
|
schema = updateRefPaths(schema, inputDir);
|
|
28
28
|
// Dereference schema
|
|
29
29
|
schema = await parser.dereference(schema);
|
|
30
|
+
// Delete ID
|
|
31
|
+
delete schema.$id
|
|
30
32
|
// Write to file
|
|
31
33
|
fs.writeFileSync(`${outputDir}/${file}`, JSON.stringify(schema, null, 2));
|
|
32
34
|
}
|
|
@@ -41,7 +41,6 @@
|
|
|
41
41
|
"type": "object",
|
|
42
42
|
"additionalProperties": false,
|
|
43
43
|
"description": "Options for running tests. When running tests, values set here override general configuration options.",
|
|
44
|
-
"default": {},
|
|
45
44
|
"properties": {
|
|
46
45
|
"input": {
|
|
47
46
|
"description": "Path(s) to test specifications and documentation source files. May be paths to specific files or to directories to scan for files.",
|
|
@@ -775,6 +774,5 @@
|
|
|
775
774
|
"userId": "Doc Detective"
|
|
776
775
|
}
|
|
777
776
|
}
|
|
778
|
-
]
|
|
779
|
-
"$id": "/home/hawkeyexl/Documents/Workspace/doc-detective-common/src/schemas/src_schemas/config_v2.schema.json"
|
|
777
|
+
]
|
|
780
778
|
}
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
"type": "object",
|
|
25
25
|
"additionalProperties": false,
|
|
26
26
|
"description": "Options for running tests. When running tests, values set here override general configuration options.",
|
|
27
|
-
"default": {},
|
|
28
27
|
"properties": {
|
|
29
28
|
"input": {
|
|
30
29
|
"$ref": "config_v2.schema.json#/definitions/input"
|