doc-detective-common 4.0.0-beta.0-dev.7 → 4.0.0-beta.0-dev.8
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/detectTests.d.ts +17 -22
- package/dist/detectTests.d.ts.map +1 -1
- package/dist/detectTests.js +81 -4
- package/dist/detectTests.js.map +1 -1
- package/dist/fileTypes.d.ts +35 -0
- package/dist/fileTypes.d.ts.map +1 -0
- package/dist/fileTypes.js +293 -0
- package/dist/fileTypes.js.map +1 -0
- package/dist/index.cjs +7288 -162
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas/schemas.json +6786 -0
- package/dist/types/generated/step_v3.d.ts +288 -0
- package/dist/types/generated/step_v3.d.ts.map +1 -1
- package/dist/types/generated/test_v3.d.ts +576 -0
- package/dist/types/generated/test_v3.d.ts.map +1 -1
- package/package.json +4 -3
- package/dist/schemas/checkLink_v3.schema.json +0 -145
- package/dist/schemas/click_v3.schema.json +0 -252
- package/dist/schemas/config_v3.schema.json +0 -16470
- package/dist/schemas/context_v3.schema.json +0 -374
- package/dist/schemas/dragAndDrop_v3.schema.json +0 -496
- package/dist/schemas/find_v3.schema.json +0 -1349
- package/dist/schemas/goTo_v3.schema.json +0 -419
- package/dist/schemas/httpRequest_v3.schema.json +0 -994
- package/dist/schemas/loadCookie_v3.schema.json +0 -228
- package/dist/schemas/loadVariables_v3.schema.json +0 -9
- package/dist/schemas/openApi_v3.schema.json +0 -162
- package/dist/schemas/record_v3.schema.json +0 -101
- package/dist/schemas/report_v3.schema.json +0 -16826
- package/dist/schemas/resolvedTests_v3.schema.json +0 -33331
- package/dist/schemas/runCode_v3.schema.json +0 -222
- package/dist/schemas/runShell_v3.schema.json +0 -236
- package/dist/schemas/saveCookie_v3.schema.json +0 -245
- package/dist/schemas/screenshot_v3.schema.json +0 -681
- package/dist/schemas/sourceIntegration_v3.schema.json +0 -50
- package/dist/schemas/spec_v3.schema.json +0 -16630
- package/dist/schemas/step_v3.schema.json +0 -7317
- package/dist/schemas/stopRecord_v3.schema.json +0 -12
- package/dist/schemas/test_v3.schema.json +0 -15863
- package/dist/schemas/type_v3.schema.json +0 -244
- package/dist/schemas/wait_v3.schema.json +0 -41
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"title": "sourceIntegration",
|
|
4
|
-
"description": "Information about the source integration for a file, enabling upload of changed files back to the source CMS.",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"additionalProperties": false,
|
|
7
|
-
"required": [
|
|
8
|
-
"type",
|
|
9
|
-
"integrationName"
|
|
10
|
-
],
|
|
11
|
-
"properties": {
|
|
12
|
-
"type": {
|
|
13
|
-
"type": "string",
|
|
14
|
-
"description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
|
|
15
|
-
"enum": [
|
|
16
|
-
"heretto"
|
|
17
|
-
]
|
|
18
|
-
},
|
|
19
|
-
"integrationName": {
|
|
20
|
-
"type": "string",
|
|
21
|
-
"description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
|
|
22
|
-
},
|
|
23
|
-
"fileId": {
|
|
24
|
-
"type": "string",
|
|
25
|
-
"description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
|
|
26
|
-
},
|
|
27
|
-
"filePath": {
|
|
28
|
-
"type": "string",
|
|
29
|
-
"description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
|
|
30
|
-
},
|
|
31
|
-
"contentPath": {
|
|
32
|
-
"type": "string",
|
|
33
|
-
"description": "The local path to the file that references this source. Used for resolving relative paths."
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"examples": [
|
|
37
|
-
{
|
|
38
|
-
"type": "heretto",
|
|
39
|
-
"integrationName": "my-heretto",
|
|
40
|
-
"fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
|
|
41
|
-
"filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"type": "heretto",
|
|
45
|
-
"integrationName": "my-heretto",
|
|
46
|
-
"filePath": "images/screenshot.png",
|
|
47
|
-
"contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
|
|
48
|
-
}
|
|
49
|
-
]
|
|
50
|
-
}
|