/** * Configuration settings for the Sparque connections. */ export interface SparqueConfig { // base url of the sparque wrapper server serverUrl: string; // sparque workspace name workspaceName: string; // sparque API name apiName: string; // sparque deployment configuration e.g. production config?: string; // id of channel where sparque product data are assigned to channelId?: string; // enabled features features: ('search' | 'suggestions' | 'recommendations')[]; // additional custom settings [key: string]: unknown; }