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.
Files changed (45) hide show
  1. package/dist/detectTests.d.ts +17 -22
  2. package/dist/detectTests.d.ts.map +1 -1
  3. package/dist/detectTests.js +81 -4
  4. package/dist/detectTests.js.map +1 -1
  5. package/dist/fileTypes.d.ts +35 -0
  6. package/dist/fileTypes.d.ts.map +1 -0
  7. package/dist/fileTypes.js +293 -0
  8. package/dist/fileTypes.js.map +1 -0
  9. package/dist/index.cjs +7288 -162
  10. package/dist/index.d.cts +2 -1
  11. package/dist/index.d.ts +2 -1
  12. package/dist/index.d.ts.map +1 -1
  13. package/dist/index.js +1 -0
  14. package/dist/index.js.map +1 -1
  15. package/dist/schemas/schemas.json +6786 -0
  16. package/dist/types/generated/step_v3.d.ts +288 -0
  17. package/dist/types/generated/step_v3.d.ts.map +1 -1
  18. package/dist/types/generated/test_v3.d.ts +576 -0
  19. package/dist/types/generated/test_v3.d.ts.map +1 -1
  20. package/package.json +4 -3
  21. package/dist/schemas/checkLink_v3.schema.json +0 -145
  22. package/dist/schemas/click_v3.schema.json +0 -252
  23. package/dist/schemas/config_v3.schema.json +0 -16470
  24. package/dist/schemas/context_v3.schema.json +0 -374
  25. package/dist/schemas/dragAndDrop_v3.schema.json +0 -496
  26. package/dist/schemas/find_v3.schema.json +0 -1349
  27. package/dist/schemas/goTo_v3.schema.json +0 -419
  28. package/dist/schemas/httpRequest_v3.schema.json +0 -994
  29. package/dist/schemas/loadCookie_v3.schema.json +0 -228
  30. package/dist/schemas/loadVariables_v3.schema.json +0 -9
  31. package/dist/schemas/openApi_v3.schema.json +0 -162
  32. package/dist/schemas/record_v3.schema.json +0 -101
  33. package/dist/schemas/report_v3.schema.json +0 -16826
  34. package/dist/schemas/resolvedTests_v3.schema.json +0 -33331
  35. package/dist/schemas/runCode_v3.schema.json +0 -222
  36. package/dist/schemas/runShell_v3.schema.json +0 -236
  37. package/dist/schemas/saveCookie_v3.schema.json +0 -245
  38. package/dist/schemas/screenshot_v3.schema.json +0 -681
  39. package/dist/schemas/sourceIntegration_v3.schema.json +0 -50
  40. package/dist/schemas/spec_v3.schema.json +0 -16630
  41. package/dist/schemas/step_v3.schema.json +0 -7317
  42. package/dist/schemas/stopRecord_v3.schema.json +0 -12
  43. package/dist/schemas/test_v3.schema.json +0 -15863
  44. package/dist/schemas/type_v3.schema.json +0 -244
  45. 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
- }