automation-lib 6.6.602 → 6.6.609

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/commit.bat CHANGED
@@ -1,50 +1,62 @@
1
- @echo off
2
-
3
- :: Add all changes to git
4
- git add .
5
-
6
- :: Commit changes with a message
7
- echo Committing changes...
8
- set /p commit_message="Enter commit message: "
9
- git commit -m "%commit_message%"
10
- sleep 2
11
-
12
- :: Push changes to the 'main' branch of the 'cp' remote
13
- git pull origin toan
14
-
15
- :: Read the current version from package.json
16
- for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
17
-
18
- :: Remove quotes from the version string
19
- set currentVersion=%currentVersion:"=%
20
-
21
- :: Split version into its components
22
- for /f "tokens=1,2,3 delims=." %%a in ("%currentVersion%") do (
23
- set major=%%a
24
- set minor=%%b
25
- set patch=%%c
26
- )
27
-
28
- :: Increment the patch version
29
- set /a patch+=1
30
-
31
- :: Create the new version string
32
- set newVersion=%major%.%minor%.%patch%
33
-
34
- :: Update the version in package.json
35
- powershell -Command "(Get-Content package.json) -replace '\"version\": \"%currentVersion%\"', '\"version\": \"%newVersion%\"' | Set-Content package.json"
36
-
37
- :: Display the new version
38
- echo New version: %newVersion%
39
-
40
- :: Run npm publish using call
41
- call npm run pub
42
-
43
- git add .
44
- sleep 1
45
- git commit -m "%commit_message%"
46
- sleep 2
47
-
48
- git push origin toan
49
-
50
-
1
+ @echo off
2
+ setlocal enabledelayedexpansion
3
+ chcp 65001 >nul
4
+
5
+ echo ===========================================
6
+ echo GIT AUTO PUSH - LIBRARY
7
+ echo ===========================================
8
+
9
+ set /p commit_message="Enter commit message: "
10
+ if "%commit_message%"=="" (
11
+ echo [LOI] Commit message khong duoc de trong!
12
+ pause
13
+ exit /b
14
+ )
15
+
16
+ :: GIT ADD & COMMIT
17
+ git add .
18
+ git commit -m "%commit_message%"
19
+ timeout /t 2 /nobreak >nul
20
+
21
+ :: ===========================================
22
+ :: PULL & PUSH HS (nhann6304 only)
23
+ :: ===========================================
24
+ echo.
25
+ echo --- Switch to nhann6304 for [hs] remote ---
26
+ gh auth switch --user nhann6304
27
+
28
+ echo --- Pull from hs main ---
29
+ git pull hs main
30
+
31
+ :: Version bump
32
+ for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
33
+ set currentVersion=%currentVersion:"=%
34
+ for /f "tokens=1,2,3 delims=." %%a in ("%currentVersion%") do (
35
+ set major=%%a
36
+ set minor=%%b
37
+ set patch=%%c
38
+ )
39
+ set /a patch+=1
40
+ set newVersion=%major%.%minor%.%patch%
41
+
42
+ powershell -Command "(Get-Content package.json) -replace '\"version\": \"%currentVersion%\"', '\"version\": \"%newVersion%\"' | Set-Content package.json"
43
+ echo New version: %newVersion%
44
+
45
+ :: Publish
46
+ call npm run pub
47
+
48
+ :: Commit version bump & push
49
+ git add .
50
+ timeout /t 1 /nobreak >nul
51
+ git commit -m "v%newVersion% - %commit_message%"
52
+ timeout /t 2 /nobreak >nul
53
+
54
+ echo --- Push to hs main ---
55
+ git push hs main && echo [OK] Push hs main xong. || echo [LOI] Push hs main that bai.
56
+
57
+ echo.
58
+ echo ===========================================
59
+ echo HOAN TAT! Version: %newVersion%
60
+ echo ===========================================
61
+ pause
62
+ endlocal
package/dist/index.d.mts CHANGED
@@ -2012,6 +2012,12 @@ interface UpdateUserDto extends Partial<IUser> {
2012
2012
  }
