automation-lib 5.0.29 → 5.0.31
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 +36 -7
- package/dist/index.d.ts +36 -7
- package/dist/index.js +15 -6
- package/dist/index.mjs +15 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -463,9 +463,10 @@ declare enum EStatusBlog {
|
|
|
463
463
|
Accept = "Accept"
|
|
464
464
|
}
|
|
465
465
|
|
|
466
|
-
declare enum
|
|
467
|
-
|
|
468
|
-
|
|
466
|
+
declare enum EStatusTeam {
|
|
467
|
+
Active = "Active",
|
|
468
|
+
InActive = "InActive",
|
|
469
|
+
Draft = "Draft"
|
|
469
470
|
}
|
|
470
471
|
|
|
471
472
|
declare enum EStatusTaskJob {
|
|
@@ -475,6 +476,11 @@ declare enum EStatusTaskJob {
|
|
|
475
476
|
Error = "Error"
|
|
476
477
|
}
|
|
477
478
|
|
|
479
|
+
declare enum EStatusSheetWork {
|
|
480
|
+
Error = "Error",
|
|
481
|
+
Accept = "Accept"
|
|
482
|
+
}
|
|
483
|
+
|
|
478
484
|
declare enum EStatusTaskJobGroup {
|
|
479
485
|
Late = "Late",
|
|
480
486
|
Success = "Success",
|
|
@@ -511,10 +517,12 @@ type index$f_EStatusTaskJobGroup = EStatusTaskJobGroup;
|
|
|
511
517
|
declare const index$f_EStatusTaskJobGroup: typeof EStatusTaskJobGroup;
|
|
512
518
|
type index$f_EStatusTaskToolSocials = EStatusTaskToolSocials;
|
|
513
519
|
declare const index$f_EStatusTaskToolSocials: typeof EStatusTaskToolSocials;
|
|
520
|
+
type index$f_EStatusTeam = EStatusTeam;
|
|
521
|
+
declare const index$f_EStatusTeam: typeof EStatusTeam;
|
|
514
522
|
type index$f_EStatusVPS = EStatusVPS;
|
|
515
523
|
declare const index$f_EStatusVPS: typeof EStatusVPS;
|
|
516
524
|
declare namespace index$f {
|
|
517
|
-
export { index$f_EStatusAccountCanva as EStatusAccountCanva, index$f_EStatusAccountDrive as EStatusAccountDrive, index$f_EStatusActive as EStatusActive, index$f_EStatusBlog as EStatusBlog, index$f_EStatusCommon as EStatusCommon, index$f_EStatusExecuteCommon as EStatusExecuteCommon, index$f_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$f_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$f_EStatusSheetWork as EStatusSheetWork, index$f_EStatusTaskAIContent as EStatusTaskAIContent, index$f_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$f_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$f_EStatusTaskJob as EStatusTaskJob, index$f_EStatusTaskJobGroup as EStatusTaskJobGroup, index$f_EStatusTaskToolSocials as EStatusTaskToolSocials, index$f_EStatusVPS as EStatusVPS };
|
|
525
|
+
export { index$f_EStatusAccountCanva as EStatusAccountCanva, index$f_EStatusAccountDrive as EStatusAccountDrive, index$f_EStatusActive as EStatusActive, index$f_EStatusBlog as EStatusBlog, index$f_EStatusCommon as EStatusCommon, index$f_EStatusExecuteCommon as EStatusExecuteCommon, index$f_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$f_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$f_EStatusSheetWork as EStatusSheetWork, index$f_EStatusTaskAIContent as EStatusTaskAIContent, index$f_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$f_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$f_EStatusTaskJob as EStatusTaskJob, index$f_EStatusTaskJobGroup as EStatusTaskJobGroup, index$f_EStatusTaskToolSocials as EStatusTaskToolSocials, index$f_EStatusTeam as EStatusTeam, index$f_EStatusVPS as EStatusVPS };
|
|
518
526
|
}
|
|
519
527
|
|
|
520
528
|
declare enum EFolderImageAI {
|
|
@@ -739,8 +747,7 @@ type TTaskInstagramFollow = {
|
|
|
739
747
|
sheetRowId: string;
|
|
740
748
|
idea: string;
|
|
741
749
|
niche: string;
|
|
742
|
-
|
|
743
|
-
usernameFollowThreads: string;
|
|
750
|
+
listUsernameFollowInstagram: string[];
|
|
744
751
|
};
|
|
745
752
|
|
|
746
753
|
type TTaskInstagramPost = {
|
|
@@ -1046,6 +1053,25 @@ interface IBlog extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCom
|
|
|
1046
1053
|
blog_usersPermission: string[] | IUser[];
|
|
1047
1054
|
}
|
|
1048
1055
|
|
|
1056
|
+
interface ITeam extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1057
|
+
name: string;
|
|
1058
|
+
department: IDepartment;
|
|
1059
|
+
listTypeSocial: ETypeSocial[];
|
|
1060
|
+
description: string;
|
|
1061
|
+
leader: string | IUser;
|
|
1062
|
+
status: EStatusTeam;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
interface ITeamRole extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1066
|
+
team: string | ITeam;
|
|
1067
|
+
role: string | IRole;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
interface ITeamMember extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1071
|
+
team: string | ITeam;
|
|
1072
|
+
member: string | IUser;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1049
1075
|
interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1050
1076
|
lark_name: string;
|
|
1051
1077
|
lark_botHook: string;
|
|
@@ -1129,8 +1155,11 @@ type index$9_ITaskJobCheckList = ITaskJobCheckList;
|
|
|
1129
1155
|
type index$9_ITaskJobDiscuss = ITaskJobDiscuss;
|
|
1130
1156
|
type index$9_ITaskJobLabel = ITaskJobLabel;
|
|
1131
1157
|
type index$9_ITaskJobsGroup = ITaskJobsGroup;
|
|
1158
|
+
type index$9_ITeam = ITeam;
|
|
1159
|
+
type index$9_ITeamMember = ITeamMember;
|
|
1160
|
+
type index$9_ITeamRole = ITeamRole;
|
|
1132
1161
|
declare namespace index$9 {
|
|
1133
|
-
export type { index$9_IBlog as IBlog, index$9_IBlogsCategory as IBlogsCategory, index$9_IDepartment as IDepartment, index$9_IDomain as IDomain, index$9_IImage as IImage, index$9_ILark as ILark, index$9_IManagerWork as IManagerWork, index$9_IManagerWorkPin as IManagerWorkPin, index$9_IRole as IRole, index$9_IRoleFeature as IRoleFeature, index$9_IRoleGroup as IRoleGroup, index$9_ISheetWork as ISheetWork, index$9_ISheetWorkManager as ISheetWorkManager, index$9_ISheetWorkPin as ISheetWorkPin, index$9_ISheetWorksCategory as ISheetWorksCategory, index$9_ITag as ITag, index$9_ITaskJob as ITaskJob, index$9_ITaskJobCheckList as ITaskJobCheckList, index$9_ITaskJobDiscuss as ITaskJobDiscuss, index$9_ITaskJobLabel as ITaskJobLabel, index$9_ITaskJobsGroup as ITaskJobsGroup };
|
|
1162
|
+
export type { index$9_IBlog as IBlog, index$9_IBlogsCategory as IBlogsCategory, index$9_IDepartment as IDepartment, index$9_IDomain as IDomain, index$9_IImage as IImage, index$9_ILark as ILark, index$9_IManagerWork as IManagerWork, index$9_IManagerWorkPin as IManagerWorkPin, index$9_IRole as IRole, index$9_IRoleFeature as IRoleFeature, index$9_IRoleGroup as IRoleGroup, index$9_ISheetWork as ISheetWork, index$9_ISheetWorkManager as ISheetWorkManager, index$9_ISheetWorkPin as ISheetWorkPin, index$9_ISheetWorksCategory as ISheetWorksCategory, index$9_ITag as ITag, index$9_ITaskJob as ITaskJob, index$9_ITaskJobCheckList as ITaskJobCheckList, index$9_ITaskJobDiscuss as ITaskJobDiscuss, index$9_ITaskJobLabel as ITaskJobLabel, index$9_ITaskJobsGroup as ITaskJobsGroup, index$9_ITeam as ITeam, index$9_ITeamMember as ITeamMember, index$9_ITeamRole as ITeamRole };
|
|
1134
1163
|
}
|
|
1135
1164
|
|
|
1136
1165
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -463,9 +463,10 @@ declare enum EStatusBlog {
|
|
|
463
463
|
Accept = "Accept"
|
|
464
464
|
}
|
|
465
465
|
|
|
466
|
-
declare enum
|
|
467
|
-
|
|
468
|
-
|
|
466
|
+
declare enum EStatusTeam {
|
|
467
|
+
Active = "Active",
|
|
468
|
+
InActive = "InActive",
|
|
469
|
+
Draft = "Draft"
|
|
469
470
|
}
|
|
470
471
|
|
|
471
472
|
declare enum EStatusTaskJob {
|
|
@@ -475,6 +476,11 @@ declare enum EStatusTaskJob {
|
|
|
475
476
|
Error = "Error"
|
|
476
477
|
}
|
|
477
478
|
|
|
479
|
+
declare enum EStatusSheetWork {
|
|
480
|
+
Error = "Error",
|
|
481
|
+
Accept = "Accept"
|
|
482
|
+
}
|
|
483
|
+
|
|
478
484
|
declare enum EStatusTaskJobGroup {
|
|
479
485
|
Late = "Late",
|
|
480
486
|
Success = "Success",
|
|
@@ -511,10 +517,12 @@ type index$f_EStatusTaskJobGroup = EStatusTaskJobGroup;
|
|
|
511
517
|
declare const index$f_EStatusTaskJobGroup: typeof EStatusTaskJobGroup;
|
|
512
518
|
type index$f_EStatusTaskToolSocials = EStatusTaskToolSocials;
|
|
513
519
|
declare const index$f_EStatusTaskToolSocials: typeof EStatusTaskToolSocials;
|
|
520
|
+
type index$f_EStatusTeam = EStatusTeam;
|
|
521
|
+
declare const index$f_EStatusTeam: typeof EStatusTeam;
|
|
514
522
|
type index$f_EStatusVPS = EStatusVPS;
|
|
515
523
|
declare const index$f_EStatusVPS: typeof EStatusVPS;
|
|
516
524
|
declare namespace index$f {
|
|
517
|
-
export { index$f_EStatusAccountCanva as EStatusAccountCanva, index$f_EStatusAccountDrive as EStatusAccountDrive, index$f_EStatusActive as EStatusActive, index$f_EStatusBlog as EStatusBlog, index$f_EStatusCommon as EStatusCommon, index$f_EStatusExecuteCommon as EStatusExecuteCommon, index$f_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$f_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$f_EStatusSheetWork as EStatusSheetWork, index$f_EStatusTaskAIContent as EStatusTaskAIContent, index$f_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$f_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$f_EStatusTaskJob as EStatusTaskJob, index$f_EStatusTaskJobGroup as EStatusTaskJobGroup, index$f_EStatusTaskToolSocials as EStatusTaskToolSocials, index$f_EStatusVPS as EStatusVPS };
|
|
525
|
+
export { index$f_EStatusAccountCanva as EStatusAccountCanva, index$f_EStatusAccountDrive as EStatusAccountDrive, index$f_EStatusActive as EStatusActive, index$f_EStatusBlog as EStatusBlog, index$f_EStatusCommon as EStatusCommon, index$f_EStatusExecuteCommon as EStatusExecuteCommon, index$f_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$f_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$f_EStatusSheetWork as EStatusSheetWork, index$f_EStatusTaskAIContent as EStatusTaskAIContent, index$f_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$f_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$f_EStatusTaskJob as EStatusTaskJob, index$f_EStatusTaskJobGroup as EStatusTaskJobGroup, index$f_EStatusTaskToolSocials as EStatusTaskToolSocials, index$f_EStatusTeam as EStatusTeam, index$f_EStatusVPS as EStatusVPS };
|
|
518
526
|
}
|
|
519
527
|
|
|
520
528
|
declare enum EFolderImageAI {
|
|
@@ -739,8 +747,7 @@ type TTaskInstagramFollow = {
|
|
|
739
747
|
sheetRowId: string;
|
|
740
748
|
idea: string;
|
|
741
749
|
niche: string;
|
|
742
|
-
|
|
743
|
-
usernameFollowThreads: string;
|
|
750
|
+
listUsernameFollowInstagram: string[];
|
|
744
751
|
};
|
|
745
752
|
|
|
746
753
|
type TTaskInstagramPost = {
|
|
@@ -1046,6 +1053,25 @@ interface IBlog extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCom
|
|
|
1046
1053
|
blog_usersPermission: string[] | IUser[];
|
|
1047
1054
|
}
|
|
1048
1055
|
|
|
1056
|
+
interface ITeam extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1057
|
+
name: string;
|
|
1058
|
+
department: IDepartment;
|
|
1059
|
+
listTypeSocial: ETypeSocial[];
|
|
1060
|
+
description: string;
|
|
1061
|
+
leader: string | IUser;
|
|
1062
|
+
status: EStatusTeam;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
interface ITeamRole extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1066
|
+
team: string | ITeam;
|
|
1067
|
+
role: string | IRole;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
interface ITeamMember extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1071
|
+
team: string | ITeam;
|
|
1072
|
+
member: string | IUser;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1049
1075
|
interface ILark extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1050
1076
|
lark_name: string;
|
|
1051
1077
|
lark_botHook: string;
|
|
@@ -1129,8 +1155,11 @@ type index$9_ITaskJobCheckList = ITaskJobCheckList;
|
|
|
1129
1155
|
type index$9_ITaskJobDiscuss = ITaskJobDiscuss;
|
|
1130
1156
|
type index$9_ITaskJobLabel = ITaskJobLabel;
|
|
1131
1157
|
type index$9_ITaskJobsGroup = ITaskJobsGroup;
|
|
1158
|
+
type index$9_ITeam = ITeam;
|
|
1159
|
+
type index$9_ITeamMember = ITeamMember;
|
|
1160
|
+
type index$9_ITeamRole = ITeamRole;
|
|
1132
1161
|
declare namespace index$9 {
|
|
1133
|
-
export type { index$9_IBlog as IBlog, index$9_IBlogsCategory as IBlogsCategory, index$9_IDepartment as IDepartment, index$9_IDomain as IDomain, index$9_IImage as IImage, index$9_ILark as ILark, index$9_IManagerWork as IManagerWork, index$9_IManagerWorkPin as IManagerWorkPin, index$9_IRole as IRole, index$9_IRoleFeature as IRoleFeature, index$9_IRoleGroup as IRoleGroup, index$9_ISheetWork as ISheetWork, index$9_ISheetWorkManager as ISheetWorkManager, index$9_ISheetWorkPin as ISheetWorkPin, index$9_ISheetWorksCategory as ISheetWorksCategory, index$9_ITag as ITag, index$9_ITaskJob as ITaskJob, index$9_ITaskJobCheckList as ITaskJobCheckList, index$9_ITaskJobDiscuss as ITaskJobDiscuss, index$9_ITaskJobLabel as ITaskJobLabel, index$9_ITaskJobsGroup as ITaskJobsGroup };
|
|
1162
|
+
export type { index$9_IBlog as IBlog, index$9_IBlogsCategory as IBlogsCategory, index$9_IDepartment as IDepartment, index$9_IDomain as IDomain, index$9_IImage as IImage, index$9_ILark as ILark, index$9_IManagerWork as IManagerWork, index$9_IManagerWorkPin as IManagerWorkPin, index$9_IRole as IRole, index$9_IRoleFeature as IRoleFeature, index$9_IRoleGroup as IRoleGroup, index$9_ISheetWork as ISheetWork, index$9_ISheetWorkManager as ISheetWorkManager, index$9_ISheetWorkPin as ISheetWorkPin, index$9_ISheetWorksCategory as ISheetWorksCategory, index$9_ITag as ITag, index$9_ITaskJob as ITaskJob, index$9_ITaskJobCheckList as ITaskJobCheckList, index$9_ITaskJobDiscuss as ITaskJobDiscuss, index$9_ITaskJobLabel as ITaskJobLabel, index$9_ITaskJobsGroup as ITaskJobsGroup, index$9_ITeam as ITeam, index$9_ITeamMember as ITeamMember, index$9_ITeamRole as ITeamRole };
|
|
1134
1163
|
}
|
|
1135
1164
|
|
|
1136
1165
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -447,6 +447,7 @@ __export(status_exports, {
|
|
|
447
447
|
EStatusTaskJob: () => EStatusTaskJob,
|
|
448
448
|
EStatusTaskJobGroup: () => EStatusTaskJobGroup,
|
|
449
449
|
EStatusTaskToolSocials: () => EStatusTaskToolSocials,
|
|
450
|
+
EStatusTeam: () => EStatusTeam,
|
|
450
451
|
EStatusVPS: () => EStatusVPS
|
|
451
452
|
});
|
|
452
453
|
|
|
@@ -576,12 +577,13 @@ var EStatusBlog = /* @__PURE__ */ ((EStatusBlog2) => {
|
|
|
576
577
|
return EStatusBlog2;
|
|
577
578
|
})(EStatusBlog || {});
|
|
578
579
|
|
|
579
|
-
// src/enums/status/web/
|
|
580
|
-
var
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
580
|
+
// src/enums/status/web/EStatusTeam.enum.ts
|
|
581
|
+
var EStatusTeam = /* @__PURE__ */ ((EStatusTeam2) => {
|
|
582
|
+
EStatusTeam2["Active"] = "Active";
|
|
583
|
+
EStatusTeam2["InActive"] = "InActive";
|
|
584
|
+
EStatusTeam2["Draft"] = "Draft";
|
|
585
|
+
return EStatusTeam2;
|
|
586
|
+
})(EStatusTeam || {});
|
|
585
587
|
|
|
586
588
|
// src/enums/status/web/EStatusTaskJob.enum.ts
|
|
587
589
|
var EStatusTaskJob = /* @__PURE__ */ ((EStatusTaskJob2) => {
|
|
@@ -592,6 +594,13 @@ var EStatusTaskJob = /* @__PURE__ */ ((EStatusTaskJob2) => {
|
|
|
592
594
|
return EStatusTaskJob2;
|
|
593
595
|
})(EStatusTaskJob || {});
|
|
594
596
|
|
|
597
|
+
// src/enums/status/web/EStatusSheetWork.enum.ts
|
|
598
|
+
var EStatusSheetWork = /* @__PURE__ */ ((EStatusSheetWork2) => {
|
|
599
|
+
EStatusSheetWork2["Error"] = "Error";
|
|
600
|
+
EStatusSheetWork2["Accept"] = "Accept";
|
|
601
|
+
return EStatusSheetWork2;
|
|
602
|
+
})(EStatusSheetWork || {});
|
|
603
|
+
|
|
595
604
|
// src/enums/status/web/EStatusTaskJobGroup.enum.ts
|
|
596
605
|
var EStatusTaskJobGroup = /* @__PURE__ */ ((EStatusTaskJobGroup2) => {
|
|
597
606
|
EStatusTaskJobGroup2["Late"] = "Late";
|
package/dist/index.mjs
CHANGED
|
@@ -423,6 +423,7 @@ __export(status_exports, {
|
|
|
423
423
|
EStatusTaskJob: () => EStatusTaskJob,
|
|
424
424
|
EStatusTaskJobGroup: () => EStatusTaskJobGroup,
|
|
425
425
|
EStatusTaskToolSocials: () => EStatusTaskToolSocials,
|
|
426
|
+
EStatusTeam: () => EStatusTeam,
|
|
426
427
|
EStatusVPS: () => EStatusVPS
|
|
427
428
|
});
|
|
428
429
|
|
|
@@ -552,12 +553,13 @@ var EStatusBlog = /* @__PURE__ */ ((EStatusBlog2) => {
|
|
|
552
553
|
return EStatusBlog2;
|
|
553
554
|
})(EStatusBlog || {});
|
|
554
555
|
|
|
555
|
-
// src/enums/status/web/
|
|
556
|
-
var
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
556
|
+
// src/enums/status/web/EStatusTeam.enum.ts
|
|
557
|
+
var EStatusTeam = /* @__PURE__ */ ((EStatusTeam2) => {
|
|
558
|
+
EStatusTeam2["Active"] = "Active";
|
|
559
|
+
EStatusTeam2["InActive"] = "InActive";
|
|
560
|
+
EStatusTeam2["Draft"] = "Draft";
|
|
561
|
+
return EStatusTeam2;
|
|
562
|
+
})(EStatusTeam || {});
|
|
561
563
|
|
|
562
564
|
// src/enums/status/web/EStatusTaskJob.enum.ts
|
|
563
565
|
var EStatusTaskJob = /* @__PURE__ */ ((EStatusTaskJob2) => {
|
|
@@ -568,6 +570,13 @@ var EStatusTaskJob = /* @__PURE__ */ ((EStatusTaskJob2) => {
|
|
|
568
570
|
return EStatusTaskJob2;
|
|
569
571
|
})(EStatusTaskJob || {});
|
|
570
572
|
|
|
573
|
+
// src/enums/status/web/EStatusSheetWork.enum.ts
|
|
574
|
+
var EStatusSheetWork = /* @__PURE__ */ ((EStatusSheetWork2) => {
|
|
575
|
+
EStatusSheetWork2["Error"] = "Error";
|
|
576
|
+
EStatusSheetWork2["Accept"] = "Accept";
|
|
577
|
+
return EStatusSheetWork2;
|
|
578
|
+
})(EStatusSheetWork || {});
|
|
579
|
+
|
|
571
580
|
// src/enums/status/web/EStatusTaskJobGroup.enum.ts
|
|
572
581
|
var EStatusTaskJobGroup = /* @__PURE__ */ ((EStatusTaskJobGroup2) => {
|
|
573
582
|
EStatusTaskJobGroup2["Late"] = "Late";
|