Skip to content

Commit 7090bac

Browse files
committed
Update common version
1 parent 89ff9ed commit 7090bac

File tree

5 files changed

+65
-22
lines changed

5 files changed

+65
-22
lines changed

docs/references/schemas/config.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ beforeAny | one of:<br/>- string<br/>- array of string | Optional. Path(s) to te
2020
afterAll | one of:<br/>- string<br/>- array of string | Optional. Path(s) to test specifications to perform after those specified by `input`. Useful for cleaning up testing environments. |
2121
detectSteps | boolean | Optional. Whether or not to detect steps in input files based on defined markup. | `true`
2222
allowUnsafeSteps | boolean | Optional. Whether or not to run potentially unsafe steps, such as those that might modify files or system state. |
23+
crawl | boolean | Optional. If `true`, crawls sitemap.xml files specified by URL to find additional files to test. | `false`
2324
processDitaMaps | boolean | Optional. If `true`, processes DITA maps and includes generated files as inputs. | `true`
2425
logLevel | string | Optional. Amount of detail to output when performing an operation.<br/><br/>Accepted values: `silent`, `error`, `warning`, `info`, `debug` | `info`
2526
runOn | array of object([context](/docs/references/schemas/context)) | Optional. Contexts to run the test in. Overrides contexts defined at the config and spec levels. |
@@ -157,3 +158,19 @@ debug | one of:<br/>- boolean<br/>- string | Optional. Enable debugging mode. `t
157158
"debug": "stepThrough"
158159
}
159160
```
161+
162+
```json
163+
{
164+
"integrations": {
165+
"docDetectiveApi": {
166+
"apiKey": "your-api-key-here"
167+
}
168+
}
169+
}
170+
```
171+
172+
```json
173+
{
174+
"crawl": true
175+
}
176+
```
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
# Doc Detective Orchestration API
3+
4+
Configuration for Doc Detective Orchestration API integration.
5+
6+
## Referenced In
7+
8+
- [Integrations options](/docs/references/schemas/integrations-options)
9+
10+
## Fields
11+
12+
Field | Type | Description | Default
13+
:-- | :-- | :-- | :--
14+
apiKey | string | Optional. API key for authenticating with the Doc Detective Orchestration API. |
15+
16+
## Examples
17+
18+
```json
19+
{
20+
"apiKey": "example"
21+
}
22+
```

docs/references/schemas/integrations-options.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ Options for connecting to external services.
1212
Field | Type | Description | Default
1313
:-- | :-- | :-- | :--
1414
openApi | array of unknown | Optional. No description provided. |
15+
docDetectiveApi | object([Doc Detective Orchestration API](/docs/references/schemas/doc-detective-orchestration-api)) | Optional. Configuration for Doc Detective Orchestration API integration. |
1516

1617
## Examples
1718

1819
```json
1920
{
20-
"openApi": []
21+
"openApi": [],
22+
"docDetectiveApi": {
23+
"apiKey": "example"
24+
}
2125
}
2226
```

package-lock.json

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
},
2323
"dependencies": {
2424
"@apidevtools/json-schema-ref-parser": "^14.2.1",
25-
"@docusaurus/core": "^3.8.1",
26-
"@docusaurus/preset-classic": "^3.8.1",
27-
"@docusaurus/theme-mermaid": "^3.8.1",
25+
"@docusaurus/core": "^3.9.2",
26+
"@docusaurus/preset-classic": "^3.9.2",
27+
"@docusaurus/theme-mermaid": "^3.9.2",
2828
"@emotion/styled": "^11.14.1",
2929
"@inkeep/docusaurus": "^2.0.16",
3030
"@mdx-js/react": "^3.1.1",
@@ -42,8 +42,8 @@
4242
"posthog-docusaurus": "^2.0.5",
4343
"prism-react-renderer": "^2.4.1",
4444
"process": "^0.11.10",
45-
"react": "^19.1.1",
46-
"react-dom": "^19.1.1",
45+
"react": "^19.2.0",
46+
"react-dom": "^19.2.0",
4747
"react-markdown": "^10.1.0",
4848
"stream-browserify": "^3.0.0",
4949
"stream-http": "^3.2.0",

0 commit comments

Comments
 (0)