@retrivora-ai/rag-engine 2.2.6 → 2.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -57,11 +57,12 @@ export interface ChatWindowProps {
57
57
  onAddToCart?: (product: Product) => void;
58
58
  /** Optional custom API URL to send chat messages to */
59
59
  apiUrl?: string;
60
- /**
61
- * Base URL for Retrivora SDK history/feedback/sessions endpoints.
60
+ /** Base URL for Retrivora SDK history/feedback/sessions endpoints.
62
61
  * Defaults to '/api/retrivora'. Set this to match your catch-all route location.
63
62
  */
64
63
  retrivoraApiBase?: string;
64
+ /** Optional Retrivora license key override */
65
+ licenseKey?: string;
65
66
  /** Optional custom headers to send with the chat request */
66
67
  headers?: Record<string, string>;
67
68
  }
@@ -78,6 +79,8 @@ export interface ChatWidgetProps {
78
79
  * Defaults to '/api/retrivora'.
79
80
  */
80
81
  retrivoraApiBase?: string;
82
+ /** Optional Retrivora license key override */
83
+ licenseKey?: string;
81
84
  /** Optional custom headers to send with the chat request */
82
85
  headers?: Record<string, string>;
83
86
  }