@ibiz-template-plugin/ai-chat 0.0.61 → 0.0.62

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.
@@ -16,5 +16,5 @@ export declare class FileHelper extends MaterialHelper {
16
16
  * @param file
17
17
  * @returns
18
18
  */
19
- buildMaterialObject(folder: string, file: File): IMaterial;
19
+ buildMaterialObject(folder: string | undefined, file: File): IMaterial;
20
20
  }
@@ -9,7 +9,7 @@
9
9
  */
10
10
  export interface FileUploaderOptions<T> {
11
11
  /** 文件上传目录 */
12
- folder: string;
12
+ folder: string | undefined;
13
13
  /** 是否启用全局下载文件前缀 */
14
14
  globalDownloadPrifix: boolean;
15
15
  /** 允许的文件类型 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz-template-plugin/ai-chat",
3
- "version": "0.0.61",
3
+ "version": "0.0.62",
4
4
  "description": "iBiz AI交互框插件",
5
5
  "type": "module",
6
6
  "main": "dist/index.es.js",