@wix/auto_sdk_rich-content_ricos-conversations 1.0.6 → 1.0.7

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.
@@ -1920,7 +1920,17 @@ interface File {
1920
1920
  * File id. Must be uploaded file to media manager. Read more - https://dev.wix.com/docs/api-reference/assets/media/media-manager/introduction
1921
1921
  * @maxLength 2048
1922
1922
  */
1923
- fileId?: string;
1923
+ fileId?: string | null;
1924
+ /**
1925
+ * File URL. Reference to a file accessible via URL
1926
+ * @maxLength 2048
1927
+ */
1928
+ fileUrl?: string | null;
1929
+ /**
1930
+ * MIME type of the file (e.g., "image/png", "application/pdf")
1931
+ * @maxLength 100
1932
+ */
1933
+ mimeType?: string | null;
1924
1934
  }
1925
1935
  interface PromptConfiguration {
1926
1936
  /**