automation-lib 6.6.553 → 6.6.555
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 +14 -1
- package/dist/index.d.ts +14 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -14340,10 +14340,23 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
14340
14340
|
}>;
|
|
14341
14341
|
}
|
|
14342
14342
|
|
|
14343
|
-
interface
|
|
14343
|
+
interface ICustomer extends IBaseModel, ITrackingModel {
|
|
14344
|
+
user_avatar: string;
|
|
14345
|
+
user_fullName: string;
|
|
14346
|
+
user_email: string;
|
|
14347
|
+
user_phone: string;
|
|
14348
|
+
user_password: string;
|
|
14349
|
+
user_gender: EGender;
|
|
14350
|
+
user_address: string;
|
|
14351
|
+
user_status: EStatusUser;
|
|
14352
|
+
}
|
|
14353
|
+
|
|
14354
|
+
interface IBlogComment extends IBaseModel {
|
|
14344
14355
|
post: string | IBlogPost;
|
|
14345
14356
|
parent: string | IBlogPost;
|
|
14346
14357
|
content: string;
|
|
14358
|
+
createdBy: string | IUser | ICustomer;
|
|
14359
|
+
updatedBy: string | IUser | ICustomer;
|
|
14347
14360
|
}
|
|
14348
14361
|
|
|
14349
14362
|
interface IBlogViewHistory extends IBaseModel, ITrackingModel {
|
package/dist/index.d.ts
CHANGED
|
@@ -14340,10 +14340,23 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
14340
14340
|
}>;
|
|
14341
14341
|
}
|
|
14342
14342
|
|
|
14343
|
-
interface
|
|
14343
|
+
interface ICustomer extends IBaseModel, ITrackingModel {
|
|
14344
|
+
user_avatar: string;
|
|
14345
|
+
user_fullName: string;
|
|
14346
|
+
user_email: string;
|
|
14347
|
+
user_phone: string;
|
|
14348
|
+
user_password: string;
|
|
14349
|
+
user_gender: EGender;
|
|
14350
|
+
user_address: string;
|
|
14351
|
+
user_status: EStatusUser;
|
|
14352
|
+
}
|
|
14353
|
+
|
|
14354
|
+
interface IBlogComment extends IBaseModel {
|
|
14344
14355
|
post: string | IBlogPost;
|
|
14345
14356
|
parent: string | IBlogPost;
|
|
14346
14357
|
content: string;
|
|
14358
|
+
createdBy: string | IUser | ICustomer;
|
|
14359
|
+
updatedBy: string | IUser | ICustomer;
|
|
14347
14360
|
}
|
|
14348
14361
|
|
|
14349
14362
|
interface IBlogViewHistory extends IBaseModel, ITrackingModel {
|