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 +24 -8
- package/dist/index.d.ts +24 -8
- package/package.json +1 -1
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
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
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
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
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> {
|