@deftai/directive-types 0.82.0 → 0.83.0
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/policy.d.ts +2 -0
- package/package.json +1 -1
package/dist/policy.d.ts
CHANGED
|
@@ -25,6 +25,8 @@ export interface PlanPolicy {
|
|
|
25
25
|
readonly triageHoldMarkers?: readonly string[];
|
|
26
26
|
readonly swarmSubagentBackend?: string | null;
|
|
27
27
|
readonly projectionProviders?: Record<string, ProjectionProviderPolicy>;
|
|
28
|
+
/** Per-host Directive hook deposit toggles (#2752). Default: all true. */
|
|
29
|
+
readonly hostHooks?: Partial<Record<"claude" | "cursor" | "grok" | "codex", boolean>>;
|
|
28
30
|
readonly [key: `x-${string}`]: unknown;
|
|
29
31
|
}
|
|
30
32
|
export interface ProjectionProviderExpectation {
|