/** * @vorionsys/shared-constants - Domain Configuration * * Single source of truth for all Vorion ecosystem domains and URLs * Used across all products and sites for consistent linking * * @see https://vorion.org */ export declare const VORION_DOMAINS: { /** Main Vorion organization site */ readonly main: "https://vorion.org"; /** BASIS specification and documentation */ readonly basis: "https://basis.vorion.org"; /** CAR ID specification */ readonly carId: "https://carid.vorion.org"; /** ATSF (Agent Trust & Safety Framework) */ readonly atsf: "https://atsf.vorion.org"; /** Learning and educational resources (primary) */ readonly learn: "https://learn.vorion.org"; /** Kaizen - Interactive AI Learning Experience (mirrors learn) */ readonly kaizen: "https://kaizen.vorion.org"; }; /** * Domain aliases - maps alternate domains to primary * Used for domain detection and routing */ export declare const DOMAIN_ALIASES: { readonly 'kaizen.vorion.org': "learn.vorion.org"; }; export declare const AGENTANCHOR_DOMAINS: { /** Main Agent Anchor AI site */ readonly main: "https://agentanchorai.com"; /** Agent Anchor Trust - Trust verification and certification */ readonly trust: "https://trust.agentanchorai.com"; /** Agent Anchor Logic - Policy engine and governance logic */ readonly logic: "https://logic.agentanchorai.com"; /** Status page */ readonly status: "https://status.agentanchorai.com"; /** Agent trust verification portal */ readonly verify: "https://verify.agentanchorai.com"; }; export declare const COGNIGATE_DOMAINS: { /** Cognigate main site and documentation */ readonly main: "https://cognigate.dev"; /** Cognigate API documentation */ readonly docs: "https://cognigate.dev/docs"; }; export declare const API_ENDPOINTS: { /** Cognigate Production API */ readonly cognigate: { readonly production: "https://cognigate.dev/v1"; readonly staging: "https://staging.cognigate.dev/v1"; }; /** Agent Anchor AI Production API (served from the app host, not a dedicated api subdomain) */ readonly agentAnchor: { readonly production: "https://app.agentanchorai.com/api"; }; /** Trust Signal Dashboard API (served from the trust.vorion.org host) */ readonly trust: { readonly production: "https://trust.vorion.org/api"; }; /** Logic/Policy Playground API (served from the logic.vorion.org host) */ readonly logic: { readonly production: "https://logic.vorion.org/api"; }; }; export declare const VORION_EMAILS: { /** General inquiries */ readonly info: "info@vorion.org"; /** Security reports */ readonly security: "security@vorion.org"; /** Legal inquiries */ readonly legal: "legal@vorion.org"; /** Community and contributions */ readonly community: "community@vorion.org"; /** Contributing */ readonly contribute: "contribute@vorion.org"; }; export declare const AGENTANCHOR_EMAILS: { /** General support */ readonly support: "support@agentanchorai.com"; /** Sales inquiries */ readonly sales: "sales@agentanchorai.com"; /** Partner program */ readonly partners: "partners@agentanchorai.com"; /** API support */ readonly apiSupport: "api-support@agentanchorai.com"; /** Enterprise inquiries */ readonly enterprise: "enterprise@agentanchorai.com"; /** Compliance */ readonly compliance: "compliance@agentanchorai.com"; /** Team */ readonly team: "team@agentanchorai.com"; }; export declare const GITHUB: { /** Vorion organization */ readonly vorion: { readonly org: "https://github.com/vorionsys"; readonly mainRepo: "https://github.com/vorionsys"; }; /** Agent Anchor AI (if separate) */ readonly agentAnchor: { readonly org: "https://github.com/agentanchorai"; }; }; export declare const NPM_PACKAGES: { /** Open source packages (@vorionsys) */ readonly vorion: { readonly basis: "@vorionsys/basis"; readonly contracts: "@vorionsys/contracts"; readonly carSpec: "@vorionsys/car-spec"; readonly atsfCore: "@vorionsys/atsf-core"; readonly cognigate: "@vorionsys/cognigate"; readonly sharedConstants: "@vorionsys/shared-constants"; readonly council: "@vorionsys/council"; readonly a3i: "@vorionsys/a3i"; readonly aiGateway: "@vorionsys/ai-gateway"; readonly runtime: "@vorionsys/runtime"; readonly platformCore: "@vorionsys/platform-core"; readonly n8nNodesCognigate: "@vorionsys/n8n-nodes-cognigate"; }; /** Commercial packages (@agentanchor) */ readonly agentAnchor: { readonly sdk: "@agentanchor/sdk"; readonly trust: "@agentanchor/trust"; readonly logic: "@agentanchor/logic"; }; }; export declare const ALL_DOMAINS: { readonly vorion: { /** Main Vorion organization site */ readonly main: "https://vorion.org"; /** BASIS specification and documentation */ readonly basis: "https://basis.vorion.org"; /** CAR ID specification */ readonly carId: "https://carid.vorion.org"; /** ATSF (Agent Trust & Safety Framework) */ readonly atsf: "https://atsf.vorion.org"; /** Learning and educational resources (primary) */ readonly learn: "https://learn.vorion.org"; /** Kaizen - Interactive AI Learning Experience (mirrors learn) */ readonly kaizen: "https://kaizen.vorion.org"; }; readonly agentAnchor: { /** Main Agent Anchor AI site */ readonly main: "https://agentanchorai.com"; /** Agent Anchor Trust - Trust verification and certification */ readonly trust: "https://trust.agentanchorai.com"; /** Agent Anchor Logic - Policy engine and governance logic */ readonly logic: "https://logic.agentanchorai.com"; /** Status page */ readonly status: "https://status.agentanchorai.com"; /** Agent trust verification portal */ readonly verify: "https://verify.agentanchorai.com"; }; readonly cognigate: { /** Cognigate main site and documentation */ readonly main: "https://cognigate.dev"; /** Cognigate API documentation */ readonly docs: "https://cognigate.dev/docs"; }; readonly api: { /** Cognigate Production API */ readonly cognigate: { readonly production: "https://cognigate.dev/v1"; readonly staging: "https://staging.cognigate.dev/v1"; }; /** Agent Anchor AI Production API (served from the app host, not a dedicated api subdomain) */ readonly agentAnchor: { readonly production: "https://app.agentanchorai.com/api"; }; /** Trust Signal Dashboard API (served from the trust.vorion.org host) */ readonly trust: { readonly production: "https://trust.vorion.org/api"; }; /** Logic/Policy Playground API (served from the logic.vorion.org host) */ readonly logic: { readonly production: "https://logic.vorion.org/api"; }; }; readonly emails: { readonly vorion: { /** General inquiries */ readonly info: "info@vorion.org"; /** Security reports */ readonly security: "security@vorion.org"; /** Legal inquiries */ readonly legal: "legal@vorion.org"; /** Community and contributions */ readonly community: "community@vorion.org"; /** Contributing */ readonly contribute: "contribute@vorion.org"; }; readonly agentAnchor: { /** General support */ readonly support: "support@agentanchorai.com"; /** Sales inquiries */ readonly sales: "sales@agentanchorai.com"; /** Partner program */ readonly partners: "partners@agentanchorai.com"; /** API support */ readonly apiSupport: "api-support@agentanchorai.com"; /** Enterprise inquiries */ readonly enterprise: "enterprise@agentanchorai.com"; /** Compliance */ readonly compliance: "compliance@agentanchorai.com"; /** Team */ readonly team: "team@agentanchorai.com"; }; }; readonly github: { /** Vorion organization */ readonly vorion: { readonly org: "https://github.com/vorionsys"; readonly mainRepo: "https://github.com/vorionsys"; }; /** Agent Anchor AI (if separate) */ readonly agentAnchor: { readonly org: "https://github.com/agentanchorai"; }; }; readonly npm: { /** Open source packages (@vorionsys) */ readonly vorion: { readonly basis: "@vorionsys/basis"; readonly contracts: "@vorionsys/contracts"; readonly carSpec: "@vorionsys/car-spec"; readonly atsfCore: "@vorionsys/atsf-core"; readonly cognigate: "@vorionsys/cognigate"; readonly sharedConstants: "@vorionsys/shared-constants"; readonly council: "@vorionsys/council"; readonly a3i: "@vorionsys/a3i"; readonly aiGateway: "@vorionsys/ai-gateway"; readonly runtime: "@vorionsys/runtime"; readonly platformCore: "@vorionsys/platform-core"; readonly n8nNodesCognigate: "@vorionsys/n8n-nodes-cognigate"; }; /** Commercial packages (@agentanchor) */ readonly agentAnchor: { readonly sdk: "@agentanchor/sdk"; readonly trust: "@agentanchor/trust"; readonly logic: "@agentanchor/logic"; }; }; }; export type VorionDomain = keyof typeof VORION_DOMAINS; export type AgentAnchorDomain = keyof typeof AGENTANCHOR_DOMAINS; export type CognigateDomain = keyof typeof COGNIGATE_DOMAINS; //# sourceMappingURL=domains.d.ts.map