@rulvar/core 1.61.0 → 1.63.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/index.d.ts +220 -2
- package/dist/index.js +1870 -1334
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ type WireError = {
|
|
|
28
28
|
* 'agent' is carried by the AgentError value projection, not by a
|
|
29
29
|
* RulvarError subclass.
|
|
30
30
|
*/
|
|
31
|
-
type ErrorCode = "agent" | "config" | "non_serializable_value" | "script_rejected" | "journal_compat" | "invalid_resolution" | "journal_order_violation" | "plan_invariant" | "replay_plan_hash_mismatch" | "orchestrator_cap_config" | "journal_miss" | "budget_exhausted" | "fail_run" | "admission_rejected" | "sandbox_limit" | "lease_held" | "knowledge_cas" | "determinism";
|
|
31
|
+
type ErrorCode = "agent" | "config" | "non_serializable_value" | "script_rejected" | "journal_compat" | "invalid_resolution" | "journal_order_violation" | "plan_invariant" | "replay_plan_hash_mismatch" | "orchestrator_cap_config" | "journal_miss" | "budget_exhausted" | "fail_run" | "admission_rejected" | "sandbox_limit" | "lease_held" | "knowledge_cas" | "determinism" | "settlement";
|
|
32
32
|
/** An alias for the registry type; both names are public. */
|
|
33
33
|
type RulvarErrorCode = ErrorCode;
|
|
34
34
|
/**
|
|
@@ -252,6 +252,39 @@ declare class LeaseHeldError extends RulvarError {
|
|
|
252
252
|
});
|
|
253
253
|
}
|
|
254
254
|
/**
|
|
255
|
+
* The segment computed its outcome but a settlement write failed with a
|
|
256
|
+
* NON-fencing store error, so nothing durable records that the run
|
|
257
|
+
* settled. `handle.result` rejects with this instead of resolving,
|
|
258
|
+
* because a caller acting on an unrecorded outcome is exactly the split
|
|
259
|
+
* view an authoritative store exists to prevent. `stage` names the
|
|
260
|
+
* write that failed: 'run-settle' is the journal decision entry (when
|
|
261
|
+
* it fails the terminal meta write is SKIPPED, so the projection can
|
|
262
|
+
* never run ahead of the journal), 'meta' is the terminal RunMeta
|
|
263
|
+
* projection (the journal settle IS durable; only the projection is
|
|
264
|
+
* behind, the same residue a crash between the two writes leaves).
|
|
265
|
+
* Every entry the run appended before settlement is already durable,
|
|
266
|
+
* so recovery is deterministic: resume the run and replay re-settles
|
|
267
|
+
* the same outcome without a provider call, or reconcile the store
|
|
268
|
+
* with `rulvar runs audit [--repair]`. A superseded segment's fencing
|
|
269
|
+
* rejection (LeaseHeldError) is NOT this error and stays swallowed:
|
|
270
|
+
* the successor owns settlement. `data` records
|
|
271
|
+
* { runId, runStatus, stage }.
|
|
272
|
+
*/
|
|
273
|
+
declare class SettlementError extends RulvarError {
|
|
274
|
+
readonly code = "settlement";
|
|
275
|
+
/** The settlement write that failed first. */
|
|
276
|
+
readonly stage: "run-settle" | "meta";
|
|
277
|
+
readonly runId: string;
|
|
278
|
+
/** The outcome status the segment computed and could not record. */
|
|
279
|
+
readonly runStatus: string;
|
|
280
|
+
constructor(message: string, opts: {
|
|
281
|
+
stage: "run-settle" | "meta";
|
|
282
|
+
runId: string;
|
|
283
|
+
runStatus: string;
|
|
284
|
+
cause?: unknown;
|
|
285
|
+
});
|
|
286
|
+
}
|
|
287
|
+
/**
|
|
255
288
|
* commit() on a ModelKnowledgeStore against a snapshot version that is
|
|
256
289
|
* no longer current. Retryable by contract: re-read current(), rebase
|
|
257
290
|
* the ops, commit again, mirroring the lease fencing discipline.
|
|
@@ -1006,6 +1039,13 @@ interface MetaLookupStore extends JournalStore {
|
|
|
1006
1039
|
* Lease capability: acquire on a held lease MUST reject with a typed
|
|
1007
1040
|
* LeaseHeldError; renew MUST run at an interval of at most ttl/3; an
|
|
1008
1041
|
* append carrying a stale epoch MUST be rejected and never appear in load.
|
|
1042
|
+
* The fencing epoch MUST be monotonic per runId across `delete` and
|
|
1043
|
+
* recreate: after a run is deleted and the same explicit runId is
|
|
1044
|
+
* started again, `acquire` MUST return a strictly higher epoch than any
|
|
1045
|
+
* epoch the deleted incarnation ever held (keep a tombstone of the
|
|
1046
|
+
* high-water mark through deletion), or a zombie lease from the deleted
|
|
1047
|
+
* incarnation with a stable owner identity would fence green against
|
|
1048
|
+
* the new incarnation's journal, meta, and delete surfaces.
|
|
1009
1049
|
*/
|
|
1010
1050
|
interface LeasableStore extends JournalStore {
|
|
1011
1051
|
acquire(runId: string, owner: string): Promise<Lease>;
|
|
@@ -8334,6 +8374,184 @@ interface InvoiceExport {
|
|
|
8334
8374
|
*/
|
|
8335
8375
|
declare function invoiceFromJournal(entries: readonly JournalEntry[], priceUsd: (servedBy: ModelRef, usage: Usage) => number | undefined): InvoiceExport;
|
|
8336
8376
|
//#endregion
|
|
8377
|
+
//#region src/engine/preflight.d.ts
|
|
8378
|
+
/**
|
|
8379
|
+
* One intended spawn of the wave under estimation: the same layers the
|
|
8380
|
+
* engine reads at ctx.agent time (call limits over profile limits over
|
|
8381
|
+
* engine defaults; call estCost over profile estCost over the priced
|
|
8382
|
+
* estimate over the flat default), plus the two stand-ins a static
|
|
8383
|
+
* estimate needs: `estInputTokens` replaces the adapter countTokens the
|
|
8384
|
+
* runtime would call over the real prompt, and `count` declares how
|
|
8385
|
+
* many spawns of this shape the first wave holds.
|
|
8386
|
+
*/
|
|
8387
|
+
interface PreflightSpawnSpec {
|
|
8388
|
+
/** Display label; defaults to the role name. */
|
|
8389
|
+
label?: string;
|
|
8390
|
+
/** Default 'loop', exactly like ctx.agent. */
|
|
8391
|
+
role?: InvocationRole;
|
|
8392
|
+
/** A registered AgentProfile name from defaults.profiles. */
|
|
8393
|
+
profile?: string;
|
|
8394
|
+
/** Wins over the profile model over defaults.routing[role]. */
|
|
8395
|
+
model?: ModelSpec;
|
|
8396
|
+
/** The call-layer limits, merged exactly like AgentOpts.limits. */
|
|
8397
|
+
limits?: UsageLimits;
|
|
8398
|
+
/** The call-layer admission reserve hint, exactly AgentOpts.estCost. */
|
|
8399
|
+
estCost?: number;
|
|
8400
|
+
/**
|
|
8401
|
+
* The prompt-size stand-in for the runtime's adapter countTokens:
|
|
8402
|
+
* feeds the priced admission estimate and the per-turn and quota
|
|
8403
|
+
* exposure floors. Absent, the reserve falls through to the flat
|
|
8404
|
+
* default exactly like a runtime spawn whose adapter cannot count.
|
|
8405
|
+
*/
|
|
8406
|
+
estInputTokens?: number;
|
|
8407
|
+
/** How many spawns of this shape the wave declares; default 1. */
|
|
8408
|
+
count?: number;
|
|
8409
|
+
}
|
|
8410
|
+
/** The OrchestrateOptions slice the estimator consumes. */
|
|
8411
|
+
interface PreflightOrchestratorSpec {
|
|
8412
|
+
budget?: OrchestratorBudgetSpec;
|
|
8413
|
+
/** The per-orchestrate spawn cap, exactly OrchestrateOptions.maxSpawns. */
|
|
8414
|
+
maxSpawns?: number;
|
|
8415
|
+
/** The orchestrator agent's own limits, exactly OrchestrateOptions.limits. */
|
|
8416
|
+
limits?: UsageLimits;
|
|
8417
|
+
/**
|
|
8418
|
+
* Whether the orchestration runs under a plan extension (PlanRunner):
|
|
8419
|
+
* only extension runs commit the finalize reserve against the run
|
|
8420
|
+
* root, so only they subtract it from spawn-admission headroom.
|
|
8421
|
+
*/
|
|
8422
|
+
extension?: boolean;
|
|
8423
|
+
}
|
|
8424
|
+
/** The full input: engine surface, run surface, and the declared wave. */
|
|
8425
|
+
interface PreflightInput {
|
|
8426
|
+
/** The same object createEngine would receive (adapters used for pure caps() only). */
|
|
8427
|
+
engine?: Partial<Pick<CreateEngineOptions, "adapters" | "defaults" | "budgetDefaults" | "concurrency" | "quota" | "pricing">>;
|
|
8428
|
+
/** The RunOptions slice: the run ceiling and run-level limits. */
|
|
8429
|
+
run?: Pick<RunOptions, "budgetUsd" | "limits">;
|
|
8430
|
+
/** Present when the run is a dynamic orchestration. */
|
|
8431
|
+
orchestrator?: PreflightOrchestratorSpec;
|
|
8432
|
+
/** The declared first spawn wave, in admission order. */
|
|
8433
|
+
spawns?: PreflightSpawnSpec[];
|
|
8434
|
+
/**
|
|
8435
|
+
* The quota rule set behind the configured limiter, when the host
|
|
8436
|
+
* uses a rule-driven implementation (memoryQuotaLimiter,
|
|
8437
|
+
* SqliteQuotaLimiter): the SPI hides rules behind reserve(), so the
|
|
8438
|
+
* demand comparison needs them declared here.
|
|
8439
|
+
*/
|
|
8440
|
+
quotaRules?: readonly QuotaRule[];
|
|
8441
|
+
}
|
|
8442
|
+
/** One linter verdict; `spawn` names the wave entry it is about. */
|
|
8443
|
+
interface PreflightFinding {
|
|
8444
|
+
severity: "error" | "warning" | "info";
|
|
8445
|
+
/** Stable kebab-case code for machine consumption. */
|
|
8446
|
+
code: string;
|
|
8447
|
+
message: string;
|
|
8448
|
+
spawn?: string;
|
|
8449
|
+
}
|
|
8450
|
+
/** Per-tool executed-call ceiling and the limiter that provides it. */
|
|
8451
|
+
interface PreflightToolCeiling {
|
|
8452
|
+
/** A named tool, or '(any)' for a tool no cap or cost names. */
|
|
8453
|
+
tool: string;
|
|
8454
|
+
/** Executed calls possible for this tool alone; null = unlimited. */
|
|
8455
|
+
ceiling: number | null;
|
|
8456
|
+
/** The limiter producing the ceiling, when one binds. */
|
|
8457
|
+
boundBy?: "maxCallsPerTool" | "toolUnits" | "maxToolCalls";
|
|
8458
|
+
}
|
|
8459
|
+
/** The effective picture of one declared spawn shape. */
|
|
8460
|
+
interface PreflightSpawnReport {
|
|
8461
|
+
label: string;
|
|
8462
|
+
role: InvocationRole;
|
|
8463
|
+
count: number;
|
|
8464
|
+
/** The resolved serving target; absent when no model resolves (see findings). */
|
|
8465
|
+
servedBy?: ModelRef;
|
|
8466
|
+
/** True when the serving model has no price row: a USD ceiling cannot bound it. */
|
|
8467
|
+
unpriced?: true;
|
|
8468
|
+
/** The SAME merge the runtime applies: call over profile over engine defaults. */
|
|
8469
|
+
limits: EffectiveUsageLimits;
|
|
8470
|
+
/** The layer-1 admission reserve this spawn would be admitted under. */
|
|
8471
|
+
admissionReserveUsd: number;
|
|
8472
|
+
/** Which arm of the reserve formula produced the number. */
|
|
8473
|
+
reserveSource: "estCost" | "profile-estCost" | "priced-estimate" | "flat-default" | "unpriced-zero";
|
|
8474
|
+
/** The per-turn output bound: caps.maxOutputTokens clamped by the limits field. */
|
|
8475
|
+
maxOutputTokensPerTurn?: number;
|
|
8476
|
+
/**
|
|
8477
|
+
* The cost floor of ONE turn at the declared estimates: estInputTokens
|
|
8478
|
+
* (default 0) plus the output bound, priced like settlement. A real
|
|
8479
|
+
* turn grows with the prompt, so this is a floor, never a cap.
|
|
8480
|
+
*/
|
|
8481
|
+
turnFloorUsd?: number;
|
|
8482
|
+
/** Executed-call ceiling across any tool mix; null = unlimited. */
|
|
8483
|
+
executedToolCallCeiling: number | null;
|
|
8484
|
+
/** Per-tool ceilings for every tool a cap or a unit cost names. */
|
|
8485
|
+
toolCeilings: PreflightToolCeiling[];
|
|
8486
|
+
}
|
|
8487
|
+
/** One wave entry of the admission projection. */
|
|
8488
|
+
interface PreflightAdmissionRow {
|
|
8489
|
+
label: string;
|
|
8490
|
+
reserveUsd: number;
|
|
8491
|
+
admitted: boolean;
|
|
8492
|
+
deniedBy?: "budget" | "spawn-cap" | "orchestrator-max-spawns" | "orchestrator-cap";
|
|
8493
|
+
}
|
|
8494
|
+
/** The machine-readable preflight report; JSON-serializable throughout. */
|
|
8495
|
+
interface PreflightReport {
|
|
8496
|
+
concurrency: {
|
|
8497
|
+
perRun: number;
|
|
8498
|
+
perProvider?: Record<string, number>;
|
|
8499
|
+
};
|
|
8500
|
+
budget: {
|
|
8501
|
+
ceilingUsd?: number;
|
|
8502
|
+
flatReserveUsd: number;
|
|
8503
|
+
lifetimeSpawnCap: number;
|
|
8504
|
+
childBudgetFraction: number;
|
|
8505
|
+
maxDepth: number;
|
|
8506
|
+
orchestrator?: {
|
|
8507
|
+
/** min(capUsd, (capFraction ?? 0.2) x ceiling); absent when unresolvable. */effectiveCapUsd?: number;
|
|
8508
|
+
finalizeReserveUsd: number;
|
|
8509
|
+
finalizeTurns: number; /** Whether the finalize reserve is committed against the run root (extension runs). */
|
|
8510
|
+
reserveCommitted: boolean;
|
|
8511
|
+
};
|
|
8512
|
+
};
|
|
8513
|
+
quota: {
|
|
8514
|
+
configured: boolean;
|
|
8515
|
+
tenant?: string;
|
|
8516
|
+
rules?: number;
|
|
8517
|
+
};
|
|
8518
|
+
/** The run-level merge an undeclared spawn would receive. */
|
|
8519
|
+
runLimits: EffectiveUsageLimits;
|
|
8520
|
+
spawns: PreflightSpawnReport[];
|
|
8521
|
+
admission: {
|
|
8522
|
+
ceilingUsd?: number;
|
|
8523
|
+
reservedForFinalizationUsd: number;
|
|
8524
|
+
wave: PreflightAdmissionRow[];
|
|
8525
|
+
admitted: number;
|
|
8526
|
+
denied: number;
|
|
8527
|
+
};
|
|
8528
|
+
exposure: {
|
|
8529
|
+
/** Concurrent in-flight turns the declared wave can hold. */maxInFlight: number;
|
|
8530
|
+
/**
|
|
8531
|
+
* The one-more-turn cost floor past a ceiling crossing: the sum of
|
|
8532
|
+
* the maxInFlight most expensive declared turn floors. The
|
|
8533
|
+
* documented overshoot bound is one turn per in-flight agent; real
|
|
8534
|
+
* turns grow with the prompt, so this is the floor of that bound.
|
|
8535
|
+
*/
|
|
8536
|
+
overshootOneTurnFloorUsd?: number; /** Per-provider first-wave demand at the declared estimates. */
|
|
8537
|
+
perProvider: Record<string, {
|
|
8538
|
+
inFlight: number;
|
|
8539
|
+
requestsPerWave: number;
|
|
8540
|
+
tokensPerWaveFloor: number;
|
|
8541
|
+
}>;
|
|
8542
|
+
};
|
|
8543
|
+
findings: PreflightFinding[];
|
|
8544
|
+
}
|
|
8545
|
+
/**
|
|
8546
|
+
* Computes the preflight report: the effective merged limits per
|
|
8547
|
+
* declared spawn, the layer-1 admission projection over the declared
|
|
8548
|
+
* wave, the per-tool and weighted-unit bottleneck ordering, the
|
|
8549
|
+
* concurrency and quota exposure at the declared estimates, and the
|
|
8550
|
+
* linter findings. Pure: no engine is constructed, no store is opened,
|
|
8551
|
+
* no adapter stream is dispatched, and no journal entry is written.
|
|
8552
|
+
*/
|
|
8553
|
+
declare function preflightEstimate(input: PreflightInput): PreflightReport;
|
|
8554
|
+
//#endregion
|
|
8337
8555
|
//#region src/engine/run-profiles.d.ts
|
|
8338
8556
|
interface RunProfile {
|
|
8339
8557
|
/** Per-role canonical effort hints (the model refs come from the host). */
|
|
@@ -8835,4 +9053,4 @@ interface SandboxBridge {
|
|
|
8835
9053
|
declare const SANDBOX_AGENT_OPT_KEYS: readonly string[];
|
|
8836
9054
|
declare function createSandboxBridge(ctx: Ctx<never>, options: SandboxBridgeOptions): SandboxBridge;
|
|
8837
9055
|
//#endregion
|
|
8838
|
-
export { AWAIT_SCHEMA, AbandonAttempt, AbandonFold, AbandonPayload, AbandonedSpendView, AbortClass, type AdaptiveEvents, AdmissionController, AdmissionDecision, AdmissionRejectedError, AdmissionStatsBefore, AdmitLineage, AdmitRejectReason, AdmitSpec, AdmitVerdict, AgentCallError, AgentError, type AgentEvents, AgentIdentityInput, type AgentInvocationRow, AgentOpts, AgentProfile, AgentProfilePermissions, AgentProfileTemplateOptions, AgentResult, AgentResultMeta, AgentStatus, ApproachSignatureInputs, ApprovalDecision, ApprovalIdentityInput, Artifact, AttemptOutcomeClass, AuditCategory, AuditRecord, AuditRunsOptions, BUDGET_ABORT_REASON, BaseAppend, BriefOpts, BudgetAccountView, BudgetDefaults, BudgetExhaustedError, BudgetExhaustionDiagnostics, BudgetHooks, BudgetReserve, type Bytes, CANCEL_AGENT_SCHEMA, CHECKPOINT_FORMAT_V1, CLAIM_STATEMENT_MAX_CHARS, CLAIM_TTL_DAYS, COMPACTION_SUMMARY_PREFIX, CURRENT_HASH_VERSION, CacheHint, CacheTtl, CanUseTool, CanonicalId, CanonicalIdentity, CanonicalLadderSpec, CanonicalModelSpec, ChatEvent, ChatRequest, CheckpointState, ChildArtifactPage, ChildIdentityInput, ChildResultPage, type ClaimClass, type ClaimOp, type ClaimStatus, ClaimValidationOptions, CollectOpts, CollectedTurn, CompactionConfig, CompiledPermissionChain, CompiledWorkflow, ConfigError, type CoreEvents, CostAttribution, CostAttributionFacts, CostReport, CreateEngineOptions, type CriticalPath, Ctx, DEFAULT_CHILD_BUDGET_FRACTION, DEFAULT_CHILD_RESULT_PAGE_CHARS, DEFAULT_CITATION_PATTERN, DEFAULT_COMPACTION_THRESHOLD, DEFAULT_ESCALATION_LIMITS, DEFAULT_EVIDENCE_MIN_SHARE, DEFAULT_FINISH_MAX_REPAIRS, DEFAULT_FLAT_RESERVE_USD, DEFAULT_MAX_CHILDREN_PER_NODE, DEFAULT_MAX_DEPTH, DEFAULT_MAX_OSCILLATIONS_PER_KEY, DEFAULT_MAX_PINNED_WORKTREES, DEFAULT_MAX_REVISIONS_PER_RUN, DEFAULT_MAX_TOTAL_SPAWNS, DEFAULT_MAX_TURNS, DEFAULT_MODEL_RETRY_ATTEMPTS, DEFAULT_NO_PROGRESS_TURNS, DEFAULT_PER_RUN_CONCURRENCY, DEFAULT_RETRY_POLICY, DEFAULT_STREAM_IDLE_TIMEOUT_MS, DEFAULT_SYNTHESIS_MAX_TURNS, DEFAULT_SYNTHESIS_NOTE_MAX_TURNS, DataKeyProvider, DebitResult, DeclaredLadder, DedupIndex, DedupNote, DedupedClaims, DerivedKey, DeriverRegistry, type DeterminismConfig, DeterminismError, type DeterminismEvents, type DeterminismMode, DispositionRule, DispositionTable, DonorCandidate, DonorRef, DroppedItem, EMIT_RESULT_TOOL, EMPTY_SCHEMA_HASH, EMPTY_TOOLSET_HASH, ESCALATE_TOOL_NAME, ESCALATION_REPORT_SCHEMA, ESCALATION_REQUEST_SCHEMA, EVENT_SEGMENT_STRIDE, EffectiveUsageLimits, Effort, Engine, EngineDefaults, EngineQuotaConfig, EngineQuotaRuntime, EntryKind, EntryRef, EntryStatus, EnvelopeEncryption, EnvelopeEncryptionOptions, ErrorClass, ErrorCode, ErrorPolicy, EscalatedResult, EscalationDecision, EscalationDecisionAbortedError, EscalationDigest, EscalationKind, EscalationLimits, EscalationOptions, EscalationReport, EscalationRequest, EventBus, type EvidenceRef, type ExecutorRegistry, type ExplorationSummary, ExtensionAppendInput, ExtensionDispatchSpec, ExternalIdentityInput, ExternalRegistry, ExtractNecessityInput, FINALIZE_SYNTHESIS_INSTRUCTION, FINISH_SCHEMA, FINISH_TOOL_NAME, FailRunError, FailoverTarget, FailoverTrigger, FallbackField, FallbackTrigger, FileModelKnowledgeStore, FileModelKnowledgeStoreOptions, FileTranscriptStore, FinishInfo, FinishValidationChild, FinishValidationInput, FinishValidationSpec, FinishValidationVerdict, FinishValidator, GET_CHILD_RESULT_SCHEMA, GET_CHILD_RESULT_TOOL_NAME, Gate, GateAudit, type GateRecord, GitWorktreeProvider, GitWorktreeProviderOptions, GraftBoot, HashVersion, HookVerdict, IMPLEMENTATION_PROFILE_LIMITS, INBOX_PROPOSAL_TTL_DAYS, IdentityInput, InMemoryStore, InMemoryTranscriptStore, InProcessRunner, IncrementalSynthesisResult, InvalidResolutionError, InvocationRole, type InvocationTable, InvoiceExport, InvoiceReconciliation, InvoiceRow, type IsolatedExecContext, type IsolatedExecRequest, type IsolatedExecutorTag, type IsolationProvider, type IsolationSpec, Issue$1 as Issue, JOURNAL_ENVELOPE_MARKER, JournalCompatSubCode, JournalCompatibilityError, JournalEntry, JournalMatcher, JournalMissError, JournalOperation, JournalOrderViolation, JournalSerializationContext, JournalSerializationHook, type JournalStore, type Json, JsonSchema, JsonlFileStore, KB_ACTIVE_CLAIMS_CAP, KB_CARD_RENDER_BUDGET_CHARS, type KbProposal, type KbProposalTrigger, KeyDeriver, KeyRing, KeyedLimiter, KnowledgeCasError, type KnowledgeSnapshot, LARGE_VALUE_WARN_BYTES, LEGACY_LTID_PREFIX, LEGACY_SIGNATURE_INPUTS, LINEAGE_SIG_VERSION, LadderSpec, type LeasableStore, type Lease, LeaseHeldError, Ledger, LineageCounters, LineageIndex, LineageRef, LineageRelation, LineageStats, LogicalTaskId, MASKED_SECRET, MAX_CHILD_RESULT_PAGE_CHARS, MAX_DEPTH_CEILING, MatchResult, McpConfig, McpToolSource, MechanicalGateProfile, MechanicalGateVerdict, MemoryQuotaLimiter, type MetaLookupStore, type ModelCaps, ModelChoice, type ModelClaim, ModelEpochInputs, type ModelKnowledgeHandle, type ModelKnowledgeStore, ModelListConstraint, ModelRef, ModelRetry, ModelSpec, Msg, NoProgressDetector, NodeId, NodeLinkValue, NonSerializableValueError, ORCHESTRATE_WORKFLOW_NAME, OnEscalation, OperationDisposition, OrchestrateAcceptance, OrchestrateOptions, OrchestrateSynthesis, OrchestratorBudgetSpec, OrchestratorCapConfigError, OrchestratorExtension, OrchestratorExtensionIO, OrchestratorRuntime, Out, PARALLEL_AGENTS_SCHEMA, PROGRESS_REPORT_TOOL_NAME, ParallelSiteCounter, Part, PendingExternal, PendingToolTurn, PermissionConfig, PermissionGate, PermissionHook, PermissionPreset, PermissionRule, PermissionVerdict, type PhaseRow, PhaseTarget, PipelineCollected, PipelineOpts, PlanInvariantError, PriceTable, PricedUsage, type Pricing, type PricingTier, ProgressReport, type ProviderAdapter, ProviderCallRecord, QUOTA_WINDOW_MS, QualityFloors, QuotaCounters, type QuotaDecision, type QuotaEstimate, type QuotaLimiter, type QuotaReservationRequest, QuotaRule, QuotaWindowSnapshot, READ_CHILD_ARTIFACT_SCHEMA, READ_CHILD_ARTIFACT_TOOL_NAME, RESEARCH_PROFILE_LIMITS, REVIEW_PROFILE_LIMITS, ROLE_EFFORT_DEFAULTS, ROOT_ACCOUNT, ROOT_SCOPE, RUN_PROFILES, RUN_SETTLE_DECISION_TYPE, RandIdentityInput, RandPayload, ReconcileOptions, ReconcileResult, RefEntryAppender, RefEntryClassification, RefusalInfo, RepeatedClaim, ReplayDisposition, ReplayMode, ReplayPlanHashMismatch, Replayer, RepositoryResearchToolset, RepositoryResearchToolsetOptions, ResearchAgentProfileOptions, ResearchAgentProfileResult, ResearchEvidenceEntry, ResolutionArbiter, ResolutionAttempt, ResolutionBy, ResolutionFold, ResolutionLayer, ResolutionOutcome, ResolutionPayload, ResolvedInvocation, ResolvedToolset, ResumeHandle, ResumeOptions, ResumePreview, ResumeReport, RetryClass, RetryPolicy, ReuseConfig, RiskRuleValue, Role, RulvarError, RulvarErrorCode, RunAgentOptions, RunAuditVerdict, RunBudget, RunEventSink, RunExport, type RunFilter, RunHandle, RunInternals, type RunMeta, RunOptions, RunOutcome, RunProfile, RunStateAudit, RunStatus, RuntimeEventSink, SANDBOX_AGENT_OPT_KEYS, SPAWN_AGENT_SCHEMA, SandboxBridge, SandboxBridgeOptions, SandboxError, SandboxHostToWorker, SandboxMethod, SandboxWorkerToHost, SchemaPair, SchemaSpec, SchemaValidationResult, ScopeSegment, ScriptRejected, ScriptRunner, ScrubNote, SecretMasker, Semaphore, SerializationHook, Settled, ShellPatternRules, ShellSegment, ShellVerdict, SinglePhaseAppend, SpanMinter, SpanRegistry, SpawnAdmissionValue, SpawnAgentParams, SpawnKey, SpawnLineage, SpawnLineageOpt, SpawnOrigin, SpawnRecord, Spend, Stage, type StandardJSONSchemaV1, type StandardSchemaV1, StepIdentityInput, StructuredOutputTier, SuspendedAppend, SuspensionState, TOOL_NAME_PATTERN, type TaskClass, TaskDigest, TaskSpec, TerminalPatch, TerminationAccount, TerminationAccountSnapshot, TerminationDeniedValue, TerminationDeniedWriter, TerminationInitValue, TerminationLimits, TerminationResource, ToolCallRequest, ToolChoice, type ToolContext, ToolContextSeed, ToolContract, type ToolDef, type ToolEvents, type ToolExecutor, type ToolExecutorProvider, ToolInit, type ToolRisk, ToolRuntime, type ToolSource, type ToolSourceSession, ToolsOption, TranscriptSerializationHook, type TranscriptStore, TriggerClass, TtlState, Usage, UsageLimits, UsageSlice, VerifiedRecommendation, WAIT_FOR_EVENTS_SCHEMA, WAIT_FOR_EVENTS_TOOL_NAME, WAKE_SUMMARY_RENDER_BUDGET_CHARS, WakeBudgetBlock, WakeDigest, WakeTrigger, WireError, Workflow, WorkflowCallOpts, type WorkflowEvent, type WorkflowEventBody, WorkflowRegistry, admissionReserveUsd, affordableOutputTokens, agentErrorFromWire, agentErrorToWire, agentResultWire, agentScope, applyClaimOps, applyStructuredOutputTier, approachSigCoarse, approachSigOf, archiveDeprecatedModelOps, assertFencedWrites, atCompactionThreshold, auditRun, auditRuns, buildAbandonFold, buildAdapterRegistry, buildCostReport, buildDeriverRegistry, buildOrchestratorTools, buildTerminationInitValue, buildToolContext, canRideLoopTurn, canonicalIsolationTag, canonicalizeLadder, canonicalizeSchema, capIssues, capsHashOf, checkFloors, checkpointRefFor, childCoveragePrefix, claimExpired, claimExpiry, claimIssues, claimOpIssues, classifyAgentError, classifyAttemptOutcome, collectDeclaredLadders, compactMessages, compilePermissionChain, compilePermissionPreset, compileSecretMasker, compileVerifiedLayer, constantTimeEqual, costReportFromJournal, countsAgainstLimit, createCanonicalIdMinter, createCtx, createEngine, createEnvelopeEncryption, createSandboxBridge, currentOnlyKeyRing, decodeCheckpoint, dedupeRepeatedClaims, defineWorkflow, deriveContentKey, deriverV1, deriverV2, digestOf, dispositionHook, emptyDigestBlocks, emptyToolset, encodeCheckpoint, entryUsageSlices, escalateTool, evaluatePermission, evaluateReuse, evidencePreservedValidator, executeWorkflow, exhaustionCodeOf, extractCandidate, failoverTriggerOf, fallbackTriggerOf, filterClaimsForRun, finalizeFires, foldTermination, formatRePrompt, formatScopePath, hasFencedWrites, hasMetaLookup, hashRunArgs, hashRunOutput, hashWorkflowBody, hashWorkflowSource, identityJcs, implementationAgentProfile, invoiceFromJournal, isEscalated, isSchemaPairSpec, isStandardSchemaSpec, isStrictCompatibleSchema, kMaxOf, knowledgeHash, ladderLengthOf, ladderRungChoice, lastRunSettle, latestProgressReport, lexShellCommand, liftRetainedParts, lineageWeightOf, localKeyProvider, makeOrchestratorWorkflow, maskSecrets, maskSecretsDeep, maskSecretsJson, matchArgvPattern, matchShellCommand, mcp, memoryQuotaLimiter, mergeQuotaDenial, mergeUsageLimits, metaMatchesFilter, minMatchesValidator, modelEpochOf, modelKnowledgeCard, modelSpecIdentity, needsSeparateExtract, nextFailover, nodeLinkKey, normalizeApproachTag, normalizeEntry, normalizeFallbacks, orchestrate, parallelScope, parseModelRef, parseScopePath, phiInitialOf, pipelineScope, planNodeScope, priceEntryUsage, priceUsdOf, profileCard, profileRegistrySnapshotHash, progressReportTool, projectHistory, projectIdentity, projectToJsonSchema, proposalStatement, providerOf, quotaActualTokens, quotaEstimateTokens, quotaRuleAdmission, quotaRuleMatches, readRunMeta, readTerminationInit, reconcileRunMeta, reduceAuditTrail, reduceCriticalPath, reduceInvocationTable, registryKeyRing, remeasureQueue, replayDisposition, repositoryResearchToolset, requiredFieldsValidator, requiredSectionsValidator, researchAgentProfile, resolveModelInvocation, resolvePricing, resolveToolset, retryClassOf, retryDelayMs, reviewAgentProfile, roleConfiguredInRouting, roundOneDisposition, runAgent, runProfile, sanitizeTerminalText, sanitizeTokenCount, sanitizeUsage, sanitizeUsageDelta, scanJournalCompatibility, schemaHash, schemaHashOfSpec, selectStructuredOutputTier, shouldCompact, snapshotUsage, spawnDepthOf, summarizeInstruction, summarizeOutput, terminationConfigDrift, tierWithinCaps, toApprovalDecision, toJournalValue, tool, toolContract, toolsetHash, ttlState, usageViolations, validateEditorialCommit, validateEngineQuotaConfig, validateEntryShape, validateEscalationLimits, validateEscalationReport, validateQuotaRules, validateRetryPolicy, validateSchemaSpec, validateTerminationLimits, validateUsageLimits, workflowScope, workflowSourceRef, wrapJournalStore, wrapTranscriptStore };
|
|
9056
|
+
export { AWAIT_SCHEMA, AbandonAttempt, AbandonFold, AbandonPayload, AbandonedSpendView, AbortClass, type AdaptiveEvents, AdmissionController, AdmissionDecision, AdmissionRejectedError, AdmissionStatsBefore, AdmitLineage, AdmitRejectReason, AdmitSpec, AdmitVerdict, AgentCallError, AgentError, type AgentEvents, AgentIdentityInput, type AgentInvocationRow, AgentOpts, AgentProfile, AgentProfilePermissions, AgentProfileTemplateOptions, AgentResult, AgentResultMeta, AgentStatus, ApproachSignatureInputs, ApprovalDecision, ApprovalIdentityInput, Artifact, AttemptOutcomeClass, AuditCategory, AuditRecord, AuditRunsOptions, BUDGET_ABORT_REASON, BaseAppend, BriefOpts, BudgetAccountView, BudgetDefaults, BudgetExhaustedError, BudgetExhaustionDiagnostics, BudgetHooks, BudgetReserve, type Bytes, CANCEL_AGENT_SCHEMA, CHECKPOINT_FORMAT_V1, CLAIM_STATEMENT_MAX_CHARS, CLAIM_TTL_DAYS, COMPACTION_SUMMARY_PREFIX, CURRENT_HASH_VERSION, CacheHint, CacheTtl, CanUseTool, CanonicalId, CanonicalIdentity, CanonicalLadderSpec, CanonicalModelSpec, ChatEvent, ChatRequest, CheckpointState, ChildArtifactPage, ChildIdentityInput, ChildResultPage, type ClaimClass, type ClaimOp, type ClaimStatus, ClaimValidationOptions, CollectOpts, CollectedTurn, CompactionConfig, CompiledPermissionChain, CompiledWorkflow, ConfigError, type CoreEvents, CostAttribution, CostAttributionFacts, CostReport, CreateEngineOptions, type CriticalPath, Ctx, DEFAULT_CHILD_BUDGET_FRACTION, DEFAULT_CHILD_RESULT_PAGE_CHARS, DEFAULT_CITATION_PATTERN, DEFAULT_COMPACTION_THRESHOLD, DEFAULT_ESCALATION_LIMITS, DEFAULT_EVIDENCE_MIN_SHARE, DEFAULT_FINISH_MAX_REPAIRS, DEFAULT_FLAT_RESERVE_USD, DEFAULT_MAX_CHILDREN_PER_NODE, DEFAULT_MAX_DEPTH, DEFAULT_MAX_OSCILLATIONS_PER_KEY, DEFAULT_MAX_PINNED_WORKTREES, DEFAULT_MAX_REVISIONS_PER_RUN, DEFAULT_MAX_TOTAL_SPAWNS, DEFAULT_MAX_TURNS, DEFAULT_MODEL_RETRY_ATTEMPTS, DEFAULT_NO_PROGRESS_TURNS, DEFAULT_PER_RUN_CONCURRENCY, DEFAULT_RETRY_POLICY, DEFAULT_STREAM_IDLE_TIMEOUT_MS, DEFAULT_SYNTHESIS_MAX_TURNS, DEFAULT_SYNTHESIS_NOTE_MAX_TURNS, DataKeyProvider, DebitResult, DeclaredLadder, DedupIndex, DedupNote, DedupedClaims, DerivedKey, DeriverRegistry, type DeterminismConfig, DeterminismError, type DeterminismEvents, type DeterminismMode, DispositionRule, DispositionTable, DonorCandidate, DonorRef, DroppedItem, EMIT_RESULT_TOOL, EMPTY_SCHEMA_HASH, EMPTY_TOOLSET_HASH, ESCALATE_TOOL_NAME, ESCALATION_REPORT_SCHEMA, ESCALATION_REQUEST_SCHEMA, EVENT_SEGMENT_STRIDE, EffectiveUsageLimits, Effort, Engine, EngineDefaults, EngineQuotaConfig, EngineQuotaRuntime, EntryKind, EntryRef, EntryStatus, EnvelopeEncryption, EnvelopeEncryptionOptions, ErrorClass, ErrorCode, ErrorPolicy, EscalatedResult, EscalationDecision, EscalationDecisionAbortedError, EscalationDigest, EscalationKind, EscalationLimits, EscalationOptions, EscalationReport, EscalationRequest, EventBus, type EvidenceRef, type ExecutorRegistry, type ExplorationSummary, ExtensionAppendInput, ExtensionDispatchSpec, ExternalIdentityInput, ExternalRegistry, ExtractNecessityInput, FINALIZE_SYNTHESIS_INSTRUCTION, FINISH_SCHEMA, FINISH_TOOL_NAME, FailRunError, FailoverTarget, FailoverTrigger, FallbackField, FallbackTrigger, FileModelKnowledgeStore, FileModelKnowledgeStoreOptions, FileTranscriptStore, FinishInfo, FinishValidationChild, FinishValidationInput, FinishValidationSpec, FinishValidationVerdict, FinishValidator, GET_CHILD_RESULT_SCHEMA, GET_CHILD_RESULT_TOOL_NAME, Gate, GateAudit, type GateRecord, GitWorktreeProvider, GitWorktreeProviderOptions, GraftBoot, HashVersion, HookVerdict, IMPLEMENTATION_PROFILE_LIMITS, INBOX_PROPOSAL_TTL_DAYS, IdentityInput, InMemoryStore, InMemoryTranscriptStore, InProcessRunner, IncrementalSynthesisResult, InvalidResolutionError, InvocationRole, type InvocationTable, InvoiceExport, InvoiceReconciliation, InvoiceRow, type IsolatedExecContext, type IsolatedExecRequest, type IsolatedExecutorTag, type IsolationProvider, type IsolationSpec, Issue$1 as Issue, JOURNAL_ENVELOPE_MARKER, JournalCompatSubCode, JournalCompatibilityError, JournalEntry, JournalMatcher, JournalMissError, JournalOperation, JournalOrderViolation, JournalSerializationContext, JournalSerializationHook, type JournalStore, type Json, JsonSchema, JsonlFileStore, KB_ACTIVE_CLAIMS_CAP, KB_CARD_RENDER_BUDGET_CHARS, type KbProposal, type KbProposalTrigger, KeyDeriver, KeyRing, KeyedLimiter, KnowledgeCasError, type KnowledgeSnapshot, LARGE_VALUE_WARN_BYTES, LEGACY_LTID_PREFIX, LEGACY_SIGNATURE_INPUTS, LINEAGE_SIG_VERSION, LadderSpec, type LeasableStore, type Lease, LeaseHeldError, Ledger, LineageCounters, LineageIndex, LineageRef, LineageRelation, LineageStats, LogicalTaskId, MASKED_SECRET, MAX_CHILD_RESULT_PAGE_CHARS, MAX_DEPTH_CEILING, MatchResult, McpConfig, McpToolSource, MechanicalGateProfile, MechanicalGateVerdict, MemoryQuotaLimiter, type MetaLookupStore, type ModelCaps, ModelChoice, type ModelClaim, ModelEpochInputs, type ModelKnowledgeHandle, type ModelKnowledgeStore, ModelListConstraint, ModelRef, ModelRetry, ModelSpec, Msg, NoProgressDetector, NodeId, NodeLinkValue, NonSerializableValueError, ORCHESTRATE_WORKFLOW_NAME, OnEscalation, OperationDisposition, OrchestrateAcceptance, OrchestrateOptions, OrchestrateSynthesis, OrchestratorBudgetSpec, OrchestratorCapConfigError, OrchestratorExtension, OrchestratorExtensionIO, OrchestratorRuntime, Out, PARALLEL_AGENTS_SCHEMA, PROGRESS_REPORT_TOOL_NAME, ParallelSiteCounter, Part, PendingExternal, PendingToolTurn, PermissionConfig, PermissionGate, PermissionHook, PermissionPreset, PermissionRule, PermissionVerdict, type PhaseRow, PhaseTarget, PipelineCollected, PipelineOpts, PlanInvariantError, PreflightAdmissionRow, PreflightFinding, PreflightInput, PreflightOrchestratorSpec, PreflightReport, PreflightSpawnReport, PreflightSpawnSpec, PreflightToolCeiling, PriceTable, PricedUsage, type Pricing, type PricingTier, ProgressReport, type ProviderAdapter, ProviderCallRecord, QUOTA_WINDOW_MS, QualityFloors, QuotaCounters, type QuotaDecision, type QuotaEstimate, type QuotaLimiter, type QuotaReservationRequest, QuotaRule, QuotaWindowSnapshot, READ_CHILD_ARTIFACT_SCHEMA, READ_CHILD_ARTIFACT_TOOL_NAME, RESEARCH_PROFILE_LIMITS, REVIEW_PROFILE_LIMITS, ROLE_EFFORT_DEFAULTS, ROOT_ACCOUNT, ROOT_SCOPE, RUN_PROFILES, RUN_SETTLE_DECISION_TYPE, RandIdentityInput, RandPayload, ReconcileOptions, ReconcileResult, RefEntryAppender, RefEntryClassification, RefusalInfo, RepeatedClaim, ReplayDisposition, ReplayMode, ReplayPlanHashMismatch, Replayer, RepositoryResearchToolset, RepositoryResearchToolsetOptions, ResearchAgentProfileOptions, ResearchAgentProfileResult, ResearchEvidenceEntry, ResolutionArbiter, ResolutionAttempt, ResolutionBy, ResolutionFold, ResolutionLayer, ResolutionOutcome, ResolutionPayload, ResolvedInvocation, ResolvedToolset, ResumeHandle, ResumeOptions, ResumePreview, ResumeReport, RetryClass, RetryPolicy, ReuseConfig, RiskRuleValue, Role, RulvarError, RulvarErrorCode, RunAgentOptions, RunAuditVerdict, RunBudget, RunEventSink, RunExport, type RunFilter, RunHandle, RunInternals, type RunMeta, RunOptions, RunOutcome, RunProfile, RunStateAudit, RunStatus, RuntimeEventSink, SANDBOX_AGENT_OPT_KEYS, SPAWN_AGENT_SCHEMA, SandboxBridge, SandboxBridgeOptions, SandboxError, SandboxHostToWorker, SandboxMethod, SandboxWorkerToHost, SchemaPair, SchemaSpec, SchemaValidationResult, ScopeSegment, ScriptRejected, ScriptRunner, ScrubNote, SecretMasker, Semaphore, SerializationHook, Settled, SettlementError, ShellPatternRules, ShellSegment, ShellVerdict, SinglePhaseAppend, SpanMinter, SpanRegistry, SpawnAdmissionValue, SpawnAgentParams, SpawnKey, SpawnLineage, SpawnLineageOpt, SpawnOrigin, SpawnRecord, Spend, Stage, type StandardJSONSchemaV1, type StandardSchemaV1, StepIdentityInput, StructuredOutputTier, SuspendedAppend, SuspensionState, TOOL_NAME_PATTERN, type TaskClass, TaskDigest, TaskSpec, TerminalPatch, TerminationAccount, TerminationAccountSnapshot, TerminationDeniedValue, TerminationDeniedWriter, TerminationInitValue, TerminationLimits, TerminationResource, ToolCallRequest, ToolChoice, type ToolContext, ToolContextSeed, ToolContract, type ToolDef, type ToolEvents, type ToolExecutor, type ToolExecutorProvider, ToolInit, type ToolRisk, ToolRuntime, type ToolSource, type ToolSourceSession, ToolsOption, TranscriptSerializationHook, type TranscriptStore, TriggerClass, TtlState, Usage, UsageLimits, UsageSlice, VerifiedRecommendation, WAIT_FOR_EVENTS_SCHEMA, WAIT_FOR_EVENTS_TOOL_NAME, WAKE_SUMMARY_RENDER_BUDGET_CHARS, WakeBudgetBlock, WakeDigest, WakeTrigger, WireError, Workflow, WorkflowCallOpts, type WorkflowEvent, type WorkflowEventBody, WorkflowRegistry, admissionReserveUsd, affordableOutputTokens, agentErrorFromWire, agentErrorToWire, agentResultWire, agentScope, applyClaimOps, applyStructuredOutputTier, approachSigCoarse, approachSigOf, archiveDeprecatedModelOps, assertFencedWrites, atCompactionThreshold, auditRun, auditRuns, buildAbandonFold, buildAdapterRegistry, buildCostReport, buildDeriverRegistry, buildOrchestratorTools, buildTerminationInitValue, buildToolContext, canRideLoopTurn, canonicalIsolationTag, canonicalizeLadder, canonicalizeSchema, capIssues, capsHashOf, checkFloors, checkpointRefFor, childCoveragePrefix, claimExpired, claimExpiry, claimIssues, claimOpIssues, classifyAgentError, classifyAttemptOutcome, collectDeclaredLadders, compactMessages, compilePermissionChain, compilePermissionPreset, compileSecretMasker, compileVerifiedLayer, constantTimeEqual, costReportFromJournal, countsAgainstLimit, createCanonicalIdMinter, createCtx, createEngine, createEnvelopeEncryption, createSandboxBridge, currentOnlyKeyRing, decodeCheckpoint, dedupeRepeatedClaims, defineWorkflow, deriveContentKey, deriverV1, deriverV2, digestOf, dispositionHook, emptyDigestBlocks, emptyToolset, encodeCheckpoint, entryUsageSlices, escalateTool, evaluatePermission, evaluateReuse, evidencePreservedValidator, executeWorkflow, exhaustionCodeOf, extractCandidate, failoverTriggerOf, fallbackTriggerOf, filterClaimsForRun, finalizeFires, foldTermination, formatRePrompt, formatScopePath, hasFencedWrites, hasMetaLookup, hashRunArgs, hashRunOutput, hashWorkflowBody, hashWorkflowSource, identityJcs, implementationAgentProfile, invoiceFromJournal, isEscalated, isSchemaPairSpec, isStandardSchemaSpec, isStrictCompatibleSchema, kMaxOf, knowledgeHash, ladderLengthOf, ladderRungChoice, lastRunSettle, latestProgressReport, lexShellCommand, liftRetainedParts, lineageWeightOf, localKeyProvider, makeOrchestratorWorkflow, maskSecrets, maskSecretsDeep, maskSecretsJson, matchArgvPattern, matchShellCommand, mcp, memoryQuotaLimiter, mergeQuotaDenial, mergeUsageLimits, metaMatchesFilter, minMatchesValidator, modelEpochOf, modelKnowledgeCard, modelSpecIdentity, needsSeparateExtract, nextFailover, nodeLinkKey, normalizeApproachTag, normalizeEntry, normalizeFallbacks, orchestrate, parallelScope, parseModelRef, parseScopePath, phiInitialOf, pipelineScope, planNodeScope, preflightEstimate, priceEntryUsage, priceUsdOf, profileCard, profileRegistrySnapshotHash, progressReportTool, projectHistory, projectIdentity, projectToJsonSchema, proposalStatement, providerOf, quotaActualTokens, quotaEstimateTokens, quotaRuleAdmission, quotaRuleMatches, readRunMeta, readTerminationInit, reconcileRunMeta, reduceAuditTrail, reduceCriticalPath, reduceInvocationTable, registryKeyRing, remeasureQueue, replayDisposition, repositoryResearchToolset, requiredFieldsValidator, requiredSectionsValidator, researchAgentProfile, resolveModelInvocation, resolvePricing, resolveToolset, retryClassOf, retryDelayMs, reviewAgentProfile, roleConfiguredInRouting, roundOneDisposition, runAgent, runProfile, sanitizeTerminalText, sanitizeTokenCount, sanitizeUsage, sanitizeUsageDelta, scanJournalCompatibility, schemaHash, schemaHashOfSpec, selectStructuredOutputTier, shouldCompact, snapshotUsage, spawnDepthOf, summarizeInstruction, summarizeOutput, terminationConfigDrift, tierWithinCaps, toApprovalDecision, toJournalValue, tool, toolContract, toolsetHash, ttlState, usageViolations, validateEditorialCommit, validateEngineQuotaConfig, validateEntryShape, validateEscalationLimits, validateEscalationReport, validateQuotaRules, validateRetryPolicy, validateSchemaSpec, validateTerminationLimits, validateUsageLimits, workflowScope, workflowSourceRef, wrapJournalStore, wrapTranscriptStore };
|