automation-lib 4.8.152 → 4.8.154
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 -6
- package/dist/index.d.ts +11 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -856,22 +856,22 @@ declare namespace index$5 {
|
|
|
856
856
|
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 };
|
|
857
857
|
}
|
|
858
858
|
|
|
859
|
-
interface
|
|
859
|
+
interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
860
860
|
name: string;
|
|
861
|
-
|
|
861
|
+
slug: string;
|
|
862
862
|
}
|
|
863
863
|
|
|
864
|
-
interface
|
|
864
|
+
interface IAccountAIImageTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
865
865
|
name: string;
|
|
866
|
-
|
|
866
|
+
color: string;
|
|
867
867
|
}
|
|
868
868
|
|
|
869
869
|
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
870
|
-
|
|
870
|
+
listGroupsAIImage: string | IAccountAIImageGroup;
|
|
871
871
|
ideaManagerWork: string | IManagerWork;
|
|
872
872
|
nicheManagerWork: string[] | IManagerWork[];
|
|
873
873
|
subNicheManagerWork: string[] | IManagerWork[];
|
|
874
|
-
tags: string[] |
|
|
874
|
+
tags: string[] | IAccountAIImageTag[];
|
|
875
875
|
membersAssigned: string[] | IUser[];
|
|
876
876
|
}
|
|
877
877
|
|
|
@@ -887,6 +887,11 @@ interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoIn
|
|
|
887
887
|
isActive: boolean;
|
|
888
888
|
}
|
|
889
889
|
|
|
890
|
+
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
891
|
+
name: string;
|
|
892
|
+
color: string;
|
|
893
|
+
}
|
|
894
|
+
|
|
890
895
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
891
896
|
name: string;
|
|
892
897
|
slug: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -856,22 +856,22 @@ declare namespace index$5 {
|
|
|
856
856
|
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 };
|
|
857
857
|
}
|
|
858
858
|
|
|
859
|
-
interface
|
|
859
|
+
interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
860
860
|
name: string;
|
|
861
|
-
|
|
861
|
+
slug: string;
|
|
862
862
|
}
|
|
863
863
|
|
|
864
|
-
interface
|
|
864
|
+
interface IAccountAIImageTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
865
865
|
name: string;
|
|
866
|
-
|
|
866
|
+
color: string;
|
|
867
867
|
}
|
|
868
868
|
|
|
869
869
|
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
870
|
-
|
|
870
|
+
listGroupsAIImage: string | IAccountAIImageGroup;
|
|
871
871
|
ideaManagerWork: string | IManagerWork;
|
|
872
872
|
nicheManagerWork: string[] | IManagerWork[];
|
|
873
873
|
subNicheManagerWork: string[] | IManagerWork[];
|
|
874
|
-
tags: string[] |
|
|
874
|
+
tags: string[] | IAccountAIImageTag[];
|
|
875
875
|
membersAssigned: string[] | IUser[];
|
|
876
876
|
}
|
|
877
877
|
|
|
@@ -887,6 +887,11 @@ interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoIn
|
|
|
887
887
|
isActive: boolean;
|
|
888
888
|
}
|
|
889
889
|
|
|
890
|
+
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
891
|
+
name: string;
|
|
892
|
+
color: string;
|
|
893
|
+
}
|
|
894
|
+
|
|
890
895
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
891
896
|
name: string;
|
|
892
897
|
slug: string;
|