automation-lib 4.9.83 → 4.9.85

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
@@ -757,13 +757,13 @@ interface IBlog extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCom
757
757
  blog_usersPermission: string[] | IUser[];
758
758
  }
759
759
 
760
- interface ISheetWorksCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
760
+ interface ISheetWorksCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
761
761
  swc_name: string;
762
762
  swc_slug: string;
763
763
  swc_desc: string;
764
764
  }
765
765
 
766
- interface ISheetWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
766
+ interface ISheetWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
767
767
  sw_name: string;
768
768
  sw_slug: string;
769
769
  sw_url: string;
@@ -856,6 +856,13 @@ interface INotification extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
856
856
  noti_departmentAttachment: IDepartment | string;
857
857
  }
858
858
 
859
+ interface ISheetWorkManager extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
860
+ sheetWork: ISheetWork | string;
861
+ idea: IManagerWork | string;
862
+ niche: IManagerWork | string;
863
+ subNiche: IManagerWork | string;
864
+ }
865
+
859
866
  interface ITaskJobsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
860
867
  tjg_name: string;
861
868
  tjg_slug: string;
@@ -912,6 +919,7 @@ type index$5_IRole = IRole;
912
919
  type index$5_IRoleFeature = IRoleFeature;
913
920
  type index$5_IRoleGroup = IRoleGroup;
914
921
  type index$5_ISheetWork = ISheetWork;
922
+ type index$5_ISheetWorkManager = ISheetWorkManager;
915
923
  type index$5_ISheetWorkPin = ISheetWorkPin;
916
924
  type index$5_ISheetWorksCategory = ISheetWorksCategory;
917
925
  type index$5_ITag = ITag;
@@ -921,7 +929,7 @@ type index$5_ITaskJobDiscuss = ITaskJobDiscuss;
921
929
  type index$5_ITaskJobLabel = ITaskJobLabel;
922
930
  type index$5_ITaskJobsGroup = ITaskJobsGroup;
923
931
  declare namespace index$5 {
924
- export type { index$5_IBlog as IBlog, index$5_IBlogsCategory as IBlogsCategory, index$5_IDepartment as IDepartment, index$5_IDomain as IDomain, index$5_IImage as IImage, index$5_ILark as ILark, index$5_IManagerWork as IManagerWork, index$5_IManagerWorkPin as IManagerWorkPin, index$5_INotification as INotification, index$5_IRole as IRole, index$5_IRoleFeature as IRoleFeature, index$5_IRoleGroup as IRoleGroup, index$5_ISheetWork as ISheetWork, index$5_ISheetWorkPin as ISheetWorkPin, index$5_ISheetWorksCategory as ISheetWorksCategory, index$5_ITag as ITag, index$5_ITaskJob as ITaskJob, index$5_ITaskJobCheckList as ITaskJobCheckList, index$5_ITaskJobDiscuss as ITaskJobDiscuss, index$5_ITaskJobLabel as ITaskJobLabel, index$5_ITaskJobsGroup as ITaskJobsGroup };
932
+ export type { index$5_IBlog as IBlog, index$5_IBlogsCategory as IBlogsCategory, index$5_IDepartment as IDepartment, index$5_IDomain as IDomain, index$5_IImage as IImage, index$5_ILark as ILark, index$5_IManagerWork as IManagerWork, index$5_IManagerWorkPin as IManagerWorkPin, index$5_INotification as INotification, index$5_IRole as IRole, index$5_IRoleFeature as IRoleFeature, index$5_IRoleGroup as IRoleGroup, index$5_ISheetWork as ISheetWork, index$5_ISheetWorkManager as ISheetWorkManager, index$5_ISheetWorkPin as ISheetWorkPin, index$5_ISheetWorksCategory as ISheetWorksCategory, index$5_ITag as ITag, index$5_ITaskJob as ITaskJob, index$5_ITaskJobCheckList as ITaskJobCheckList, index$5_ITaskJobDiscuss as ITaskJobDiscuss, index$5_ITaskJobLabel as ITaskJobLabel, index$5_ITaskJobsGroup as ITaskJobsGroup };
925
933
  }
926
934
 
927
935
  interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
