automation-lib 4.9.85 → 4.9.87
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 +12 -13
- package/dist/index.d.ts +12 -13
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -610,14 +610,14 @@ interface IRoleFeature {
|
|
|
610
610
|
actions: Array<string>;
|
|
611
611
|
attributes: object;
|
|
612
612
|
}
|
|
613
|
-
interface IRole extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
613
|
+
interface IRole extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
614
614
|
role_name: string;
|
|
615
615
|
role_slug: string;
|
|
616
616
|
role_desc: string;
|
|
617
617
|
role_featuresRoles: Array<IRoleFeature>;
|
|
618
618
|
}
|
|
619
619
|
|
|
620
|
-
interface IRoleGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
620
|
+
interface IRoleGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
621
621
|
rg_name: string;
|
|
622
622
|
rg_slug: string;
|
|
623
623
|
rg_roles: Array<IRole> | Array<String>;
|
|
@@ -630,7 +630,7 @@ interface IDepartment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceMod
|
|
|
630
630
|
department_members: IUser[] | String[];
|
|
631
631
|
}
|
|
632
632
|
|
|
633
|
-
interface IUser extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
633
|
+
interface IUser extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
634
634
|
user_avatar: string;
|
|
635
635
|
user_fullName: string;
|
|
636
636
|
user_email: string;
|
|
@@ -737,13 +737,13 @@ interface IAccountAIImageTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInt
|
|
|
737
737
|
color: string;
|
|
738
738
|
}
|
|
739
739
|
|
|
740
|
-
interface IBlogsCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
740
|
+
interface IBlogsCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
741
741
|
bc_name: string;
|
|
742
742
|
bc_desc: string;
|
|
743
743
|
bc_slug: string;
|
|
744
744
|
}
|
|
745
745
|
|
|
746
|
-
interface IBlog extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
746
|
+
interface IBlog extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
747
747
|
blog_name: string;
|
|
748
748
|
blog_thumb: string;
|
|
749
749
|
blog_desc: string;
|
|
@@ -796,7 +796,7 @@ interface ITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
|
796
796
|
tag_color: string;
|
|
797
797
|
}
|
|
798
798
|
|
|
799
|
-
interface IManagerWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
799
|
+
interface IManagerWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
800
800
|
mw_name: string;
|
|
801
801
|
mw_user: string | IUser;
|
|
802
802
|
mw_department: string | IDepartment;
|
|
@@ -826,7 +826,7 @@ interface IDomain extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
|
826
826
|
domain_color: string;
|
|
827
827
|
}
|
|
828
828
|
|
|
829
|
-
interface IImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
829
|
+
interface IImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
830
830
|
image_key: string;
|
|
831
831
|
image_path: string;
|
|
832
832
|
image_url: string;
|
|
@@ -837,7 +837,7 @@ interface IImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
837
837
|
image_heigh: number;
|
|
838
838
|
}
|
|
839
839
|
|
|
840
|
-
interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
840
|
+
interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
841
841
|
lark_name: string;
|
|
842
842
|
lark_botHook: string;
|
|
843
843
|
lark_department: string | IDepartment;
|
|
@@ -845,7 +845,7 @@ interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCom
|
|
|
845
845
|
lark_typeObject: ELarkObject;
|
|
846
846
|
}
|
|
847
847
|
|
|
848
|
-
interface INotification extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
848
|
+
interface INotification extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
849
849
|
noti_link: string;
|
|
850
850
|
noti_message: string;
|
|
851
851
|
noti_author: IUser | string;
|
|
@@ -1037,7 +1037,7 @@ interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommo
|
|
|
1037
1037
|
pc_user: IUser | string;
|
|
1038
1038
|
}
|
|
1039
1039
|
|
|
1040
|
-
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1040
|
+
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1041
1041
|
ds_device: IDevice | string;
|
|
1042
1042
|
ds_deviceKey: string;
|
|
1043
1043
|
ds_typeSocial: ETypeSocial;
|
|
@@ -1060,7 +1060,7 @@ interface IDeviceAllowPermission {
|
|
|
1060
1060
|
isAllowPermissionPlayStore: boolean;
|
|
1061
1061
|
isAllowPermissionChrome: boolean;
|
|
1062
1062
|
}
|
|
1063
|
-
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1063
|
+
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1064
1064
|
device_pc: IPC | string;
|
|
1065
1065
|
device_name: string;
|
|
1066
1066
|
device_serial: string;
|
|
@@ -1314,7 +1314,7 @@ interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
1314
1314
|
logging_status: string;
|
|
1315
1315
|
}
|
|
1316
1316
|
|
|
1317
|
-
interface ISheetsTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1317
|
+
interface ISheetsTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1318
1318
|
sheet_name: string;
|
|
1319
1319
|
sheet_slug: string;
|
|
1320
1320
|
sheet_type: string;
|
|
@@ -1357,7 +1357,6 @@ interface ITaskAIItemGroup {
|
|
|
1357
1357
|
}
|
|
1358
1358
|
interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1359
1359
|
accountAI: string | IAccountAI;
|
|
1360
|
-
accountVPS: string | IAccountVPS;
|
|
1361
1360
|
sheetID: string;
|
|
1362
1361
|
sheetUrl: string;
|
|
1363
1362
|
sheetName: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -610,14 +610,14 @@ interface IRoleFeature {
|
|
|
610
610
|
actions: Array<string>;
|
|
611
611
|
attributes: object;
|
|
612
612
|
}
|
|
613
|
-
interface IRole extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
613
|
+
interface IRole extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
614
614
|
role_name: string;
|
|
615
615
|
role_slug: string;
|
|
616
616
|
role_desc: string;
|
|
617
617
|
role_featuresRoles: Array<IRoleFeature>;
|
|
618
618
|
}
|
|
619
619
|
|
|
620
|
-
interface IRoleGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
620
|
+
interface IRoleGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
621
621
|
rg_name: string;
|
|
622
622
|
rg_slug: string;
|
|
623
623
|
rg_roles: Array<IRole> | Array<String>;
|
|
@@ -630,7 +630,7 @@ interface IDepartment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceMod
|
|
|
630
630
|
department_members: IUser[] | String[];
|
|
631
631
|
}
|
|
632
632
|
|
|
633
|
-
interface IUser extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
633
|
+
interface IUser extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
634
634
|
user_avatar: string;
|
|
635
635
|
user_fullName: string;
|
|
636
636
|
user_email: string;
|
|
@@ -737,13 +737,13 @@ interface IAccountAIImageTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInt
|
|
|
737
737
|
color: string;
|
|
738
738
|
}
|
|
739
739
|
|
|
740
|
-
interface IBlogsCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
740
|
+
interface IBlogsCategory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
741
741
|
bc_name: string;
|
|
742
742
|
bc_desc: string;
|
|
743
743
|
bc_slug: string;
|
|
744
744
|
}
|
|
745
745
|
|
|
746
|
-
interface IBlog extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
746
|
+
interface IBlog extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
747
747
|
blog_name: string;
|
|
748
748
|
blog_thumb: string;
|
|
749
749
|
blog_desc: string;
|
|
@@ -796,7 +796,7 @@ interface ITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
|
796
796
|
tag_color: string;
|
|
797
797
|
}
|
|
798
798
|
|
|
799
|
-
interface IManagerWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
799
|
+
interface IManagerWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
800
800
|
mw_name: string;
|
|
801
801
|
mw_user: string | IUser;
|
|
802
802
|
mw_department: string | IDepartment;
|
|
@@ -826,7 +826,7 @@ interface IDomain extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
|
826
826
|
domain_color: string;
|
|
827
827
|
}
|
|
828
828
|
|
|
829
|
-
interface IImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
829
|
+
interface IImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
830
830
|
image_key: string;
|
|
831
831
|
image_path: string;
|
|
832
832
|
image_url: string;
|
|
@@ -837,7 +837,7 @@ interface IImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
837
837
|
image_heigh: number;
|
|
838
838
|
}
|
|
839
839
|
|
|
840
|
-
interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
840
|
+
interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
841
841
|
lark_name: string;
|
|
842
842
|
lark_botHook: string;
|
|
843
843
|
lark_department: string | IDepartment;
|
|
@@ -845,7 +845,7 @@ interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCom
|
|
|
845
845
|
lark_typeObject: ELarkObject;
|
|
846
846
|
}
|
|
847
847
|
|
|
848
|
-
interface INotification extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
848
|
+
interface INotification extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
849
849
|
noti_link: string;
|
|
850
850
|
noti_message: string;
|
|
851
851
|
noti_author: IUser | string;
|
|
@@ -1037,7 +1037,7 @@ interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommo
|
|
|
1037
1037
|
pc_user: IUser | string;
|
|
1038
1038
|
}
|
|
1039
1039
|
|
|
1040
|
-
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1040
|
+
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1041
1041
|
ds_device: IDevice | string;
|
|
1042
1042
|
ds_deviceKey: string;
|
|
1043
1043
|
ds_typeSocial: ETypeSocial;
|
|
@@ -1060,7 +1060,7 @@ interface IDeviceAllowPermission {
|
|
|
1060
1060
|
isAllowPermissionPlayStore: boolean;
|
|
1061
1061
|
isAllowPermissionChrome: boolean;
|
|
1062
1062
|
}
|
|
1063
|
-
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1063
|
+
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1064
1064
|
device_pc: IPC | string;
|
|
1065
1065
|
device_name: string;
|
|
1066
1066
|
device_serial: string;
|
|
@@ -1314,7 +1314,7 @@ interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
1314
1314
|
logging_status: string;
|
|
1315
1315
|
}
|
|
1316
1316
|
|
|
1317
|
-
interface ISheetsTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1317
|
+
interface ISheetsTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1318
1318
|
sheet_name: string;
|
|
1319
1319
|
sheet_slug: string;
|
|
1320
1320
|
sheet_type: string;
|
|
@@ -1357,7 +1357,6 @@ interface ITaskAIItemGroup {
|
|
|
1357
1357
|
}
|
|
1358
1358
|
interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1359
1359
|
accountAI: string | IAccountAI;
|
|
1360
|
-
accountVPS: string | IAccountVPS;
|
|
1361
1360
|
sheetID: string;
|
|
1362
1361
|
sheetUrl: string;
|
|
1363
1362
|
sheetName: string;
|