2013
2013
  interface FindUserDto extends IUser, IFindBaseDto {
2014
2014
  isLeader: boolean;
2015
+ /**
2016
+ * Vị trí (derived) — precedence: Admin > SubAdmin > Leader > Member.
2017
+ * BE compute từ `user_isRootAdmin` / `user_isSubAdmin` / có là leader của bất kỳ team nào.
2018
+ * Expose ra để FE / agent có thể inspect mà không cần đoán từ flag boolean.
2019
+ */
2020
+ position: EPositionUser;
2015
2021
  departmentOfUser: string[];
2016
2022
  teamsOfUser: string[];
2017
2023
  teamsIdsOfUser: string[];
@@ -9074,7 +9080,14 @@ declare enum EFilterOptionInstagramHistoryAutoSync {
9074
9080
  UpdatedBy = "UpdatedBy",
9075
9081
  DepartmentCreator = "DepartmentCreator",
9076
9082
  TeamCreator = "TeamCreator",
9077
- LeaderCreator = "LeaderCreator"
9083
+ LeaderCreator = "LeaderCreator",
9084
+ Idea = "Idea",
9085
+ Niche = "Niche",
9086
+ Pc = "Pc",
9087
+ DeviceName = "DeviceName",
9088
+ DeviceKey = "DeviceKey",
9089
+ AccountGroup = "AccountGroup",
9090
+ Account = "Account"
9078
9091
  }
9079
9092
 
9080
9093
  interface FindOverviewInstagramHistoryChangeInfoDto {
@@ -9240,7 +9253,14 @@ declare enum EFilterOptionInstagramHistoryChangeInfo {
9240
9253
  UpdatedBy = "UpdatedBy",
9241
9254
  DepartmentCreator = "DepartmentCreator",
9242
9255
  TeamCreator = "TeamCreator",
9243
- LeaderCreator = "LeaderCreator"
9256
+ LeaderCreator = "LeaderCreator",
9257
+ Idea = "Idea",
9258
+ Niche = "Niche",
9259
+ Pc = "Pc",
9260
+ DeviceName = "DeviceName",
9261
+ DeviceKey = "DeviceKey",
9262
+ AccountGroup = "AccountGroup",
9263
+ Account = "Account"
9244
9264
  }
9245
9265
 
9246
9266
  interface FindOverviewInstagramHistoryCreateNewDto {
@@ -9348,7 +9368,14 @@ declare enum EFilterOptionInstagramHistoryCreateNew {
9348
9368
  UpdatedBy = "UpdatedBy",
9349
9369
  DepartmentCreator = "DepartmentCreator",
9350
9370
  TeamCreator = "TeamCreator",
9351
- LeaderCreator = "LeaderCreator"
9371
+ LeaderCreator = "LeaderCreator",
9372
+ Idea = "Idea",
9373
+ Niche = "Niche",
9374
+ Pc = "Pc",
9375
+ DeviceName = "DeviceName",
9376
+ DeviceKey = "DeviceKey",
9377
+ AccountGroup = "AccountGroup",
9378
+ Account = "Account"
9352
9379
  }
9353
9380
 
9354
9381
  interface FindOverviewInstagramHistoryGroupDto {
@@ -14067,7 +14094,14 @@ declare enum EFilterOptionThreadsHistoryAutoSync {
14067
14094
  UpdatedBy = "UpdatedBy",
14068
14095
  DepartmentCreator = "DepartmentCreator",
14069
14096
  TeamCreator = "TeamCreator",
14070
- LeaderCreator = "LeaderCreator"
14097
+ LeaderCreator = "LeaderCreator",
14098
+ Idea = "Idea",
14099
+ Niche = "Niche",
14100
+ Pc = "Pc",
14101
+ DeviceName = "DeviceName",
14102
+ DeviceKey = "DeviceKey",
14103
+ AccountGroup = "AccountGroup",
14104
+ Account = "Account"
14071
14105
  }
14072
14106
 
14073
14107
  interface FindOverviewThreadsHistoryCreateNewDto {
@@ -14175,7 +14209,14 @@ declare enum EFilterOptionThreadsHistoryCreateNew {
14175
14209
  UpdatedBy = "UpdatedBy",
14176
14210
  DepartmentCreator = "DepartmentCreator",
14177
14211
  TeamCreator = "TeamCreator",
14178
- LeaderCreator = "LeaderCreator"
14212
+ LeaderCreator = "LeaderCreator",
14213
+ Idea = "Idea",
14214
+ Niche = "Niche",
14215
+ Pc = "Pc",
14216
+ DeviceName = "DeviceName",
14217
+ DeviceKey = "DeviceKey",
14218
+ AccountGroup = "AccountGroup",
14219
+ Account = "Account"
14179
14220
  }
14180
14221
 
14181
14222
  interface FindThreadsHistoryChangeDto extends IFindBaseDto {
@@ -14240,7 +14281,14 @@ declare enum EFilterOptionThreadsHistoryChangeInfo {
14240
14281
  UpdatedBy = "UpdatedBy",
14241
14282
  DepartmentCreator = "DepartmentCreator",
14242
14283
  TeamCreator = "TeamCreator",
14243
- LeaderCreator = "LeaderCreator"
14284
+ LeaderCreator = "LeaderCreator",
14285
+ Idea = "Idea",
14286
+ Niche = "Niche",
14287
+ Pc = "Pc",
14288
+ DeviceName = "DeviceName",
14289
+ DeviceKey = "DeviceKey",
14290
+ AccountGroup = "AccountGroup",
14291
+ Account = "Account"
14244
14292
  }
14245
14293
 
14246
14294
  interface FindOverViewThreadsReportPostDto {
package/dist/index.d.ts CHANGED
@@ -2012,6 +2012,12 @@ interface UpdateUserDto extends Partial<IUser> {
2012
2012
  }
2013
2013
  interface FindUserDto extends IUser, IFindBaseDto {
2014
2014
  isLeader: boolean;
2015
+ /**
2016
+ * Vị trí (derived) — precedence: Admin > SubAdmin > Leader > Member.
2017
+ * BE compute từ `user_isRootAdmin` / `user_isSubAdmin` / có là leader của bất kỳ team nào.
2018
+ * Expose ra để FE / agent có thể inspect mà không cần đoán từ flag boolean.
2019
+ */
2020
+ position: EPositionUser;
2015
2021
  departmentOfUser: string[];
2016
2022
  teamsOfUser: string[];
2017
2023
  teamsIdsOfUser: string[];
@@ -9074,7 +9080,14 @@ declare enum EFilterOptionInstagramHistoryAutoSync {
9074
9080
  UpdatedBy = "UpdatedBy",
9075
9081
  DepartmentCreator = "DepartmentCreator",
9076
9082
  TeamCreator = "TeamCreator",
9077
- LeaderCreator = "LeaderCreator"
9083
+ LeaderCreator = "LeaderCreator",
9084
+ Idea = "Idea",
9085
+ Niche = "Niche",
9086
+ Pc = "Pc",
9087
+ DeviceName = "DeviceName",
9088
+ DeviceKey = "DeviceKey",
9089
+ AccountGroup = "AccountGroup",
9090
+ Account = "Account"
9078
9091
  }
9079
9092
 
9080
9093
  interface FindOverviewInstagramHistoryChangeInfoDto {
@@ -9240,7 +9253,14 @@ declare enum EFilterOptionInstagramHistoryChangeInfo {
9240
9253
  UpdatedBy = "UpdatedBy",
9241
9254
  DepartmentCreator = "DepartmentCreator",
9242
9255
  TeamCreator = "TeamCreator",
9243
- LeaderCreator = "LeaderCreator"
9256
+ LeaderCreator = "LeaderCreator",
9257
+ Idea = "Idea",
9258
+ Niche = "Niche",
9259
+ Pc = "Pc",
9260
+ DeviceName = "DeviceName",
9261
+ DeviceKey = "DeviceKey",
9262
+ AccountGroup = "AccountGroup",
9263
+ Account = "Account"
9244
9264
  }
9245
9265
 
9246
9266
  interface FindOverviewInstagramHistoryCreateNewDto {
@@ -9348,7 +9368,14 @@ declare enum EFilterOptionInstagramHistoryCreateNew {
9348
9368
  UpdatedBy = "UpdatedBy",
9349
9369
  DepartmentCreator = "DepartmentCreator",
9350
9370
  TeamCreator = "TeamCreator",
9351
- LeaderCreator = "LeaderCreator"
9371
+ LeaderCreator = "LeaderCreator",
9372
+ Idea = "Idea",
9373
+ Niche = "Niche",
9374
+ Pc = "Pc",
9375
+ DeviceName = "DeviceName",
9376
+ DeviceKey = "DeviceKey",
9377
+ AccountGroup = "AccountGroup",
9378
+ Account = "Account"
9352
9379
  }
9353
9380
 
9354
9381
  interface FindOverviewInstagramHistoryGroupDto {
@@ -14067,7 +14094,14 @@ declare enum EFilterOptionThreadsHistoryAutoSync {
14067
14094
  UpdatedBy = "UpdatedBy",
14068
14095
  DepartmentCreator = "DepartmentCreator",
14069
14096
  TeamCreator = "TeamCreator",
14070
- LeaderCreator = "LeaderCreator"
14097
+ LeaderCreator = "LeaderCreator",
14098
+ Idea = "Idea",
14099
+ Niche = "Niche",
14100
+ Pc = "Pc",
14101
+ DeviceName = "DeviceName",
14102
+ DeviceKey = "DeviceKey",
14103
+ AccountGroup = "AccountGroup",
14104
+ Account = "Account"
14071
14105
  }
14072
14106
 
14073
14107
  interface FindOverviewThreadsHistoryCreateNewDto {
@@ -14175,7 +14209,14 @@ declare enum EFilterOptionThreadsHistoryCreateNew {
14175
14209
  UpdatedBy = "UpdatedBy",
14176
14210
  DepartmentCreator = "DepartmentCreator",
14177
14211
  TeamCreator = "TeamCreator",
14178
- LeaderCreator = "LeaderCreator"
14212
+ LeaderCreator = "LeaderCreator",
14213
+ Idea = "Idea",
14214
+ Niche = "Niche",
14215
+ Pc = "Pc",
14216
+ DeviceName = "DeviceName",
14217
+ DeviceKey = "DeviceKey",
14218
+ AccountGroup = "AccountGroup",
14219
+ Account = "Account"
14179
14220
  }
14180
14221
 
14181
14222
  interface FindThreadsHistoryChangeDto extends IFindBaseDto {
@@ -14240,7 +14281,14 @@ declare enum EFilterOptionThreadsHistoryChangeInfo {
14240
14281
  UpdatedBy = "UpdatedBy",
14241
14282
  DepartmentCreator = "DepartmentCreator",
14242
14283
  TeamCreator = "TeamCreator",
14243
- LeaderCreator = "LeaderCreator"
14284
+ LeaderCreator = "LeaderCreator",
14285
+ Idea = "Idea",
14286
+ Niche = "Niche",
14287
+ Pc = "Pc",
14288
+ DeviceName = "DeviceName",
14289
+ DeviceKey = "DeviceKey",
14290
+ AccountGroup = "AccountGroup",
14291
+ Account = "Account"
14244
14292
  }
14245
14293
 
14246
14294
  interface FindOverViewThreadsReportPostDto {
package/dist/index.js CHANGED
@@ -2610,6 +2610,13 @@ var EFilterOptionInstagramHistoryAutoSync = /* @__PURE__ */ ((EFilterOptionInsta
2610
2610
  EFilterOptionInstagramHistoryAutoSync2["DepartmentCreator"] = "DepartmentCreator";
2611
2611
  EFilterOptionInstagramHistoryAutoSync2["TeamCreator"] = "TeamCreator";
2612
2612
  EFilterOptionInstagramHistoryAutoSync2["LeaderCreator"] = "LeaderCreator";
2613
+ EFilterOptionInstagramHistoryAutoSync2["Idea"] = "Idea";
2614
+ EFilterOptionInstagramHistoryAutoSync2["Niche"] = "Niche";
2615
+ EFilterOptionInstagramHistoryAutoSync2["Pc"] = "Pc";
2616
+ EFilterOptionInstagramHistoryAutoSync2["DeviceName"] = "DeviceName";
2617
+ EFilterOptionInstagramHistoryAutoSync2["DeviceKey"] = "DeviceKey";
2618
+ EFilterOptionInstagramHistoryAutoSync2["AccountGroup"] = "AccountGroup";
2619
+ EFilterOptionInstagramHistoryAutoSync2["Account"] = "Account";
2613
2620
  return EFilterOptionInstagramHistoryAutoSync2;
2614
2621
  })(EFilterOptionInstagramHistoryAutoSync || {});
2615
2622
 
@@ -2627,6 +2634,13 @@ var EFilterOptionInstagramHistoryChangeInfo = /* @__PURE__ */ ((EFilterOptionIns
2627
2634
  EFilterOptionInstagramHistoryChangeInfo2["DepartmentCreator"] = "DepartmentCreator";
2628
2635
  EFilterOptionInstagramHistoryChangeInfo2["TeamCreator"] = "TeamCreator";
2629
2636
  EFilterOptionInstagramHistoryChangeInfo2["LeaderCreator"] = "LeaderCreator";
2637
+ EFilterOptionInstagramHistoryChangeInfo2["Idea"] = "Idea";
2638
+ EFilterOptionInstagramHistoryChangeInfo2["Niche"] = "Niche";
2639
+ EFilterOptionInstagramHistoryChangeInfo2["Pc"] = "Pc";
2640
+ EFilterOptionInstagramHistoryChangeInfo2["DeviceName"] = "DeviceName";
2641
+ EFilterOptionInstagramHistoryChangeInfo2["DeviceKey"] = "DeviceKey";
2642
+ EFilterOptionInstagramHistoryChangeInfo2["AccountGroup"] = "AccountGroup";
2643
+ EFilterOptionInstagramHistoryChangeInfo2["Account"] = "Account";
2630
2644
  return EFilterOptionInstagramHistoryChangeInfo2;
2631
2645
  })(EFilterOptionInstagramHistoryChangeInfo || {});
2632
2646
 
@@ -2641,6 +2655,13 @@ var EFilterOptionInstagramHistoryCreateNew = /* @__PURE__ */ ((EFilterOptionInst
2641
2655
  EFilterOptionInstagramHistoryCreateNew2["DepartmentCreator"] = "DepartmentCreator";
2642
2656
  EFilterOptionInstagramHistoryCreateNew2["TeamCreator"] = "TeamCreator";
2643
2657
  EFilterOptionInstagramHistoryCreateNew2["LeaderCreator"] = "LeaderCreator";
2658
+ EFilterOptionInstagramHistoryCreateNew2["Idea"] = "Idea";
2659
+ EFilterOptionInstagramHistoryCreateNew2["Niche"] = "Niche";
2660
+ EFilterOptionInstagramHistoryCreateNew2["Pc"] = "Pc";
2661
+ EFilterOptionInstagramHistoryCreateNew2["DeviceName"] = "DeviceName";
2662
+ EFilterOptionInstagramHistoryCreateNew2["DeviceKey"] = "DeviceKey";
2663
+ EFilterOptionInstagramHistoryCreateNew2["AccountGroup"] = "AccountGroup";
2664
+ EFilterOptionInstagramHistoryCreateNew2["Account"] = "Account";
2644
2665
  return EFilterOptionInstagramHistoryCreateNew2;
2645
2666
  })(EFilterOptionInstagramHistoryCreateNew || {});
2646
2667
 
@@ -2738,6 +2759,13 @@ var EFilterOptionThreadsHistoryAutoSync = /* @__PURE__ */ ((EFilterOptionThreads
2738
2759
  EFilterOptionThreadsHistoryAutoSync2["DepartmentCreator"] = "DepartmentCreator";
2739
2760
  EFilterOptionThreadsHistoryAutoSync2["TeamCreator"] = "TeamCreator";
2740
2761
  EFilterOptionThreadsHistoryAutoSync2["LeaderCreator"] = "LeaderCreator";
2762
+ EFilterOptionThreadsHistoryAutoSync2["Idea"] = "Idea";
2763
+ EFilterOptionThreadsHistoryAutoSync2["Niche"] = "Niche";
2764
+ EFilterOptionThreadsHistoryAutoSync2["Pc"] = "Pc";
2765
+ EFilterOptionThreadsHistoryAutoSync2["DeviceName"] = "DeviceName";
2766
+ EFilterOptionThreadsHistoryAutoSync2["DeviceKey"] = "DeviceKey";
2767
+ EFilterOptionThreadsHistoryAutoSync2["AccountGroup"] = "AccountGroup";
2768
+ EFilterOptionThreadsHistoryAutoSync2["Account"] = "Account";
2741
2769
  return EFilterOptionThreadsHistoryAutoSync2;
2742
2770
  })(EFilterOptionThreadsHistoryAutoSync || {});
2743
2771
 
@@ -2752,6 +2780,13 @@ var EFilterOptionThreadsHistoryCreateNew = /* @__PURE__ */ ((EFilterOptionThread
2752
2780
  EFilterOptionThreadsHistoryCreateNew2["DepartmentCreator"] = "DepartmentCreator";
2753
2781
  EFilterOptionThreadsHistoryCreateNew2["TeamCreator"] = "TeamCreator";
2754
2782
  EFilterOptionThreadsHistoryCreateNew2["LeaderCreator"] = "LeaderCreator";
2783
+ EFilterOptionThreadsHistoryCreateNew2["Idea"] = "Idea";
2784
+ EFilterOptionThreadsHistoryCreateNew2["Niche"] = "Niche";
2785
+ EFilterOptionThreadsHistoryCreateNew2["Pc"] = "Pc";
2786
+ EFilterOptionThreadsHistoryCreateNew2["DeviceName"] = "DeviceName";
2787
+ EFilterOptionThreadsHistoryCreateNew2["DeviceKey"] = "DeviceKey";
2788
+ EFilterOptionThreadsHistoryCreateNew2["AccountGroup"] = "AccountGroup";
2789
+ EFilterOptionThreadsHistoryCreateNew2["Account"] = "Account";
2755
2790
  return EFilterOptionThreadsHistoryCreateNew2;
2756
2791
  })(EFilterOptionThreadsHistoryCreateNew || {});
2757
2792
 
@@ -2769,6 +2804,13 @@ var EFilterOptionThreadsHistoryChangeInfo = /* @__PURE__ */ ((EFilterOptionThrea
2769
2804
  EFilterOptionThreadsHistoryChangeInfo2["DepartmentCreator"] = "DepartmentCreator";
2770
2805
  EFilterOptionThreadsHistoryChangeInfo2["TeamCreator"] = "TeamCreator";
2771
2806
  EFilterOptionThreadsHistoryChangeInfo2["LeaderCreator"] = "LeaderCreator";
2807
+ EFilterOptionThreadsHistoryChangeInfo2["Idea"] = "Idea";
2808
+ EFilterOptionThreadsHistoryChangeInfo2["Niche"] = "Niche";
2809
+ EFilterOptionThreadsHistoryChangeInfo2["Pc"] = "Pc";
2810
+ EFilterOptionThreadsHistoryChangeInfo2["DeviceName"] = "DeviceName";
2811
+ EFilterOptionThreadsHistoryChangeInfo2["DeviceKey"] = "DeviceKey";
2812
+ EFilterOptionThreadsHistoryChangeInfo2["AccountGroup"] = "AccountGroup";
2813
+ EFilterOptionThreadsHistoryChangeInfo2["Account"] = "Account";
2772
2814
  return EFilterOptionThreadsHistoryChangeInfo2;
2773
2815
  })(EFilterOptionThreadsHistoryChangeInfo || {});
2774
2816
 
package/dist/index.mjs CHANGED
@@ -2282,6 +2282,13 @@ var EFilterOptionInstagramHistoryAutoSync = /* @__PURE__ */ ((EFilterOptionInsta
2282
2282
  EFilterOptionInstagramHistoryAutoSync2["DepartmentCreator"] = "DepartmentCreator";
2283
2283
  EFilterOptionInstagramHistoryAutoSync2["TeamCreator"] = "TeamCreator";
2284
2284
  EFilterOptionInstagramHistoryAutoSync2["LeaderCreator"] = "LeaderCreator";
2285
+ EFilterOptionInstagramHistoryAutoSync2["Idea"] = "Idea";
2286
+ EFilterOptionInstagramHistoryAutoSync2["Niche"] = "Niche";
2287
+ EFilterOptionInstagramHistoryAutoSync2["Pc"] = "Pc";
2288
+ EFilterOptionInstagramHistoryAutoSync2["DeviceName"] = "DeviceName";
2289
+ EFilterOptionInstagramHistoryAutoSync2["DeviceKey"] = "DeviceKey";
2290
+ EFilterOptionInstagramHistoryAutoSync2["AccountGroup"] = "AccountGroup";
2291
+ EFilterOptionInstagramHistoryAutoSync2["Account"] = "Account";
2285
2292
  return EFilterOptionInstagramHistoryAutoSync2;
2286
2293
  })(EFilterOptionInstagramHistoryAutoSync || {});
2287
2294
 
@@ -2299,6 +2306,13 @@ var EFilterOptionInstagramHistoryChangeInfo = /* @__PURE__ */ ((EFilterOptionIns
2299
2306
  EFilterOptionInstagramHistoryChangeInfo2["DepartmentCreator"] = "DepartmentCreator";
2300
2307
  EFilterOptionInstagramHistoryChangeInfo2["TeamCreator"] = "TeamCreator";
2301
2308
  EFilterOptionInstagramHistoryChangeInfo2["LeaderCreator"] = "LeaderCreator";
2309
+ EFilterOptionInstagramHistoryChangeInfo2["Idea"] = "Idea";
2310
+ EFilterOptionInstagramHistoryChangeInfo2["Niche"] = "Niche";
2311
+ EFilterOptionInstagramHistoryChangeInfo2["Pc"] = "Pc";
2312
+ EFilterOptionInstagramHistoryChangeInfo2["DeviceName"] = "DeviceName";
2313
+ EFilterOptionInstagramHistoryChangeInfo2["DeviceKey"] = "DeviceKey";
2314
+ EFilterOptionInstagramHistoryChangeInfo2["AccountGroup"] = "AccountGroup";
2315
+ EFilterOptionInstagramHistoryChangeInfo2["Account"] = "Account";
2302
2316
  return EFilterOptionInstagramHistoryChangeInfo2;
2303
2317
  })(EFilterOptionInstagramHistoryChangeInfo || {});
2304
2318
 
@@ -2313,6 +2327,13 @@ var EFilterOptionInstagramHistoryCreateNew = /* @__PURE__ */ ((EFilterOptionInst
2313
2327
  EFilterOptionInstagramHistoryCreateNew2["DepartmentCreator"] = "DepartmentCreator";
2314
2328
  EFilterOptionInstagramHistoryCreateNew2["TeamCreator"] = "TeamCreator";
2315
2329
  EFilterOptionInstagramHistoryCreateNew2["LeaderCreator"] = "LeaderCreator";
2330
+ EFilterOptionInstagramHistoryCreateNew2["Idea"] = "Idea";
2331
+ EFilterOptionInstagramHistoryCreateNew2["Niche"] = "Niche";
2332
+ EFilterOptionInstagramHistoryCreateNew2["Pc"] = "Pc";
2333
+ EFilterOptionInstagramHistoryCreateNew2["DeviceName"] = "DeviceName";
2334
+ EFilterOptionInstagramHistoryCreateNew2["DeviceKey"] = "DeviceKey";
2335
+ EFilterOptionInstagramHistoryCreateNew2["AccountGroup"] = "AccountGroup";
2336
+ EFilterOptionInstagramHistoryCreateNew2["Account"] = "Account";
2316
2337
  return EFilterOptionInstagramHistoryCreateNew2;
2317
2338
  })(EFilterOptionInstagramHistoryCreateNew || {});
2318
2339
 
@@ -2410,6 +2431,13 @@ var EFilterOptionThreadsHistoryAutoSync = /* @__PURE__ */ ((EFilterOptionThreads
2410
2431
  EFilterOptionThreadsHistoryAutoSync2["DepartmentCreator"] = "DepartmentCreator";
2411
2432
  EFilterOptionThreadsHistoryAutoSync2["TeamCreator"] = "TeamCreator";
2412
2433
  EFilterOptionThreadsHistoryAutoSync2["LeaderCreator"] = "LeaderCreator";
2434
+ EFilterOptionThreadsHistoryAutoSync2["Idea"] = "Idea";
2435
+ EFilterOptionThreadsHistoryAutoSync2["Niche"] = "Niche";
2436
+ EFilterOptionThreadsHistoryAutoSync2["Pc"] = "Pc";
2437
+ EFilterOptionThreadsHistoryAutoSync2["DeviceName"] = "DeviceName";
2438
+ EFilterOptionThreadsHistoryAutoSync2["DeviceKey"] = "DeviceKey";
2439
+ EFilterOptionThreadsHistoryAutoSync2["AccountGroup"] = "AccountGroup";
2440
+ EFilterOptionThreadsHistoryAutoSync2["Account"] = "Account";
2413
2441
  return EFilterOptionThreadsHistoryAutoSync2;
2414
2442
  })(EFilterOptionThreadsHistoryAutoSync || {});
2415
2443
 
@@ -2424,6 +2452,13 @@ var EFilterOptionThreadsHistoryCreateNew = /* @__PURE__ */ ((EFilterOptionThread
2424
2452
  EFilterOptionThreadsHistoryCreateNew2["DepartmentCreator"] = "DepartmentCreator";
2425
2453
  EFilterOptionThreadsHistoryCreateNew2["TeamCreator"] = "TeamCreator";
2426
2454
  EFilterOptionThreadsHistoryCreateNew2["LeaderCreator"] = "LeaderCreator";
2455
+ EFilterOptionThreadsHistoryCreateNew2["Idea"] = "Idea";
2456
+ EFilterOptionThreadsHistoryCreateNew2["Niche"] = "Niche";
2457
+ EFilterOptionThreadsHistoryCreateNew2["Pc"] = "Pc";
2458
+ EFilterOptionThreadsHistoryCreateNew2["DeviceName"] = "DeviceName";
2459
+ EFilterOptionThreadsHistoryCreateNew2["DeviceKey"] = "DeviceKey";
2460
+ EFilterOptionThreadsHistoryCreateNew2["AccountGroup"] = "AccountGroup";
2461
+ EFilterOptionThreadsHistoryCreateNew2["Account"] = "Account";
2427
2462
  return EFilterOptionThreadsHistoryCreateNew2;
2428
2463
  })(EFilterOptionThreadsHistoryCreateNew || {});
2429
2464
 
@@ -2441,6 +2476,13 @@ var EFilterOptionThreadsHistoryChangeInfo = /* @__PURE__ */ ((EFilterOptionThrea
2441
2476
  EFilterOptionThreadsHistoryChangeInfo2["DepartmentCreator"] = "DepartmentCreator";
2442
2477
  EFilterOptionThreadsHistoryChangeInfo2["TeamCreator"] = "TeamCreator";
2443
2478
  EFilterOptionThreadsHistoryChangeInfo2["LeaderCreator"] = "LeaderCreator";
2479
+ EFilterOptionThreadsHistoryChangeInfo2["Idea"] = "Idea";
2480
+ EFilterOptionThreadsHistoryChangeInfo2["Niche"] = "Niche";
2481
+ EFilterOptionThreadsHistoryChangeInfo2["Pc"] = "Pc";
2482
+ EFilterOptionThreadsHistoryChangeInfo2["DeviceName"] = "DeviceName";
2483
+ EFilterOptionThreadsHistoryChangeInfo2["DeviceKey"] = "DeviceKey";
2484
+ EFilterOptionThreadsHistoryChangeInfo2["AccountGroup"] = "AccountGroup";
2485
+ EFilterOptionThreadsHistoryChangeInfo2["Account"] = "Account";
2444
2486
  return EFilterOptionThreadsHistoryChangeInfo2;
2445
2487
  })(EFilterOptionThreadsHistoryChangeInfo || {});
2446
2488
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.602",
3
+ "version": "6.6.609",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",