automation-lib 4.9.59 → 4.9.60
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 +73 -70
- package/dist/index.d.ts +73 -70
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -718,15 +718,53 @@ interface IAccountAIImageTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInt
|
|
|
718
718
|
color: string;
|
|
719
719
|
}
|
|
720
720
|
|
|
721
|
-
interface
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
721
|
+
interface IBlogsCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
722
|
+
bc_name: string;
|
|
723
|
+
bc_desc: string;
|
|
724
|
+
bc_slug: string;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
interface IBlog extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
728
|
+
blog_name: string;
|
|
729
|
+
blog_thumb: string;
|
|
730
|
+
blog_desc: string;
|
|
731
|
+
blog_slug: string;
|
|
732
|
+
blog_content: string;
|
|
733
|
+
blog_status: string | EStatusBlog;
|
|
734
|
+
blog_priority: EPriority;
|
|
735
|
+
blog_priorityPoint: number;
|
|
736
|
+
blog_category: string | IBlogsCategory;
|
|
737
|
+
blog_departmentsPermission: string[] | IDepartment[];
|
|
738
|
+
blog_usersPermission: string[] | IUser[];
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
interface ISheetWorksCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
742
|
+
swc_name: string;
|
|
743
|
+
swc_slug: string;
|
|
744
|
+
swc_desc: string;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
interface ISheetWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
748
|
+
sw_name: string;
|
|
749
|
+
sw_slug: string;
|
|
750
|
+
sw_url: string;
|
|
751
|
+
sw_desc: string;
|
|
752
|
+
sw_emails: string[];
|
|
753
|
+
sw_note: string;
|
|
754
|
+
sw_parent: ISheetWork | string;
|
|
755
|
+
sw_priority: EPriority;
|
|
756
|
+
sw_status: EStatusSheetWork;
|
|
757
|
+
sw_category: string | ISheetWorksCategory;
|
|
758
|
+
sw_usersPermission: string | IUser;
|
|
759
|
+
sw_departmentsPermission: string | IDepartment;
|
|
760
|
+
sw_tags: string[] | ITag[];
|
|
761
|
+
sw_domains: string[] | IDomain[];
|
|
762
|
+
sw_pin: string | ISheetWorkPin;
|
|
763
|
+
sw_classify: ETypeSheetWorkClassify;
|
|
764
|
+
}
|
|
765
|
+
interface ISheetWorkPin extends BoInterfaceModelsCommon.IBaseModel {
|
|
766
|
+
pin_type: ETypeSheetWorkPin;
|
|
767
|
+
pin_sheetWork: string | ISheetWork;
|
|
730
768
|
}
|
|
731
769
|
|
|
732
770
|
interface ITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
@@ -766,56 +804,23 @@ interface IDomain extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
|
766
804
|
domain_color: string;
|
|
767
805
|
}
|
|
768
806
|
|
|
769
|
-
interface
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
sw_url: string;
|
|
779
|
-
sw_desc: string;
|
|
780
|
-
sw_emails: string[];
|
|
781
|
-
sw_note: string;
|
|
782
|
-
sw_parent: ISheetWork | string;
|
|
783
|
-
sw_priority: EPriority;
|
|
784
|
-
sw_status: EStatusSheetWork;
|
|
785
|
-
sw_category: string | ISheetWorksCategory;
|
|
786
|
-
sw_usersPermission: string | IUser;
|
|
787
|
-
sw_departmentsPermission: string | IDepartment;
|
|
788
|
-
sw_idea: IManagerWork | string;
|
|
789
|
-
sw_niche: IManagerWork | string;
|
|
790
|
-
sw_subNiche: IManagerWork | string;
|
|
791
|
-
sw_tags: string[] | ITag[];
|
|
792
|
-
sw_domains: string[] | IDomain[];
|
|
793
|
-
sw_pin: string | ISheetWorkPin;
|
|
794
|
-
sw_classify: ETypeSheetWorkClassify;
|
|
795
|
-
}
|
|
796
|
-
interface ISheetWorkPin extends BoInterfaceModelsCommon.IBaseModel {
|
|
797
|
-
pin_type: ETypeSheetWorkPin;
|
|
798
|
-
pin_sheetWork: string | ISheetWork;
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
interface IBlogsCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
802
|
-
bc_name: string;
|
|
803
|
-
bc_desc: string;
|
|
804
|
-
bc_slug: string;
|
|
807
|
+
interface IImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
808
|
+
image_key: string;
|
|
809
|
+
image_path: string;
|
|
810
|
+
image_url: string;
|
|
811
|
+
image_alt: string;
|
|
812
|
+
image_format: string;
|
|
813
|
+
image_size: number;
|
|
814
|
+
image_width: number;
|
|
815
|
+
image_heigh: number;
|
|
805
816
|
}
|
|
806
817
|
|
|
807
|
-
interface
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
blog_status: string | EStatusBlog;
|
|
814
|
-
blog_priority: EPriority;
|
|
815
|
-
blog_priorityPoint: number;
|
|
816
|
-
blog_category: string | IBlogsCategory;
|
|
817
|
-
blog_departmentsPermission: string[] | IDepartment[];
|
|
818
|
-
blog_usersPermission: string[] | IUser[];
|
|
818
|
+
interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
819
|
+
lark_name: string;
|
|
820
|
+
lark_botHook: string;
|
|
821
|
+
lark_department: string | IDepartment;
|
|
822
|
+
lark_typeError: ELarkMessageCommon | ELarkMessageSheetManager | ELarkMessageInstagramThreads;
|
|
823
|
+
lark_typeObject: ELarkObject;
|
|
819
824
|
}
|
|
820
825
|
|
|
821
826
|
interface INotification extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -829,6 +834,13 @@ interface INotification extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
|
|
|
829
834
|
noti_departmentAttachment: IDepartment | string;
|
|
830
835
|
}
|
|
831
836
|
|
|
837
|
+
interface ISheetWorkManager extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
838
|
+
sheetWork: ISheetWork | string;
|
|
839
|
+
idea: IManagerWork | string;
|
|
840
|
+
niche: IManagerWork | string;
|
|
841
|
+
subNiche: IManagerWork | string;
|
|
842
|
+
}
|
|
843
|
+
|
|
832
844
|
interface ITaskJobsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
833
845
|
tjg_name: string;
|
|
834
846
|
tjg_slug: string;
|
|
@@ -872,14 +884,6 @@ interface ITaskJob extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
872
884
|
tj_usersPermission: string[] | IUser[];
|
|
873
885
|
}
|
|
874
886
|
|
|
875
|
-
interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
876
|
-
lark_name: string;
|
|
877
|
-
lark_botHook: string;
|
|
878
|
-
lark_department: string | IDepartment;
|
|
879
|
-
lark_typeError: ELarkMessageCommon | ELarkMessageSheetManager | ELarkMessageInstagramThreads;
|
|
880
|
-
lark_typeObject: ELarkObject;
|
|
881
|
-
}
|
|
882
|
-
|
|
883
887
|
type index$5_IBlog = IBlog;
|
|
884
888
|
type index$5_IBlogsCategory = IBlogsCategory;
|
|
885
889
|
type index$5_IDepartment = IDepartment;
|
|
@@ -893,6 +897,7 @@ type index$5_IRole = IRole;
|
|
|
893
897
|
type index$5_IRoleFeature = IRoleFeature;
|
|
894
898
|
type index$5_IRoleGroup = IRoleGroup;
|
|
895
899
|
type index$5_ISheetWork = ISheetWork;
|
|
900
|
+
type index$5_ISheetWorkManager = ISheetWorkManager;
|
|
896
901
|
type index$5_ISheetWorkPin = ISheetWorkPin;
|
|
897
902
|
type index$5_ISheetWorksCategory = ISheetWorksCategory;
|
|
898
903
|
type index$5_ITag = ITag;
|
|
@@ -902,7 +907,7 @@ type index$5_ITaskJobDiscuss = ITaskJobDiscuss;
|
|
|
902
907
|
type index$5_ITaskJobLabel = ITaskJobLabel;
|
|
903
908
|
type index$5_ITaskJobsGroup = ITaskJobsGroup;
|
|
904
909
|
declare namespace index$5 {
|
|
905
|
-
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 };
|
|
910
|
+
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 };
|
|
906
911
|
}
|
|
907
912
|
|
|
908
913
|
interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -916,9 +921,6 @@ interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
|
|
|
916
921
|
password: string;
|
|
917
922
|
code2FA: string;
|
|
918
923
|
code2FABackup: string;
|
|
919
|
-
typeContent: EAIModelContent | string;
|
|
920
|
-
typeImage: EAIModelImage | string;
|
|
921
|
-
typeVoice: EAIModelVoice | string;
|
|
922
924
|
status: EStatusEmail;
|
|
923
925
|
note: string;
|
|
924
926
|
}
|
|
@@ -1038,7 +1040,8 @@ interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceMo
|
|
|
1038
1040
|
|
|
1039
1041
|
interface IAccountEmailTag extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1040
1042
|
accountEmail: string;
|
|
1041
|
-
typeTag: EEmailTagType;
|
|
1043
|
+
typeTag: EEmailTagType | string;
|
|
1044
|
+
model: EAIModelContent | EAIModelImage | EAIModelVoice;
|
|
1042
1045
|
}
|
|
1043
1046
|
|
|
1044
1047
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -718,15 +718,53 @@ interface IAccountAIImageTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInt
|
|
|
718
718
|
color: string;
|
|
719
719
|
}
|
|
720
720
|
|
|
721
|
-
interface
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
721
|
+
interface IBlogsCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
722
|
+
bc_name: string;
|
|
723
|
+
bc_desc: string;
|
|
724
|
+
bc_slug: string;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
interface IBlog extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
728
|
+
blog_name: string;
|
|
729
|
+
blog_thumb: string;
|
|
730
|
+
blog_desc: string;
|
|
731
|
+
blog_slug: string;
|
|
732
|
+
blog_content: string;
|
|
733
|
+
blog_status: string | EStatusBlog;
|
|
734
|
+
blog_priority: EPriority;
|
|
735
|
+
blog_priorityPoint: number;
|
|
736
|
+
blog_category: string | IBlogsCategory;
|
|
737
|
+
blog_departmentsPermission: string[] | IDepartment[];
|
|
738
|
+
blog_usersPermission: string[] | IUser[];
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
interface ISheetWorksCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
742
|
+
swc_name: string;
|
|
743
|
+
swc_slug: string;
|
|
744
|
+
swc_desc: string;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
interface ISheetWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
748
|
+
sw_name: string;
|
|
749
|
+
sw_slug: string;
|
|
750
|
+
sw_url: string;
|
|
751
|
+
sw_desc: string;
|
|
752
|
+
sw_emails: string[];
|
|
753
|
+
sw_note: string;
|
|
754
|
+
sw_parent: ISheetWork | string;
|
|
755
|
+
sw_priority: EPriority;
|
|
756
|
+
sw_status: EStatusSheetWork;
|
|
757
|
+
sw_category: string | ISheetWorksCategory;
|
|
758
|
+
sw_usersPermission: string | IUser;
|
|
759
|
+
sw_departmentsPermission: string | IDepartment;
|
|
760
|
+
sw_tags: string[] | ITag[];
|
|
761
|
+
sw_domains: string[] | IDomain[];
|
|
762
|
+
sw_pin: string | ISheetWorkPin;
|
|
763
|
+
sw_classify: ETypeSheetWorkClassify;
|
|
764
|
+
}
|
|
765
|
+
interface ISheetWorkPin extends BoInterfaceModelsCommon.IBaseModel {
|
|
766
|
+
pin_type: ETypeSheetWorkPin;
|
|
767
|
+
pin_sheetWork: string | ISheetWork;
|
|
730
768
|
}
|
|
731
769
|
|
|
732
770
|
interface ITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
@@ -766,56 +804,23 @@ interface IDomain extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
|
766
804
|
domain_color: string;
|
|
767
805
|
}
|
|
768
806
|
|
|
769
|
-
interface
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
sw_url: string;
|
|
779
|
-
sw_desc: string;
|
|
780
|
-
sw_emails: string[];
|
|
781
|
-
sw_note: string;
|
|
782
|
-
sw_parent: ISheetWork | string;
|
|
783
|
-
sw_priority: EPriority;
|
|
784
|
-
sw_status: EStatusSheetWork;
|
|
785
|
-
sw_category: string | ISheetWorksCategory;
|
|
786
|
-
sw_usersPermission: string | IUser;
|
|
787
|
-
sw_departmentsPermission: string | IDepartment;
|
|
788
|
-
sw_idea: IManagerWork | string;
|
|
789
|
-
sw_niche: IManagerWork | string;
|
|
790
|
-
sw_subNiche: IManagerWork | string;
|
|
791
|
-
sw_tags: string[] | ITag[];
|
|
792
|
-
sw_domains: string[] | IDomain[];
|
|
793
|
-
sw_pin: string | ISheetWorkPin;
|
|
794
|
-
sw_classify: ETypeSheetWorkClassify;
|
|
795
|
-
}
|
|
796
|
-
interface ISheetWorkPin extends BoInterfaceModelsCommon.IBaseModel {
|
|
797
|
-
pin_type: ETypeSheetWorkPin;
|
|
798
|
-
pin_sheetWork: string | ISheetWork;
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
interface IBlogsCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
802
|
-
bc_name: string;
|
|
803
|
-
bc_desc: string;
|
|
804
|
-
bc_slug: string;
|
|
807
|
+
interface IImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
808
|
+
image_key: string;
|
|
809
|
+
image_path: string;
|
|
810
|
+
image_url: string;
|
|
811
|
+
image_alt: string;
|
|
812
|
+
image_format: string;
|
|
813
|
+
image_size: number;
|
|
814
|
+
image_width: number;
|
|
815
|
+
image_heigh: number;
|
|
805
816
|
}
|
|
806
817
|
|
|
807
|
-
interface
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
blog_status: string | EStatusBlog;
|
|
814
|
-
blog_priority: EPriority;
|
|
815
|
-
blog_priorityPoint: number;
|
|
816
|
-
blog_category: string | IBlogsCategory;
|
|
817
|
-
blog_departmentsPermission: string[] | IDepartment[];
|
|
818
|
-
blog_usersPermission: string[] | IUser[];
|
|
818
|
+
interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
819
|
+
lark_name: string;
|
|
820
|
+
lark_botHook: string;
|
|
821
|
+
lark_department: string | IDepartment;
|
|
822
|
+
lark_typeError: ELarkMessageCommon | ELarkMessageSheetManager | ELarkMessageInstagramThreads;
|
|
823
|
+
lark_typeObject: ELarkObject;
|
|
819
824
|
}
|
|
820
825
|
|
|
821
826
|
interface INotification extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -829,6 +834,13 @@ interface INotification extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
|
|
|
829
834
|
noti_departmentAttachment: IDepartment | string;
|
|
830
835
|
}
|
|
831
836
|
|
|
837
|
+
interface ISheetWorkManager extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
838
|
+
sheetWork: ISheetWork | string;
|
|
839
|
+
idea: IManagerWork | string;
|
|
840
|
+
niche: IManagerWork | string;
|
|
841
|
+
subNiche: IManagerWork | string;
|
|
842
|
+
}
|
|
843
|
+
|
|
832
844
|
interface ITaskJobsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
833
845
|
tjg_name: string;
|
|
834
846
|
tjg_slug: string;
|
|
@@ -872,14 +884,6 @@ interface ITaskJob extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
872
884
|
tj_usersPermission: string[] | IUser[];
|
|
873
885
|
}
|
|
874
886
|
|
|
875
|
-
interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
876
|
-
lark_name: string;
|
|
877
|
-
lark_botHook: string;
|
|
878
|
-
lark_department: string | IDepartment;
|
|
879
|
-
lark_typeError: ELarkMessageCommon | ELarkMessageSheetManager | ELarkMessageInstagramThreads;
|
|
880
|
-
lark_typeObject: ELarkObject;
|
|
881
|
-
}
|
|
882
|
-
|
|
883
887
|
type index$5_IBlog = IBlog;
|
|
884
888
|
type index$5_IBlogsCategory = IBlogsCategory;
|
|
885
889
|
type index$5_IDepartment = IDepartment;
|
|
@@ -893,6 +897,7 @@ type index$5_IRole = IRole;
|
|
|
893
897
|
type index$5_IRoleFeature = IRoleFeature;
|
|
894
898
|
type index$5_IRoleGroup = IRoleGroup;
|
|
895
899
|
type index$5_ISheetWork = ISheetWork;
|
|
900
|
+
type index$5_ISheetWorkManager = ISheetWorkManager;
|
|
896
901
|
type index$5_ISheetWorkPin = ISheetWorkPin;
|
|
897
902
|
type index$5_ISheetWorksCategory = ISheetWorksCategory;
|
|
898
903
|
type index$5_ITag = ITag;
|
|
@@ -902,7 +907,7 @@ type index$5_ITaskJobDiscuss = ITaskJobDiscuss;
|
|
|
902
907
|
type index$5_ITaskJobLabel = ITaskJobLabel;
|
|
903
908
|
type index$5_ITaskJobsGroup = ITaskJobsGroup;
|
|
904
909
|
declare namespace index$5 {
|
|
905
|
-
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 };
|
|
910
|
+
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 };
|
|
906
911
|
}
|
|
907
912
|
|
|
908
913
|
interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -916,9 +921,6 @@ interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
|
|
|
916
921
|
password: string;
|
|
917
922
|
code2FA: string;
|
|
918
923
|
code2FABackup: string;
|
|
919
|
-
typeContent: EAIModelContent | string;
|
|
920
|
-
typeImage: EAIModelImage | string;
|
|
921
|
-
typeVoice: EAIModelVoice | string;
|
|
922
924
|
status: EStatusEmail;
|
|
923
925
|
note: string;
|
|
924
926
|
}
|
|
@@ -1038,7 +1040,8 @@ interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceMo
|
|
|
1038
1040
|
|
|
1039
1041
|
interface IAccountEmailTag extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1040
1042
|
accountEmail: string;
|
|
1041
|
-
typeTag: EEmailTagType;
|
|
1043
|
+
typeTag: EEmailTagType | string;
|
|
1044
|
+
model: EAIModelContent | EAIModelImage | EAIModelVoice;
|
|
1042
1045
|
}
|
|
1043
1046
|
|
|
1044
1047
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|