automation-lib 5.1.174 → 5.1.175
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -7312,6 +7312,9 @@ interface UpdateBlogDto extends Partial<IBlog> {
|
|
7312
7312
|
blog_usersPermission?: string[];
|
7313
7313
|
}
|
7314
7314
|
interface FindBlogDto extends IFindBaseDto, IBlog {
|
7315
|
+
blog_departmentsPermission?: IDepartment[];
|
7316
|
+
blog_teamsPermission?: ITeam[];
|
7317
|
+
blog_usersPermission?: IUser[];
|
7315
7318
|
}
|
7316
7319
|
interface FilterBlogDto extends IFilterBaseDto, Omit<IBlog, TOmitFilterDto> {
|
7317
7320
|
}
|
package/dist/index.d.ts
CHANGED
@@ -7312,6 +7312,9 @@ interface UpdateBlogDto extends Partial<IBlog> {
|
|
7312
7312
|
blog_usersPermission?: string[];
|
7313
7313
|
}
|
7314
7314
|
interface FindBlogDto extends IFindBaseDto, IBlog {
|
7315
|
+
blog_departmentsPermission?: IDepartment[];
|
7316
|
+
blog_teamsPermission?: ITeam[];
|
7317
|
+
blog_usersPermission?: IUser[];
|
7315
7318
|
}
|
7316
7319
|
interface FilterBlogDto extends IFilterBaseDto, Omit<IBlog, TOmitFilterDto> {
|
7317
7320
|
}
|