automation-lib 4.9.109 → 4.9.110

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.
package/dist/index.d.mts CHANGED
@@ -1241,18 +1241,34 @@ interface IManagerImageAIUserAttached extends BoInterfaceModelsCommon.IBaseModel
1241
1241
  }
1242
1242
 
1243
1243
  interface IFile extends BoInterfaceModelsCommon$1.IBaseModel {
1244
- file_name: string;
1245
- file_path: string;
1246
- file_size: number;
1247
- file_type: string;
1248
- file_md5: string;
1249
- file_url: string;
1250
- file_isDraft: boolean;
1244
+ name: string;
1245
+ path: string;
1246
+ size: number;
1247
+ type: string;
1248
+ md5: string;
1249
+ url: string;
1250
+ isDraft: boolean;
1251
+ }
1252
+ interface IFileUploadSessionInfo extends BoInterfaceModelsCommon$1.IBaseModel {
1253
+ id: string;
1254
+ filename: string;
1255
+ originalFilename: string;
1256
+ tempDir: string;
1257
+ fileSize: number;
1258
+ md5: string;
1259
+ chunkSize: number;
1260
+ totalChunks: number;
1261
+ receivedChunks: Set<number>;
1262
+ createdAt: Date;
1263
+ lastActivity: Date;
1264
+ mimetype?: string;
1265
+ fileType: string;
1251
1266
  }
1252
1267
 
1253
1268
  type index$6_IFile = IFile;
1269
+ type index$6_IFileUploadSessionInfo = IFileUploadSessionInfo;
1254
1270
  declare namespace index$6 {
1255
- export type { index$6_IFile as IFile };
1271
+ export type { index$6_IFile as IFile, index$6_IFileUploadSessionInfo as IFileUploadSessionInfo };
1256
1272
  }
1257
1273
 
1258
1274
  interface IManagerImageAIItemStore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
package/dist/index.d.ts CHANGED
@@ -1241,18 +1241,34 @@ interface IManagerImageAIUserAttached extends BoInterfaceModelsCommon.IBaseModel
1241
1241
  }
1242
1242
 
1243
1243
  interface IFile extends BoInterfaceModelsCommon$1.IBaseModel {
1244
- file_name: string;
1245
- file_path: string;
1246
- file_size: number;
1247
- file_type: string;
1248
- file_md5: string;
1249
- file_url: string;
1250
- file_isDraft: boolean;
1244
+ name: string;
1245
+ path: string;
1246
+ size: number;
1247
+ type: string;
1248
+ md5: string;
1249
+ url: string;
1250
+ isDraft: boolean;
1251
+ }
1252
+ interface IFileUploadSessionInfo extends BoInterfaceModelsCommon$1.IBaseModel {
1253
+ id: string;
1254
+ filename: string;
1255
+ originalFilename: string;
1256
+ tempDir: string;
1257
+ fileSize: number;
1258
+ md5: string;
1259
+ chunkSize: number;
1260
+ totalChunks: number;
1261
+ receivedChunks: Set<number>;
1262
+ createdAt: Date;
1263
+ lastActivity: Date;
1264
+ mimetype?: string;
1265
+ fileType: string;
1251
1266
  }
1252
1267
 
1253
1268
  type index$6_IFile = IFile;
1269
+ type index$6_IFileUploadSessionInfo = IFileUploadSessionInfo;
1254
1270
  declare namespace index$6 {
1255
- export type { index$6_IFile as IFile };
1271
+ export type { index$6_IFile as IFile, index$6_IFileUploadSessionInfo as IFileUploadSessionInfo };
1256
1272
  }
1257
1273
 
1258
1274
  interface IManagerImageAIItemStore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "4.9.109",
3
+ "version": "4.9.110",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",