automation-lib 5.4.352 → 5.4.353
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
|
@@ -2158,8 +2158,8 @@ interface IBaseModel {
|
|
|
2158
2158
|
version: number;
|
|
2159
2159
|
}
|
|
2160
2160
|
interface ITrackingModel {
|
|
2161
|
-
createdBy: IUser;
|
|
2162
|
-
updatedBy: IUser;
|
|
2161
|
+
createdBy: string | IUser;
|
|
2162
|
+
updatedBy: string | IUser;
|
|
2163
2163
|
}
|
|
2164
2164
|
interface IAssignUser {
|
|
2165
2165
|
timeLastUsed: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -2158,8 +2158,8 @@ interface IBaseModel {
|
|
|
2158
2158
|
version: number;
|
|
2159
2159
|
}
|
|
2160
2160
|
interface ITrackingModel {
|
|
2161
|
-
createdBy: IUser;
|
|
2162
|
-
updatedBy: IUser;
|
|
2161
|
+
createdBy: string | IUser;
|
|
2162
|
+
updatedBy: string | IUser;
|
|
2163
2163
|
}
|
|
2164
2164
|
interface IAssignUser {
|
|
2165
2165
|
timeLastUsed: Date;
|