automation-lib 5.1.289 → 5.1.291
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 +11 -23
- package/dist/index.d.ts +11 -23
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -7912,27 +7912,14 @@ interface FindCheckerAccountInstagramDashboardFollowerDto {
|
|
|
7912
7912
|
nameAppClone: string;
|
|
7913
7913
|
totalFollowers: number;
|
|
7914
7914
|
totalFollowings: number;
|
|
7915
|
-
|
|
7916
|
-
|
|
7917
|
-
niche: number;
|
|
7915
|
+
idea: string;
|
|
7916
|
+
niche: string;
|
|
7918
7917
|
type: ETypeManagerWorkClassify;
|
|
7919
7918
|
contentPerformance: {
|
|
7920
|
-
totalProductSquare:
|
|
7921
|
-
|
|
7922
|
-
|
|
7923
|
-
|
|
7924
|
-
totalProductNews: {
|
|
7925
|
-
total: number;
|
|
7926
|
-
percentage: number;
|
|
7927
|
-
};
|
|
7928
|
-
totalProductReel: {
|
|
7929
|
-
total: number;
|
|
7930
|
-
percentage: number;
|
|
7931
|
-
};
|
|
7932
|
-
totalProductStory: {
|
|
7933
|
-
total: number;
|
|
7934
|
-
percentage: number;
|
|
7935
|
-
};
|
|
7919
|
+
totalProductSquare: number;
|
|
7920
|
+
totalProductNews: number;
|
|
7921
|
+
totalProductReel: number;
|
|
7922
|
+
totalProductStory: number;
|
|
7936
7923
|
};
|
|
7937
7924
|
}
|
|
7938
7925
|
interface FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto {
|
|
@@ -9134,11 +9121,11 @@ interface CreateUserDto extends Partial<IUser> {
|
|
|
9134
9121
|
user_password: string;
|
|
9135
9122
|
user_phone: string;
|
|
9136
9123
|
user_gender: EGender;
|
|
9137
|
-
user_roles?: string[];
|
|
9138
9124
|
user_isSubAdmin?: boolean;
|
|
9139
9125
|
user_avatar?: string;
|
|
9140
9126
|
user_department?: string;
|
|
9141
9127
|
user_team?: string;
|
|
9128
|
+
user_roles?: string[];
|
|
9142
9129
|
}
|
|
9143
9130
|
interface UpdateUserDto extends Partial<IUser> {
|
|
9144
9131
|
user_fullName?: string;
|
|
@@ -9146,16 +9133,17 @@ interface UpdateUserDto extends Partial<IUser> {
|
|
|
9146
9133
|
user_password?: string;
|
|
9147
9134
|
user_phone?: string;
|
|
9148
9135
|
user_gender?: EGender;
|
|
9149
|
-
user_roles?: string[];
|
|
9150
9136
|
user_avatar?: string;
|
|
9151
9137
|
user_isSubAdmin?: boolean;
|
|
9152
9138
|
user_department?: string;
|
|
9153
9139
|
user_team?: string;
|
|
9140
|
+
user_roles?: string[];
|
|
9154
9141
|
}
|
|
9155
9142
|
interface FindUserDto extends IFindBaseDto, IUser {
|
|
9156
9143
|
isLeader: boolean;
|
|
9157
|
-
|
|
9158
|
-
|
|
9144
|
+
departmentOfUser: IDepartment;
|
|
9145
|
+
teamOfUser: ITeam;
|
|
9146
|
+
rolesOfUser: IRole[];
|
|
9159
9147
|
}
|
|
9160
9148
|
interface FilterUserDto extends IFilterBaseDto {
|
|
9161
9149
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -7912,27 +7912,14 @@ interface FindCheckerAccountInstagramDashboardFollowerDto {
|
|
|
7912
7912
|
nameAppClone: string;
|
|
7913
7913
|
totalFollowers: number;
|
|
7914
7914
|
totalFollowings: number;
|
|
7915
|
-
|
|
7916
|
-
|
|
7917
|
-
niche: number;
|
|
7915
|
+
idea: string;
|
|
7916
|
+
niche: string;
|
|
7918
7917
|
type: ETypeManagerWorkClassify;
|
|
7919
7918
|
contentPerformance: {
|
|
7920
|
-
totalProductSquare:
|
|
7921
|
-
|
|
7922
|
-
|
|
7923
|
-
|
|
7924
|
-
totalProductNews: {
|
|
7925
|
-
total: number;
|
|
7926
|
-
percentage: number;
|
|
7927
|
-
};
|
|
7928
|
-
totalProductReel: {
|
|
7929
|
-
total: number;
|
|
7930
|
-
percentage: number;
|
|
7931
|
-
};
|
|
7932
|
-
totalProductStory: {
|
|
7933
|
-
total: number;
|
|
7934
|
-
percentage: number;
|
|
7935
|
-
};
|
|
7919
|
+
totalProductSquare: number;
|
|
7920
|
+
totalProductNews: number;
|
|
7921
|
+
totalProductReel: number;
|
|
7922
|
+
totalProductStory: number;
|
|
7936
7923
|
};
|
|
7937
7924
|
}
|
|
7938
7925
|
interface FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto {
|
|
@@ -9134,11 +9121,11 @@ interface CreateUserDto extends Partial<IUser> {
|
|
|
9134
9121
|
user_password: string;
|
|
9135
9122
|
user_phone: string;
|
|
9136
9123
|
user_gender: EGender;
|
|
9137
|
-
user_roles?: string[];
|
|
9138
9124
|
user_isSubAdmin?: boolean;
|
|
9139
9125
|
user_avatar?: string;
|
|
9140
9126
|
user_department?: string;
|
|
9141
9127
|
user_team?: string;
|
|
9128
|
+
user_roles?: string[];
|
|
9142
9129
|
}
|
|
9143
9130
|
interface UpdateUserDto extends Partial<IUser> {
|
|
9144
9131
|
user_fullName?: string;
|
|
@@ -9146,16 +9133,17 @@ interface UpdateUserDto extends Partial<IUser> {
|
|
|
9146
9133
|
user_password?: string;
|
|
9147
9134
|
user_phone?: string;
|
|
9148
9135
|
user_gender?: EGender;
|
|
9149
|
-
user_roles?: string[];
|
|
9150
9136
|
user_avatar?: string;
|
|
9151
9137
|
user_isSubAdmin?: boolean;
|
|
9152
9138
|
user_department?: string;
|
|
9153
9139
|
user_team?: string;
|
|
9140
|
+
user_roles?: string[];
|
|
9154
9141
|
}
|
|
9155
9142
|
interface FindUserDto extends IFindBaseDto, IUser {
|
|
9156
9143
|
isLeader: boolean;
|
|
9157
|
-
|
|
9158
|
-
|
|
9144
|
+
departmentOfUser: IDepartment;
|
|
9145
|
+
teamOfUser: ITeam;
|
|
9146
|
+
rolesOfUser: IRole[];
|
|
9159
9147
|
}
|
|
9160
9148
|
interface FilterUserDto extends IFilterBaseDto {
|
|
9161
9149
|
}
|