automation-lib 6.6.552 → 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 CHANGED
@@ -14340,10 +14340,23 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
14340
14340
  }>;
14341
14341
  }
14342
14342
 
14343
- interface IBlogComment extends IBaseModel, ITrackingModel {
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 {
@@ -18247,8 +18260,6 @@ interface FindOverviewDraftManualContentInstagramDto {
18247
18260
  totalNewDaily: number;
18248
18261
  totalNewMonthly: number;
18249
18262
  totalGroup: number;
18250
- totalHasGroup: number;
18251
- totalNoGroup: number;
18252
18263
  statusSyncPosts: {
18253
18264
  [EDraftManualContentInstagramStatusSyncPost.DraftSync]: number;
18254
18265
  [EDraftManualContentInstagramStatusSyncPost.DoneSync]: number;
package/dist/index.d.ts CHANGED
@@ -14340,10 +14340,23 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
14340
14340
  }>;
14341
14341
  }
14342
14342
 
14343
- interface IBlogComment extends IBaseModel, ITrackingModel {
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 {
@@ -18247,8 +18260,6 @@ interface FindOverviewDraftManualContentInstagramDto {
18247
18260
  totalNewDaily: number;
18248
18261
  totalNewMonthly: number;
18249
18262
  totalGroup: number;
18250
- totalHasGroup: number;
18251
- totalNoGroup: number;
18252
18263
  statusSyncPosts: {
18253
18264
  [EDraftManualContentInstagramStatusSyncPost.DraftSync]: number;
18254
18265
  [EDraftManualContentInstagramStatusSyncPost.DoneSync]: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.552",
3
+ "version": "6.6.555",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",