/** Public event channel used by sibling extensions without a package import. */ export const DESKTOP_NOTIFY_EVENT = "desktop-notify:request" as const; /** The application name used by every desktop strategy and rich OSC payload. */ export const APP_NAME = "pi" as const; export const NOTIFY_ENV = { global: "PI_NOTIFICATIONS", desktop: "PI_NO_DESKTOP_NOTIFY", platform: "PI_NOTIFY_PLATFORM", osc99Rich: "PI_NOTIFY_OSC99_RICH", completion: "PI_NOTIFY_COMPLETION", error: "PI_NOTIFY_ERROR", tool: "PI_NOTIFY_TOOL", } as const; export const NOTIFY_FLAGS = { completion: "notify-completion", error: "notify-error", tool: "notify-tool", } as const;