/** * PEAC Protocol Extension Schemas (v0.11.3+ ZT Pack) * * Zero Trust extension schemas for use in ext[] with reverse-DNS keys. */ export { CredentialEventTypeSchema, CredentialRefSchema, CredentialEventSchema, CREDENTIAL_EVENT_EXTENSION_KEY, CREDENTIAL_EVENTS, validateCredentialEvent, } from './credential-event'; export type { CredentialEventType, CredentialEvent } from './credential-event'; export { ToolRegistrySchema, TOOL_REGISTRY_EXTENSION_KEY, validateToolRegistry, } from './tool-registry'; export type { ToolRegistry } from './tool-registry'; export { ControlActionTypeSchema, ControlTriggerSchema, ControlActionSchema, CONTROL_ACTION_EXTENSION_KEY, CONTROL_ACTIONS, CONTROL_TRIGGERS, validateControlAction, } from './control-action'; export type { ControlActionType, ControlTrigger, ControlAction } from './control-action'; export { CommitmentClassSchema, TreatySchema, TREATY_EXTENSION_KEY, COMMITMENT_CLASSES, validateTreaty, } from './treaty'; export type { CommitmentClass, Treaty } from './treaty'; export { stringToFingerprintRef, fingerprintRefToString, MAX_FINGERPRINT_REF_LENGTH, } from './fingerprint-ref'; export type { FingerprintRefObject } from './fingerprint-ref'; export { A2A_HANDOFF_EXTENSION_KEY, A2A_AGENT_CARD_OBSERVATION_TYPE, A2A_TASK_EVENT_TYPES, A2A_TASK_TYPE_URIS, A2A_HANDOFF_TYPE_URIS, A2A_TASK_EVENT_SCHEMAS, A2A_HANDOFF_ERROR_CODES, A2AAgentCardObservationSchema, A2ATaskObservationSchema, A2AHandoffSchema, validateA2AHandoff, } from './a2a-handoff'; export type { A2ATaskEvent, A2AAgentCardObservation, A2ATaskObservation, A2AHandoffPayload, A2AValidationError, A2AValidationResult, } from './a2a-handoff'; export { CLI_EXECUTION_EXTENSION_KEY, CLI_COMMAND_EXECUTION_TYPE, CLI_EXECUTION_ERROR_CODES, CLI_SCHEMA_LIMITS, CliExecutionSchema, validateCliExecution, } from './cli-execution'; export type { CliExecutionObservation, CliValidationError, CliValidationResult, } from './cli-execution'; export { LIFECYCLE_OBSERVATION_EXTENSION_KEY, LIFECYCLE_OBSERVATION_TYPE_URIS, LIFECYCLE_OBSERVATION_ERROR_CODES, FORBIDDEN_TOP_LEVEL_KEYS, LifecycleObservationSchema, validateLifecycleObservation, } from './lifecycle-observation'; export type { LifecycleEventKind, LifecycleObservation, LifecycleObservationTypeUri, LifecycleValidationError, LifecycleValidationResult, } from './lifecycle-observation'; export { PROVISIONING_LIFECYCLE_EXTENSION_KEY, PROVISIONING_LIFECYCLE_TYPE_URIS, PROVISIONING_LIFECYCLE_ERROR_CODES, ProvisioningLifecycleSchema, validateProvisioningLifecycle, } from './provisioning-lifecycle'; export type { ProvisioningEventKind, ProvisioningLifecycle, ProvisioningLifecycleTypeUri, ProvisioningLifecycleValidationError, ProvisioningLifecycleValidationResult, } from './provisioning-lifecycle'; export { AGENT_ACTION_EXTENSION_KEY, AGENT_ACTION_TYPE_URIS, AGENT_ACTION_ERROR_CODES, AGENT_ACTION_FORBIDDEN_TOP_LEVEL_KEYS, AgentActionSchema, validateAgentAction, validateAgentActionForType, } from './agent-action'; export type { AgentActionEventKind, AgentAction, AgentActionTypeUri, AgentActionValidationError, AgentActionValidationResult, } from './agent-action'; export { COMMERCE_MANDATE_EXTENSION_KEY, COMMERCE_MANDATE_TYPE_URIS, COMMERCE_MANDATE_ERROR_CODES, COMMERCE_MANDATE_FORBIDDEN_PAYMENT_DATA_KEYS, CommerceMandateSchema, validateCommerceMandate, validateCommerceMandateForType, } from './commerce-mandate'; export type { CommerceMandateEventKind, CommerceMandate, CommerceMandateTypeUri, CommerceMandateValidationError, CommerceMandateValidationResult, } from './commerce-mandate'; export { GATEWAY_EXPORT_EXTENSION_KEY, GATEWAY_EXPORT_TYPE_URIS, GATEWAY_EXPORT_ERROR_CODES, GATEWAY_EXPORT_FORBIDDEN_PAYMENT_DATA_KEYS, GatewayExportSchema, validateGatewayExport, validateGatewayExportForType, } from './gateway-export'; export type { GatewayExportEventKind, GatewayExport, GatewayExportTypeUri, GatewayExportValidationError, GatewayExportValidationResult, } from './gateway-export'; //# sourceMappingURL=index.d.ts.map