automation-lib 4.9.113 → 4.9.115
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 +9 -9
- package/dist/index.d.ts +9 -9
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1118,7 +1118,7 @@ interface IAccountHistory {
|
|
|
1118
1118
|
social2Fa: string;
|
|
1119
1119
|
fullName: string;
|
|
1120
1120
|
}
|
|
1121
|
-
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1121
|
+
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1122
1122
|
account_avatar: string;
|
|
1123
1123
|
account_cover: string;
|
|
1124
1124
|
account_sheetUrl: string;
|
|
@@ -1152,14 +1152,14 @@ interface IManagerImageAIUserAttached extends BoInterfaceModelsCommon.IBaseModel
|
|
|
1152
1152
|
accountSocial: string | IAccount;
|
|
1153
1153
|
}
|
|
1154
1154
|
|
|
1155
|
-
interface IFile extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1155
|
+
interface IFile extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1156
|
+
name: string;
|
|
1157
|
+
path: string;
|
|
1158
|
+
size: number;
|
|
1159
|
+
type: string;
|
|
1160
|
+
md5: string;
|
|
1161
|
+
url: string;
|
|
1162
|
+
isDraft: boolean;
|
|
1163
1163
|
}
|
|
1164
1164
|
|
|
1165
1165
|
type index$6_IFile = IFile;
|
package/dist/index.d.ts
CHANGED
|
@@ -1118,7 +1118,7 @@ interface IAccountHistory {
|
|
|
1118
1118
|
social2Fa: string;
|
|
1119
1119
|
fullName: string;
|
|
1120
1120
|
}
|
|
1121
|
-
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1121
|
+
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1122
1122
|
account_avatar: string;
|
|
1123
1123
|
account_cover: string;
|
|
1124
1124
|
account_sheetUrl: string;
|
|
@@ -1152,14 +1152,14 @@ interface IManagerImageAIUserAttached extends BoInterfaceModelsCommon.IBaseModel
|
|
|
1152
1152
|
accountSocial: string | IAccount;
|
|
1153
1153
|
}
|
|
1154
1154
|
|
|
1155
|
-
interface IFile extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1155
|
+
interface IFile extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1156
|
+
name: string;
|
|
1157
|
+
path: string;
|
|
1158
|
+
size: number;
|
|
1159
|
+
type: string;
|
|
1160
|
+
md5: string;
|
|
1161
|
+
url: string;
|
|
1162
|
+
isDraft: boolean;
|
|
1163
1163
|
}
|
|
1164
1164
|
|
|
1165
1165
|
type index$6_IFile = IFile;
|