Skip to content

Commit 37d5a76

Browse files
committed
docs(runtime): include trusted security profile in references
1 parent 5922b1f commit 37d5a76

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

docs/api-reference.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,11 @@ interface SecurityCheckResult {
456456
diagnostics: RuntimeDiagnostic[];
457457
}
458458

459-
type RuntimeSecurityProfile = "strict" | "balanced" | "relaxed";
459+
type RuntimeSecurityProfile =
460+
| "strict"
461+
| "balanced"
462+
| "trusted"
463+
| "relaxed";
460464
```
461465

462466
### Utility Functions

docs/cli-playground.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ RENDERIFY_LLM_BASE_URL=https://api.openai.com/v1
284284
RENDERIFY_LLM_USE_STRUCTURED_OUTPUT=true|false
285285

286286
# Security
287-
RENDERIFY_SECURITY_PROFILE=strict|balanced|relaxed
287+
RENDERIFY_SECURITY_PROFILE=strict|balanced|trusted|relaxed
288288

289289
# Runtime
290290
RENDERIFY_RUNTIME_ENFORCE_MANIFEST=true|false

packages/cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ renderify render-plan ./examples/runtime/recharts-dashboard-plan.json
5555
- `RENDERIFY_LLM_MAX_RETRIES` (e.g. `0` for single-attempt HTTP calls)
5656
- `RENDERIFY_LLM_STRUCTURED_RETRY` (`true`, `false`)
5757
- `RENDERIFY_LLM_STRUCTURED_FALLBACK_TEXT` (`true`, `false`)
58-
- `RENDERIFY_SECURITY_PROFILE` (`strict`, `balanced`, `relaxed`)
58+
- `RENDERIFY_SECURITY_PROFILE` (`strict`, `balanced`, `trusted`, `relaxed`)
5959
- `RENDERIFY_PLAYGROUND_DEBUG` (`1`, `true`, `yes`, `on`)
6060
- `RENDERIFY_PLAYGROUND_LLM_LOG` (`true`, `false`, default `true`)
6161

0 commit comments

Comments
 (0)