automation-lib 5.0.117 → 5.0.118
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1273,8 +1273,8 @@ interface IBaseModel {
|
|
|
1273
1273
|
interface ITrackingModel<T> {
|
|
1274
1274
|
createdBy: T | string;
|
|
1275
1275
|
updatedBy?: T | string;
|
|
1276
|
-
team
|
|
1277
|
-
department
|
|
1276
|
+
team?: ITeam | string;
|
|
1277
|
+
department?: IDepartment | string;
|
|
1278
1278
|
}
|
|
1279
1279
|
|
|
1280
1280
|
interface IFile extends IBaseModel, ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -1273,8 +1273,8 @@ interface IBaseModel {
|
|
|
1273
1273
|
interface ITrackingModel<T> {
|
|
1274
1274
|
createdBy: T | string;
|
|
1275
1275
|
updatedBy?: T | string;
|
|
1276
|
-
team
|
|
1277
|
-
department
|
|
1276
|
+
team?: ITeam | string;
|
|
1277
|
+
department?: IDepartment | string;
|
|
1278
1278
|
}
|
|
1279
1279
|
|
|
1280
1280
|
interface IFile extends IBaseModel, ITrackingModel<IUser> {
|