automation-lib 5.1.171 → 5.1.173

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
@@ -62,6 +62,7 @@ declare const CONST_API_CONTROLLERS: {
62
62
  SETTING_INTERACT_STORIES: string;
63
63
  SETTING_INTERACT_REPLY_COMMENTS: string;
64
64
  SETTING_INTERACT_REPLY_MESSAGE: string;
65
+ SETTING_INTERACT_BLOCK_USER: string;
65
66
  };
66
67
  THREADS: {
67
68
  HISTORY_POST_NEWS: string;
@@ -3997,18 +3998,12 @@ interface IFindBaseDto {
3997
3998
  updatedByName: string;
3998
3999
  }
3999
4000
  interface IFilterBaseDto {
4000
- team: string;
4001
- leader: string;
4002
- department: string;
4003
- user: string;
4004
- createdBy: string;
4005
- updatedBy: string;
4006
- listTeams: string[];
4007
- listLeaders: string[];
4008
- listDepartments: string[];
4009
- listUsers: string[];
4010
- listCreatedBy: string[];
4011
- listUpdatedBy: string[];
4001
+ team: string | string[];
4002
+ leader: string | string[];
4003
+ department: string | string[];
4004
+ user: string | string[];
4005
+ createdBy: string | string[];
4006
+ updatedBy: string | string[];
4012
4007
  createdAt: [Date, Date];
4013
4008
  updatedAt: [Date, Date];
4014
4009
  }
@@ -7427,27 +7422,41 @@ interface FilterLarkDto extends IFilterBaseDto, Omit<ILark, TOmitFilterDto> {
7427
7422
 
7428
7423
  interface FindManagerWorkDto extends IFindBaseDto, IManagerWork {
7429
7424
  }
7430
- interface FilterManagerWorkDto extends IFilterBaseDto, Omit<IManagerWork, TOmitFilterDto> {
7425
+ interface FilterManagerWorkDto extends IFilterBaseDto {
7426
+ ideas: string[];
7427
+ niches: string[];
7428
+ subNiche: string[];
7429
+ type: ETypeManagerWorkClassify[];
7431
7430
  tags: string[];
7432
7431
  domains: string[];
7433
- like: string[];
7434
- love: string[];
7435
7432
  pin: string[];
7433
+ love: string[];
7434
+ like: string[];
7436
7435
  sheetWorks: string[];
7436
+ users: string[];
7437
+ status: EStatusActive[];
7437
7438
  }
7438
7439
 
7439
7440
  interface FindSheetWorkDto extends IFindBaseDto, ISheetWork {
7440
7441
  }
7441
- interface FilterSheetWorkDto extends IFilterBaseDto, Omit<ISheetWork, TOmitFilterDto> {
7442
- idea: string[];
7443
- niche: string[];
7442
+ interface FilterSheetWorkDto extends IFilterBaseDto {
7443
+ ideas: string[];
7444
+ niches: string[];
7444
7445
  subNiche: string[];
7445
- type: ETypeSheetWorkClassify;
7446
+ type: ETypeManagerWorkClassify[];
7447
+ tags: string[];
7448
+ domains: string[];
7449
+ pin: string[];
7450
+ love: string[];
7451
+ like: string[];
7452
+ sheetWorks: string[];
7453
+ users: string[];
7454
+ status: EStatusActive[];
7446
7455
  }
7447
7456
 
7448
7457
  interface FindSheetWorkManagerDto extends IFindBaseDto, ISheetWorkManager {
7449
7458
  }
7450
- interface FilterSheetWorkManagerDto extends IFilterBaseDto, Omit<ISheetWorkManager, TOmitFilterDto> {
7459
+ interface FilterSheetWorkManagerDto extends IFilterBaseDto {
7451
7460
  }
7452
7461
 
7453
7462
  type index_AddToDeviceAccountCHPlayICloudDto = AddToDeviceAccountCHPlayICloudDto;
package/dist/index.d.ts CHANGED
@@ -62,6 +62,7 @@ declare const CONST_API_CONTROLLERS: {
62
62
  SETTING_INTERACT_STORIES: string;
63
63
  SETTING_INTERACT_REPLY_COMMENTS: string;
64
64
  SETTING_INTERACT_REPLY_MESSAGE: string;
65
+ SETTING_INTERACT_BLOCK_USER: string;
65
66
  };
66
67
  THREADS: {
67
68
  HISTORY_POST_NEWS: string;
@@ -3997,18 +3998,12 @@ interface IFindBaseDto {
3997
3998
  updatedByName: string;
3998
3999
  }
3999
4000
  interface IFilterBaseDto {
4000
- team: string;
4001
- leader: string;
4002
- department: string;
4003
- user: string;
4004
- createdBy: string;
4005
- updatedBy: string;
4006
- listTeams: string[];
4007
- listLeaders: string[];
4008
- listDepartments: string[];
4009
- listUsers: string[];
4010
- listCreatedBy: string[];
4011
- listUpdatedBy: string[];
4001
+ team: string | string[];
4002
+ leader: string | string[];
4003
+ department: string | string[];
4004
+ user: string | string[];
4005
+ createdBy: string | string[];
4006
+ updatedBy: string | string[];
4012
4007
  createdAt: [Date, Date];
4013
4008
  updatedAt: [Date, Date];
4014
4009
  }
@@ -7427,27 +7422,41 @@ interface FilterLarkDto extends IFilterBaseDto, Omit<ILark, TOmitFilterDto> {
7427
7422
 
7428
7423
  interface FindManagerWorkDto extends IFindBaseDto, IManagerWork {
7429
7424
  }
7430
- interface FilterManagerWorkDto extends IFilterBaseDto, Omit<IManagerWork, TOmitFilterDto> {
7425
+ interface FilterManagerWorkDto extends IFilterBaseDto {
7426
+ ideas: string[];
7427
+ niches: string[];
7428
+ subNiche: string[];
7429
+ type: ETypeManagerWorkClassify[];
7431
7430
  tags: string[];
7432
7431
  domains: string[];
7433
- like: string[];
7434
- love: string[];
7435
7432
  pin: string[];
7433
+ love: string[];
7434
+ like: string[];
7436
7435
  sheetWorks: string[];
7436
+ users: string[];
7437
+ status: EStatusActive[];
7437
7438
  }
7438
7439
 
7439
7440
  interface FindSheetWorkDto extends IFindBaseDto, ISheetWork {
7440
7441
  }
7441
- interface FilterSheetWorkDto extends IFilterBaseDto, Omit<ISheetWork, TOmitFilterDto> {
7442
- idea: string[];
7443
- niche: string[];
7442
+ interface FilterSheetWorkDto extends IFilterBaseDto {
7443
+ ideas: string[];
7444
+ niches: string[];
7444
7445
  subNiche: string[];
7445
- type: ETypeSheetWorkClassify;
7446
+ type: ETypeManagerWorkClassify[];
7447
+ tags: string[];
7448
+ domains: string[];
7449
+ pin: string[];
7450
+ love: string[];
7451
+ like: string[];
7452
+ sheetWorks: string[];
7453
+ users: string[];
7454
+ status: EStatusActive[];
7446
7455
  }
7447
7456
 
7448
7457
  interface FindSheetWorkManagerDto extends IFindBaseDto, ISheetWorkManager {
7449
7458
  }
7450
- interface FilterSheetWorkManagerDto extends IFilterBaseDto, Omit<ISheetWorkManager, TOmitFilterDto> {
7459
+ interface FilterSheetWorkManagerDto extends IFilterBaseDto {
7451
7460
  }
7452
7461
 
7453
7462
  type index_AddToDeviceAccountCHPlayICloudDto = AddToDeviceAccountCHPlayICloudDto;
package/dist/index.js CHANGED
@@ -118,7 +118,8 @@ var CONST_API_CONTROLLERS = {
118
118
  SETTING_INTERACT_REELS: "instagram-setting-interact-reels",
119
119
  SETTING_INTERACT_STORIES: "instagram-setting-interact-stories",
120
120
  SETTING_INTERACT_REPLY_COMMENTS: "instagram-setting-interact-reply-comments",
121
- SETTING_INTERACT_REPLY_MESSAGE: "instagram-setting-interact-reply-message"
121
+ SETTING_INTERACT_REPLY_MESSAGE: "instagram-setting-interact-reply-message",
122
+ SETTING_INTERACT_BLOCK_USER: "instagram-setting-interact-block-user"
122
123
  },
123
124
  THREADS: {
124
125
  HISTORY_POST_NEWS: "threads-report-post-news",
package/dist/index.mjs CHANGED
@@ -83,7 +83,8 @@ var CONST_API_CONTROLLERS = {
83
83
  SETTING_INTERACT_REELS: "instagram-setting-interact-reels",
84
84
  SETTING_INTERACT_STORIES: "instagram-setting-interact-stories",
85
85
  SETTING_INTERACT_REPLY_COMMENTS: "instagram-setting-interact-reply-comments",
86
- SETTING_INTERACT_REPLY_MESSAGE: "instagram-setting-interact-reply-message"
86
+ SETTING_INTERACT_REPLY_MESSAGE: "instagram-setting-interact-reply-message",
87
+ SETTING_INTERACT_BLOCK_USER: "instagram-setting-interact-block-user"
87
88
  },
88
89
  THREADS: {
89
90
  HISTORY_POST_NEWS: "threads-report-post-news",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.1.171",
3
+ "version": "5.1.173",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",