package/dist/index.d.ts CHANGED
@@ -757,13 +757,13 @@ interface IBlog extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCom
757
757
  blog_usersPermission: string[] | IUser[];
758
758
  }
759
759
 
760
- interface ISheetWorksCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
760
+ interface ISheetWorksCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
761
761
  swc_name: string;
762
762
  swc_slug: string;
763
763
  swc_desc: string;
764
764
  }
765
765
 
766
- interface ISheetWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
766
+ interface ISheetWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
767
767
  sw_name: string;
768
768
  sw_slug: string;
769
769
  sw_url: string;
@@ -856,6 +856,13 @@ interface INotification extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
856
856
  noti_departmentAttachment: IDepartment | string;
857
857
  }
858
858
 
859
+ interface ISheetWorkManager extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
860
+ sheetWork: ISheetWork | string;
861
+ idea: IManagerWork | string;
862
+ niche: IManagerWork | string;
863
+ subNiche: IManagerWork | string;
864
+ }
865
+
859
866
  interface ITaskJobsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
860
867
  tjg_name: string;
861
868
  tjg_slug: string;
@@ -912,6 +919,7 @@ type index$5_IRole = IRole;
912
919
  type index$5_IRoleFeature = IRoleFeature;
913
920
  type index$5_IRoleGroup = IRoleGroup;
914
921
  type index$5_ISheetWork = ISheetWork;
922
+ type index$5_ISheetWorkManager = ISheetWorkManager;
915
923
  type index$5_ISheetWorkPin = ISheetWorkPin;
916
924
  type index$5_ISheetWorksCategory = ISheetWorksCategory;
917
925
  type index$5_ITag = ITag;
@@ -921,7 +929,7 @@ type index$5_ITaskJobDiscuss = ITaskJobDiscuss;
921
929
  type index$5_ITaskJobLabel = ITaskJobLabel;
922
930
  type index$5_ITaskJobsGroup = ITaskJobsGroup;
923
931
  declare namespace index$5 {
924
- export type { index$5_IBlog as IBlog, index$5_IBlogsCategory as IBlogsCategory, index$5_IDepartment as IDepartment, index$5_IDomain as IDomain, index$5_IImage as IImage, index$5_ILark as ILark, index$5_IManagerWork as IManagerWork, index$5_IManagerWorkPin as IManagerWorkPin, index$5_INotification as INotification, index$5_IRole as IRole, index$5_IRoleFeature as IRoleFeature, index$5_IRoleGroup as IRoleGroup, index$5_ISheetWork as ISheetWork, index$5_ISheetWorkPin as ISheetWorkPin, index$5_ISheetWorksCategory as ISheetWorksCategory, index$5_ITag as ITag, index$5_ITaskJob as ITaskJob, index$5_ITaskJobCheckList as ITaskJobCheckList, index$5_ITaskJobDiscuss as ITaskJobDiscuss, index$5_ITaskJobLabel as ITaskJobLabel, index$5_ITaskJobsGroup as ITaskJobsGroup };
932
+ export type { index$5_IBlog as IBlog, index$5_IBlogsCategory as IBlogsCategory, index$5_IDepartment as IDepartment, index$5_IDomain as IDomain, index$5_IImage as IImage, index$5_ILark as ILark, index$5_IManagerWork as IManagerWork, index$5_IManagerWorkPin as IManagerWorkPin, index$5_INotification as INotification, index$5_IRole as IRole, index$5_IRoleFeature as IRoleFeature, index$5_IRoleGroup as IRoleGroup, index$5_ISheetWork as ISheetWork, index$5_ISheetWorkManager as ISheetWorkManager, index$5_ISheetWorkPin as ISheetWorkPin, index$5_ISheetWorksCategory as ISheetWorksCategory, index$5_ITag as ITag, index$5_ITaskJob as ITaskJob, index$5_ITaskJobCheckList as ITaskJobCheckList, index$5_ITaskJobDiscuss as ITaskJobDiscuss, index$5_ITaskJobLabel as ITaskJobLabel, index$5_ITaskJobsGroup as ITaskJobsGroup };
925
933
  }
926
934
 
927
935
  interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "4.9.83",
3
+ "version": "4.9.85",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",