docs: regenerate catalogs for the override-chain JSDoc updates

This commit is contained in:
kingwl
2026-07-27 13:46:33 +08:00
parent 10bb6dc4fe
commit 2f59db73be
2 changed files with 13 additions and 11 deletions

View File

@@ -1869,7 +1869,7 @@ export interface Config {
export type ApprovalPolicy = 'ask' | 'never' export type ApprovalPolicy = 'ask' | 'never'
``` ```
Source: [`packages/ui/user-approval/src/index.ts:233`](../packages/ui/user-approval/src/index.ts) Source: [`packages/ui/user-approval/src/index.ts:236`](../packages/ui/user-approval/src/index.ts)
## `@deepseek-ai/dsh-web` ## `@deepseek-ai/dsh-web`

View File

@@ -129,15 +129,16 @@ Source: [`packages/ui/user-approval/src/index.ts:55`](../packages/ui/user-approv
/** /**
* The session's approval policy was switched — log-only, durable, * The session's approval policy was switched — log-only, durable,
* replayable, never in the model transcript (the model learns the policy * replayable, never in the model transcript (the model learns the policy
* from the prompt section and the narrator's notices). The LAST such * from the prompt section and the narrator's notices). The last such OWN
* event is the session's override ({@link effectiveApprovalPolicy}); * (post-seed) event is the session's override
* who asked for it is derivable from position (an event after the log's * ({@link approvalOverrideOf}); who asked for it is derivable from
* last `request/header` was a runtime switch by the user). * position (an own event after the log's last own `request/header` was a
* runtime switch by the user).
*/ */
'approval/policy': { policy: ApprovalPolicy } 'approval/policy': { policy: ApprovalPolicy }
``` ```
Source: [`packages/ui/user-approval/src/index.ts:67`](../packages/ui/user-approval/src/index.ts) Source: [`packages/ui/user-approval/src/index.ts:68`](../packages/ui/user-approval/src/index.ts)
### `assistant/*` ### `assistant/*`
@@ -353,15 +354,16 @@ Source: [`packages/core/session/src/types.ts:332`](../packages/core/session/src/
/** /**
* The session's sandbox mode was switched — log-only (like `approval/*`; * The session's sandbox mode was switched — log-only (like `approval/*`;
* NOT a surface event, carries no `surfaceOp`): durable and replayable, * NOT a surface event, carries no `surfaceOp`): durable and replayable,
* never in the model transcript. The LAST such event is the session's * never in the model transcript. The last such OWN (post-seed) event is
* override ({@link effectiveSandboxMode}); who asked for it is derivable * the session's override ({@link sandboxOverrideOf}); who asked for it is
* from position (an event after the log's last `request/header*` was a * derivable from position (an event after the log's last
* runtime switch by the user; see the tool layer's narrator). * `request/header*` was a runtime switch by the user; see the tool
* layer's narrator).
*/ */
'sandbox/mode': { mode: SandboxMode } 'sandbox/mode': { mode: SandboxMode }
``` ```
Source: [`packages/sandbox/sandbox-policy/src/session-mode.ts:34`](../packages/sandbox/sandbox-policy/src/session-mode.ts) Source: [`packages/sandbox/sandbox-policy/src/session-mode.ts:39`](../packages/sandbox/sandbox-policy/src/session-mode.ts)
### `session/*` ### `session/*`