automation-lib 5.4.220 → 5.4.223

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
@@ -7205,11 +7205,9 @@ interface CreateInstagramSettingPostDto {
7205
7205
  timezone: ETimeZone;
7206
7206
  dayOfWeeks: EDayOfWeek[];
7207
7207
  listRunTimes: Array<{
7208
- typePost: EPostType;
7209
7208
  timeFrom: string;
7210
7209
  timeTo: string;
7211
- isAddAILabel: boolean;
7212
- isSchedule: boolean;
7210
+ featureAdvance: ISettingRunTimeInstagramPost;
7213
7211
  }>;
7214
7212
  delayTimeCommentFrom: number;
7215
7213
  delayTimeCommentTo: number;
@@ -7293,7 +7291,7 @@ interface FindInstagramSettingPostDto extends IFindBaseDto {
7293
7291
  timeCopySetting: Date;
7294
7292
  isStart: boolean;
7295
7293
  dayOfWeeks: Array<EDayOfWeek>;
7296
- listRunTimes: Array<ISettingRunTimeSocial>;
7294
+ listRunTimes: Array<ISettingRunTimeSocial<ISettingRunTimeInstagramPost>>;
7297
7295
  listScriptsInteract: Array<any>;
7298
7296
  numberCommentsForPostMeFrom: number;
7299
7297
  numberCommentsForPostMeTo: number;
@@ -11259,6 +11257,7 @@ interface IInstagramSettingPost extends IBaseModel, ITrackingModel<IUser> {
11259
11257
  delayTimeCommentTo: number;
11260
11258
  }
11261
11259
  interface ISettingRunTimeInstagramPost {
11260
+ typePost: EPostType;
11262
11261
  isAddAILabel: boolean;
11263
11262
  isSchedule: boolean;
11264
11263
  }
@@ -14339,11 +14338,11 @@ interface IIncreaseValueTask extends IBaseModel {
14339
14338
  maxIncrease: number;
14340
14339
  }
14341
14340
 
14342
- interface ISettingRunTimeSocial extends IBaseModel {
14341
+ interface ISettingRunTimeSocial<T = any> extends IBaseModel {
14343
14342
  settingId: string;
14344
14343
  timeFrom: string;
14345
14344
  timeTo: string;
14346
- featureAdvance: any;
14345
+ featureAdvance: T;
14347
14346
  }
14348
14347
 
14349
14348
  type index$4_EStatusImport = EStatusImport;
@@ -14404,7 +14403,7 @@ type index$4_IInstagramSettingInteractReplyMessage = IInstagramSettingInteractRe
14404
14403
  type index$4_IInstagramSettingInteractUnFollow = IInstagramSettingInteractUnFollow;
14405
14404
  type index$4_IInstagramSettingPost = IInstagramSettingPost;
14406
14405
  type index$4_ISettingRunTimeInstagramPost = ISettingRunTimeInstagramPost;
14407
- type index$4_ISettingRunTimeSocial = ISettingRunTimeSocial;
14406
+ type index$4_ISettingRunTimeSocial<T = any> = ISettingRunTimeSocial<T>;
14408
14407
  type index$4_ISheetImportSocial = ISheetImportSocial;
14409
14408
  type index$4_ISocialTaskManager = ISocialTaskManager;
14410
14409
  type index$4_ITaskInstagramBlockUser = ITaskInstagramBlockUser;
@@ -14781,7 +14780,7 @@ type index$1_IProxy = IProxy;
14781
14780
  type index$1_IRole = IRole;
14782
14781
  type index$1_IRoleFeature = IRoleFeature;
14783
14782
  type index$1_ISettingRunTimeInstagramPost = ISettingRunTimeInstagramPost;
14784
- type index$1_ISettingRunTimeSocial = ISettingRunTimeSocial;
14783
+ type index$1_ISettingRunTimeSocial<T = any> = ISettingRunTimeSocial<T>;
14785
14784
  type index$1_ISheetImportSocial = ISheetImportSocial;
14786
14785
  type index$1_ISheetWork = ISheetWork;
14787
14786
  type index$1_ISheetWorkDepartmentPermission = ISheetWorkDepartmentPermission;
package/dist/index.d.ts CHANGED
@@ -7205,11 +7205,9 @@ interface CreateInstagramSettingPostDto {
7205
7205
  timezone: ETimeZone;
7206
7206
  dayOfWeeks: EDayOfWeek[];
7207
7207
  listRunTimes: Array<{
7208
- typePost: EPostType;
7209
7208
  timeFrom: string;
7210
7209
  timeTo: string;
7211
- isAddAILabel: boolean;
7212
- isSchedule: boolean;
7210
+ featureAdvance: ISettingRunTimeInstagramPost;
7213
7211
  }>;
7214
7212
  delayTimeCommentFrom: number;
7215
7213
  delayTimeCommentTo: number;
@@ -7293,7 +7291,7 @@ interface FindInstagramSettingPostDto extends IFindBaseDto {
7293
7291
  timeCopySetting: Date;
7294
7292
  isStart: boolean;
7295
7293
  dayOfWeeks: Array<EDayOfWeek>;
7296
- listRunTimes: Array<ISettingRunTimeSocial>;
7294
+ listRunTimes: Array<ISettingRunTimeSocial<ISettingRunTimeInstagramPost>>;
7297
7295
  listScriptsInteract: Array<any>;
7298
7296
  numberCommentsForPostMeFrom: number;
7299
7297
  numberCommentsForPostMeTo: number;
@@ -11259,6 +11257,7 @@ interface IInstagramSettingPost extends IBaseModel, ITrackingModel<IUser> {
11259
11257
  delayTimeCommentTo: number;
11260
11258
  }
11261
11259
  interface ISettingRunTimeInstagramPost {
11260
+ typePost: EPostType;
11262
11261
  isAddAILabel: boolean;
11263
11262
  isSchedule: boolean;
11264
11263
  }
@@ -14339,11 +14338,11 @@ interface IIncreaseValueTask extends IBaseModel {
14339
14338
  maxIncrease: number;
14340
14339
  }
14341
14340
 
14342
- interface ISettingRunTimeSocial extends IBaseModel {
14341
+ interface ISettingRunTimeSocial<T = any> extends IBaseModel {
14343
14342
  settingId: string;
14344
14343
  timeFrom: string;
14345
14344
  timeTo: string;
14346
- featureAdvance: any;
14345
+ featureAdvance: T;
14347
14346
  }
14348
14347
 
14349
14348
  type index$4_EStatusImport = EStatusImport;
@@ -14404,7 +14403,7 @@ type index$4_IInstagramSettingInteractReplyMessage = IInstagramSettingInteractRe
14404
14403
  type index$4_IInstagramSettingInteractUnFollow = IInstagramSettingInteractUnFollow;
14405
14404
  type index$4_IInstagramSettingPost = IInstagramSettingPost;
14406
14405
  type index$4_ISettingRunTimeInstagramPost = ISettingRunTimeInstagramPost;
14407
- type index$4_ISettingRunTimeSocial = ISettingRunTimeSocial;
14406
+ type index$4_ISettingRunTimeSocial<T = any> = ISettingRunTimeSocial<T>;
14408
14407
  type index$4_ISheetImportSocial = ISheetImportSocial;
14409
14408
  type index$4_ISocialTaskManager = ISocialTaskManager;
14410
14409
  type index$4_ITaskInstagramBlockUser = ITaskInstagramBlockUser;
@@ -14781,7 +14780,7 @@ type index$1_IProxy = IProxy;
14781
14780
  type index$1_IRole = IRole;
14782
14781
  type index$1_IRoleFeature = IRoleFeature;
14783
14782
  type index$1_ISettingRunTimeInstagramPost = ISettingRunTimeInstagramPost;
14784
- type index$1_ISettingRunTimeSocial = ISettingRunTimeSocial;
14783
+ type index$1_ISettingRunTimeSocial<T = any> = ISettingRunTimeSocial<T>;
14785
14784
  type index$1_ISheetImportSocial = ISheetImportSocial;
14786
14785
  type index$1_ISheetWork = ISheetWork;
14787
14786
  type index$1_ISheetWorkDepartmentPermission = ISheetWorkDepartmentPermission;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.4.220",
3
+ "version": "5.4.223",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",