import type { ActiveOperationLease, AuthenticatedActivityRecord, ExternalWaitLease, InactivityEdgeKey, LifecycleSubscriptionRecord, LifecycleTriggerRecord, SubscriberRebindMigrationRecord, SupervisorAclState, SupervisorAuthorizationDecision, SupervisorAuthorizationRequest } from "./supervision.ts"; import { SUPERVISION_VECTOR_SCHEMA_VERSION, SUPERVISION_VECTORS_HASH } from "./boss-semantic-binding-constants.ts"; export { SUPERVISION_VECTOR_SCHEMA_VERSION, SUPERVISION_VECTORS_HASH, }; export declare const SUPERVISION_VECTOR_HASH_DOMAIN: "agent-intercom-core/orc-supervision-v1"; export declare const MANAGER_WORKER_SUBSCRIPTION_VECTOR: LifecycleSubscriptionRecord; export declare const BOSS_MANAGER_SUBSCRIPTION_VECTOR: LifecycleSubscriptionRecord; /** Persisted scheduler states that must fail closed at the subscription/store boundary. */ export declare const LIFECYCLE_SUBSCRIPTION_SCHEDULER_NEGATIVE_VECTORS: readonly { name: string; value: unknown; }[]; export declare const AUTHENTICATED_ACTIVITY_VECTOR: AuthenticatedActivityRecord; export declare const ACTIVE_OPERATION_LEASE_VECTOR: ActiveOperationLease; export declare const EXTERNAL_WAIT_LEASE_VECTOR: ExternalWaitLease; export declare const LIFECYCLE_TRIGGER_VECTOR: LifecycleTriggerRecord; export declare const INACTIVITY_EDGE_VECTORS: readonly InactivityEdgeKey[]; export declare const COMMITTED_REBIND_MIGRATION_VECTOR: SubscriberRebindMigrationRecord; export declare const BLOCKED_REBIND_MIGRATION_VECTOR: SubscriberRebindMigrationRecord; /** Fail-closed cases from the authoritative subscriber-rebind review. */ export declare const REBIND_MIGRATION_NEGATIVE_VECTORS: readonly { name: string; value: unknown; }[]; export declare const SUPERVISOR_ACL_STATE: SupervisorAclState; export interface SupervisorAclVector { name: string; request: SupervisorAuthorizationRequest; expected: SupervisorAuthorizationDecision; } export declare const SUPERVISOR_ACL_VECTORS: readonly SupervisorAclVector[]; export declare function stateForSupervisorAclVector(): SupervisorAclState; export declare const SUPERVISION_VECTOR_CORPUS: { readonly version: 1; readonly subscriptions: readonly [LifecycleSubscriptionRecord, LifecycleSubscriptionRecord]; readonly subscriptionSchedulerNegativeVectors: readonly { name: string; value: unknown; }[]; readonly activity: AuthenticatedActivityRecord; readonly operationLease: ActiveOperationLease; readonly externalWaitLease: ExternalWaitLease; readonly trigger: LifecycleTriggerRecord; readonly inactivityEdges: readonly InactivityEdgeKey[]; readonly rebindMigrations: readonly [SubscriberRebindMigrationRecord, SubscriberRebindMigrationRecord]; readonly aclState: SupervisorAclState; readonly aclVectors: readonly SupervisorAclVector[]; }; //# sourceMappingURL=supervision-vectors.d.ts.map