/** * Applications Response Types * * Response types for application configuration operations. */ /** * Response to an application configuration request. */ export interface ApplicationConfigResponse { /** Unique identifier for the application */ id: string; /** Human-readable name of the application */ name: string; /** List of allowed origins for CORS */ allowedOrigins: string[]; /** Webhook URL for receiving events (optional) */ webhookUrl?: string; /** Vault contract address */ vaultContractAddress: string; }