automation-lib 5.0.255 → 5.0.256

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
@@ -970,10 +970,13 @@ type TFilter = 'direct' | 'ref';
970
970
 
971
971
  type TCompare = '=' | 'LIKE' | 'LIKE_START' | 'LIKE_END' | 'ILIKE' | 'IN' | 'NOT IN' | '>' | '<' | '>=' | '<=' | '!=' | 'IS NULL' | 'IS NOT NULL' | 'BETWEEN' | 'NOT BETWEEN' | 'EXISTS' | 'NOT EXISTS' | 'FULLTEXT' | 'RAW';
972
972
 
973
+ type TPost = 'post' | 'reel' | 'story, story highlight' | 'product_square';
974
+
973
975
  type index$d_TCompare = TCompare;
974
976
  type index$d_TFilter = TFilter;
977
+ type index$d_TPost = TPost;
975
978
  declare namespace index$d {
976
- export type { index$d_TCompare as TCompare, index$d_TFilter as TFilter };
979
+ export type { index$d_TCompare as TCompare, index$d_TFilter as TFilter, index$d_TPost as TPost };
977
980
  }
978
981
 
979
982
  interface IBaseModel {
@@ -2949,7 +2952,7 @@ interface IThreadsSettingPost extends IBaseModel, ITrackingModel<IUser> {
2949
2952
  device: IDevice | string;
2950
2953
  account: IAccountSocialBase | string;
2951
2954
  listRunTimes: Array<{
2952
- typePost: string;
2955
+ typePost: TPost;
2953
2956
  listTimes: Array<string>;
2954
2957
  }>;
2955
2958
  dayOfWeeks: Array<string>;
@@ -3388,7 +3391,7 @@ interface IInstagramSettingPost extends IBaseModel, ITrackingModel<IUser> {
3388
3391
  device: IDevice | string;
3389
3392
  account: IAccountSocialBase | string;
3390
3393
  listRunTimes: Array<{
3391
- typePost: string;
3394
+ typePost: TPost;
3392
3395
  listTimes: Array<string>;
3393
3396
  }>;
3394
3397
  dayOfWeeks: Array<string>;
package/dist/index.d.ts CHANGED
@@ -970,10 +970,13 @@ type TFilter = 'direct' | 'ref';
970
970
 
971
971
  type TCompare = '=' | 'LIKE' | 'LIKE_START' | 'LIKE_END' | 'ILIKE' | 'IN' | 'NOT IN' | '>' | '<' | '>=' | '<=' | '!=' | 'IS NULL' | 'IS NOT NULL' | 'BETWEEN' | 'NOT BETWEEN' | 'EXISTS' | 'NOT EXISTS' | 'FULLTEXT' | 'RAW';
972
972
 
973
+ type TPost = 'post' | 'reel' | 'story, story highlight' | 'product_square';
974
+
973
975
  type index$d_TCompare = TCompare;
974
976
  type index$d_TFilter = TFilter;
977
+ type index$d_TPost = TPost;
975
978
  declare namespace index$d {
976
- export type { index$d_TCompare as TCompare, index$d_TFilter as TFilter };
979
+ export type { index$d_TCompare as TCompare, index$d_TFilter as TFilter, index$d_TPost as TPost };
977
980
  }
978
981
 
979
982
  interface IBaseModel {
@@ -2949,7 +2952,7 @@ interface IThreadsSettingPost extends IBaseModel, ITrackingModel<IUser> {
2949
2952
  device: IDevice | string;
2950
2953
  account: IAccountSocialBase | string;
2951
2954
  listRunTimes: Array<{
2952
- typePost: string;
2955
+ typePost: TPost;
2953
2956
  listTimes: Array<string>;
2954
2957
  }>;
2955
2958
  dayOfWeeks: Array<string>;
@@ -3388,7 +3391,7 @@ interface IInstagramSettingPost extends IBaseModel, ITrackingModel<IUser> {
3388
3391
  device: IDevice | string;
3389
3392
  account: IAccountSocialBase | string;
3390
3393
  listRunTimes: Array<{
3391
- typePost: string;
3394
+ typePost: TPost;
3392
3395
  listTimes: Array<string>;
3393
3396
  }>;
3394
3397
  dayOfWeeks: Array<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.0.255",
3
+ "version": "5.0.256",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",