automation-lib 6.6.555 → 6.6.556
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 +1 -14
- package/dist/index.d.ts +1 -14
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -14340,23 +14340,10 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
14340
14340
|
}>;
|
|
14341
14341
|
}
|
|
14342
14342
|
|
|
14343
|
-
interface
|
|
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 {
|
|
14343
|
+
interface IBlogComment extends IBaseModel, ITrackingModel {
|
|
14355
14344
|
post: string | IBlogPost;
|
|
14356
14345
|
parent: string | IBlogPost;
|
|
14357
14346
|
content: string;
|
|
14358
|
-
createdBy: string | IUser | ICustomer;
|
|
14359
|
-
updatedBy: string | IUser | ICustomer;
|
|
14360
14347
|
}
|
|
14361
14348
|
|
|
14362
14349
|
interface IBlogViewHistory extends IBaseModel, ITrackingModel {
|
package/dist/index.d.ts
CHANGED
|
@@ -14340,23 +14340,10 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
14340
14340
|
}>;
|
|
14341
14341
|
}
|
|
14342
14342
|
|
|
14343
|
-
interface
|
|
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 {
|
|
14343
|
+
interface IBlogComment extends IBaseModel, ITrackingModel {
|
|
14355
14344
|
post: string | IBlogPost;
|
|
14356
14345
|
parent: string | IBlogPost;
|
|
14357
14346
|
content: string;
|
|
14358
|
-
createdBy: string | IUser | ICustomer;
|
|
14359
|
-
updatedBy: string | IUser | ICustomer;
|
|
14360
14347
|
}
|
|
14361
14348
|
|
|
14362
14349
|
interface IBlogViewHistory extends IBaseModel, ITrackingModel {
|