automation-lib 5.1.584 → 5.1.591

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
@@ -6019,8 +6019,6 @@ interface FilterThreadsDashboardFollowerDto extends IFilterBaseDto, IFilterBaseA
6019
6019
  accountGroup: string[];
6020
6020
  account: string[];
6021
6021
  accountStatus: EStatusAccountSocialLogin[];
6022
- accountSpecific: string[];
6023
- accountInstagramConnectThreads: string[];
6024
6022
  }
6025
6023
  /**
6026
6024
  * DTO for applying time filters to Instagram Dashboard Follower analytics
@@ -6033,7 +6031,9 @@ interface FilterThreadsDashboardFollowerDto extends IFilterBaseDto, IFilterBaseA
6033
6031
  * - Yearly: Maximum 10950 days range (10 years)
6034
6032
  */
6035
6033
  interface FindOverviewThreadsDashboardFollowerDto {
6034
+ totalAccounts: number;
6036
6035
  totalActives: number;
6036
+ totalInActives: number;
6037
6037
  totalDevices: number;
6038
6038
  totalIdea: number;
6039
6039
  totalNiche: number;
@@ -6049,12 +6049,11 @@ interface FindOverviewThreadsDashboardFollowerDto {
6049
6049
  totalPostSquare: number;
6050
6050
  totalPostNews: number;
6051
6051
  totalPostReel: number;
6052
- totalHorizontal: number;
6053
- totalInActives: number;
6052
+ totalPostStory: number;
6054
6053
  }
6055
6054
  interface FilterCheckerAccountThreadsDashboardFollowerDto {
6056
6055
  selectAccount: string;
6057
- typeTime: "Daily" | "Weekly" | "Monthly";
6056
+ typeTime: 'Daily' | 'Weekly' | 'Monthly';
6058
6057
  }
6059
6058
  interface FindGrowthThreadsDashboardFollowerDto {
6060
6059
  data: Array<{
@@ -6103,8 +6102,8 @@ interface FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto {
6103
6102
  }
6104
6103
  interface FilterPerformanceBreakdownThreadsDashboardFollowerDto {
6105
6104
  searchManagerWork: string;
6106
- sortBy: "order" | "name" | "totalAccounts" | "totalFollower" | "avgGrowth";
6107
- dir: "ASC" | "DESC";
6105
+ sortBy: 'order' | 'name' | 'totalAccounts' | 'totalFollower' | 'avgGrowth';
6106
+ dir: 'ASC' | 'DESC';
6108
6107
  pagination: {
6109
6108
  limit: string;
6110
6109
  page: string;
@@ -9075,6 +9074,9 @@ interface FindOverviewAccountCHPlayICloudDto {
9075
9074
  totalAccounts: {
9076
9075
  total: number;
9077
9076
  };
9077
+ totalAccountsExpired: {
9078
+ total: number;
9079
+ };
9078
9080
  totalAccountsActiveWorking: {
9079
9081
  total: number;
9080
9082
  active: number;
@@ -9112,9 +9114,10 @@ interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
9112
9114
  updatedBy: string[];
9113
9115
  createdAt: [Date, Date];
9114
9116
  updatedAt: [Date, Date];
9117
+ sheetName: string[];
9115
9118
  pcName: string[];
9116
9119
  devicesName: string[];
9117
- devicesOS: string[];
9120
+ devicesOS: ETypeDeviceOS[];
9118
9121
  status: EStatusAccountCHPlayICloud[];
9119
9122
  timeLastUsed: [Date, Date];
9120
9123
  lastUserUsed: string[];
package/dist/index.d.ts CHANGED
@@ -6019,8 +6019,6 @@ interface FilterThreadsDashboardFollowerDto extends IFilterBaseDto, IFilterBaseA
6019
6019
  accountGroup: string[];
6020
6020
  account: string[];
6021
6021
  accountStatus: EStatusAccountSocialLogin[];
6022
- accountSpecific: string[];
6023
- accountInstagramConnectThreads: string[];
6024
6022
  }
6025
6023
  /**
6026
6024
  * DTO for applying time filters to Instagram Dashboard Follower analytics
@@ -6033,7 +6031,9 @@ interface FilterThreadsDashboardFollowerDto extends IFilterBaseDto, IFilterBaseA
6033
6031
  * - Yearly: Maximum 10950 days range (10 years)
6034
6032
  */
6035
6033
  interface FindOverviewThreadsDashboardFollowerDto {
6034
+ totalAccounts: number;
6036
6035
  totalActives: number;
6036
+ totalInActives: number;
6037
6037
  totalDevices: number;
6038
6038
  totalIdea: number;
6039
6039
  totalNiche: number;
@@ -6049,12 +6049,11 @@ interface FindOverviewThreadsDashboardFollowerDto {
6049
6049
  totalPostSquare: number;
6050
6050
  totalPostNews: number;
6051
6051
  totalPostReel: number;
6052
- totalHorizontal: number;
6053
- totalInActives: number;
6052
+ totalPostStory: number;
6054
6053
  }
6055
6054
  interface FilterCheckerAccountThreadsDashboardFollowerDto {
6056
6055
  selectAccount: string;
6057
- typeTime: "Daily" | "Weekly" | "Monthly";
6056
+ typeTime: 'Daily' | 'Weekly' | 'Monthly';
6058
6057
  }
6059
6058
  interface FindGrowthThreadsDashboardFollowerDto {
6060
6059
  data: Array<{
@@ -6103,8 +6102,8 @@ interface FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto {
6103
6102
  }
6104
6103
  interface FilterPerformanceBreakdownThreadsDashboardFollowerDto {
6105
6104
  searchManagerWork: string;
6106
- sortBy: "order" | "name" | "totalAccounts" | "totalFollower" | "avgGrowth";
6107
- dir: "ASC" | "DESC";
6105
+ sortBy: 'order' | 'name' | 'totalAccounts' | 'totalFollower' | 'avgGrowth';
6106
+ dir: 'ASC' | 'DESC';
6108
6107
  pagination: {
6109
6108
  limit: string;
6110
6109
  page: string;
@@ -9075,6 +9074,9 @@ interface FindOverviewAccountCHPlayICloudDto {
9075
9074
  totalAccounts: {
9076
9075
  total: number;
9077
9076
  };
9077
+ totalAccountsExpired: {
9078
+ total: number;
9079
+ };
9078
9080
  totalAccountsActiveWorking: {
9079
9081
  total: number;
9080
9082
  active: number;
@@ -9112,9 +9114,10 @@ interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
9112
9114
  updatedBy: string[];
9113
9115
  createdAt: [Date, Date];
9114
9116
  updatedAt: [Date, Date];
9117
+ sheetName: string[];
9115
9118
  pcName: string[];
9116
9119
  devicesName: string[];
9117
- devicesOS: string[];
9120
+ devicesOS: ETypeDeviceOS[];
9118
9121
  status: EStatusAccountCHPlayICloud[];
9119
9122
  timeLastUsed: [Date, Date];
9120
9123
  lastUserUsed: string[];