automation-lib 5.0.101 → 5.0.103
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 -10
- package/dist/index.d.ts +12 -10
- package/dist/index.js +12 -1
- package/dist/index.mjs +12 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -85,7 +85,7 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
85
85
|
ACCOUNTS_CANVA: string;
|
|
86
86
|
ACCOUNTS_DRIVE: string;
|
|
87
87
|
ACCOUNTS_SOCIALS: string;
|
|
88
|
-
|
|
88
|
+
ACCOUNTS_SOCIALS_RAW: string;
|
|
89
89
|
ACCOUNTS_GROUPS: string;
|
|
90
90
|
ACCOUNTS_STATUS: string;
|
|
91
91
|
ACCOUNTS_DETAILS: string;
|
|
@@ -455,6 +455,14 @@ declare enum EStatusAccountSocial {
|
|
|
455
455
|
Unknown = "Unknown"
|
|
456
456
|
}
|
|
457
457
|
|
|
458
|
+
declare enum EStatusSyncAccountSocial {
|
|
459
|
+
New = "New",
|
|
460
|
+
Done = "Done",
|
|
461
|
+
Waiting = "Waiting",
|
|
462
|
+
Missing = "Missing",
|
|
463
|
+
Failed = "Failed"
|
|
464
|
+
}
|
|
465
|
+
|
|
458
466
|
declare enum EStatusLoginAccountEmail {
|
|
459
467
|
LoginSuccess = "LoginSuccess",
|
|
460
468
|
LoginError = "LoginError"
|
|
@@ -623,6 +631,8 @@ type index$g_EStatusSetupDeviceSystem = EStatusSetupDeviceSystem;
|
|
|
623
631
|
declare const index$g_EStatusSetupDeviceSystem: typeof EStatusSetupDeviceSystem;
|
|
624
632
|
type index$g_EStatusSheetWork = EStatusSheetWork;
|
|
625
633
|
declare const index$g_EStatusSheetWork: typeof EStatusSheetWork;
|
|
634
|
+
type index$g_EStatusSyncAccountSocial = EStatusSyncAccountSocial;
|
|
635
|
+
declare const index$g_EStatusSyncAccountSocial: typeof EStatusSyncAccountSocial;
|
|
626
636
|
type index$g_EStatusTaskAIContent = EStatusTaskAIContent;
|
|
627
637
|
declare const index$g_EStatusTaskAIContent: typeof EStatusTaskAIContent;
|
|
628
638
|
type index$g_EStatusTaskAvatarCover = EStatusTaskAvatarCover;
|
|
@@ -640,7 +650,7 @@ declare const index$g_EStatusTeam: typeof EStatusTeam;
|
|
|
640
650
|
type index$g_EStatusVPS = EStatusVPS;
|
|
641
651
|
declare const index$g_EStatusVPS: typeof EStatusVPS;
|
|
642
652
|
declare namespace index$g {
|
|
643
|
-
export { index$g_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$g_EStatusAccountCanva as EStatusAccountCanva, index$g_EStatusAccountDrive as EStatusAccountDrive, index$g_EStatusAccountSocial as EStatusAccountSocial, index$g_EStatusAccountVPN as EStatusAccountVPN, index$g_EStatusActive as EStatusActive, index$g_EStatusBlog as EStatusBlog, index$g_EStatusChangeInfo as EStatusChangeInfo, index$g_EStatusCommon as EStatusCommon, index$g_EStatusConnectDevice as EStatusConnectDevice, index$g_EStatusExecuteCommon as EStatusExecuteCommon, index$g_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$g_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$g_EStatusSetupDeviceSystem as EStatusSetupDeviceSystem, index$g_EStatusSheetWork as EStatusSheetWork, index$g_EStatusTaskAIContent as EStatusTaskAIContent, index$g_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$g_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$g_EStatusTaskJob as EStatusTaskJob, index$g_EStatusTaskJobGroup as EStatusTaskJobGroup, index$g_EStatusTaskToolSocials as EStatusTaskToolSocials, index$g_EStatusTeam as EStatusTeam, index$g_EStatusVPS as EStatusVPS };
|
|
653
|
+
export { index$g_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$g_EStatusAccountCanva as EStatusAccountCanva, index$g_EStatusAccountDrive as EStatusAccountDrive, index$g_EStatusAccountSocial as EStatusAccountSocial, index$g_EStatusAccountVPN as EStatusAccountVPN, index$g_EStatusActive as EStatusActive, index$g_EStatusBlog as EStatusBlog, index$g_EStatusChangeInfo as EStatusChangeInfo, index$g_EStatusCommon as EStatusCommon, index$g_EStatusConnectDevice as EStatusConnectDevice, index$g_EStatusExecuteCommon as EStatusExecuteCommon, index$g_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$g_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$g_EStatusSetupDeviceSystem as EStatusSetupDeviceSystem, index$g_EStatusSheetWork as EStatusSheetWork, index$g_EStatusSyncAccountSocial as EStatusSyncAccountSocial, index$g_EStatusTaskAIContent as EStatusTaskAIContent, index$g_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$g_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$g_EStatusTaskJob as EStatusTaskJob, index$g_EStatusTaskJobGroup as EStatusTaskJobGroup, index$g_EStatusTaskToolSocials as EStatusTaskToolSocials, index$g_EStatusTeam as EStatusTeam, index$g_EStatusVPS as EStatusVPS };
|
|
644
654
|
}
|
|
645
655
|
|
|
646
656
|
declare enum EFolderImageAI {
|
|
@@ -1644,14 +1654,6 @@ interface IDeviceSettingForVPN extends BoInterfaceModelsCommon.IBaseModel, BoInt
|
|
|
1644
1654
|
accountVPN: string | IAccountVPN;
|
|
1645
1655
|
}
|
|
1646
1656
|
|
|
1647
|
-
declare enum EStatusSyncAccountSocial {
|
|
1648
|
-
New = "New",
|
|
1649
|
-
Done = "Done",
|
|
1650
|
-
Waiting = "Waiting",
|
|
1651
|
-
Missing = "Missing",
|
|
1652
|
-
Failed = "Failed"
|
|
1653
|
-
}
|
|
1654
|
-
|
|
1655
1657
|
interface IAccountRaw extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1656
1658
|
group: IAccountsGroup | string;
|
|
1657
1659
|
typeSocial: ETypeSocial;
|
package/dist/index.d.ts
CHANGED
|
@@ -85,7 +85,7 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
85
85
|
ACCOUNTS_CANVA: string;
|
|
86
86
|
ACCOUNTS_DRIVE: string;
|
|
87
87
|
ACCOUNTS_SOCIALS: string;
|
|
88
|
-
|
|
88
|
+
ACCOUNTS_SOCIALS_RAW: string;
|
|
89
89
|
ACCOUNTS_GROUPS: string;
|
|
90
90
|
ACCOUNTS_STATUS: string;
|
|
91
91
|
ACCOUNTS_DETAILS: string;
|
|
@@ -455,6 +455,14 @@ declare enum EStatusAccountSocial {
|
|
|
455
455
|
Unknown = "Unknown"
|
|
456
456
|
}
|
|
457
457
|
|
|
458
|
+
declare enum EStatusSyncAccountSocial {
|
|
459
|
+
New = "New",
|
|
460
|
+
Done = "Done",
|
|
461
|
+
Waiting = "Waiting",
|
|
462
|
+
Missing = "Missing",
|
|
463
|
+
Failed = "Failed"
|
|
464
|
+
}
|
|
465
|
+
|
|
458
466
|
declare enum EStatusLoginAccountEmail {
|
|
459
467
|
LoginSuccess = "LoginSuccess",
|
|
460
468
|
LoginError = "LoginError"
|
|
@@ -623,6 +631,8 @@ type index$g_EStatusSetupDeviceSystem = EStatusSetupDeviceSystem;
|
|
|
623
631
|
declare const index$g_EStatusSetupDeviceSystem: typeof EStatusSetupDeviceSystem;
|
|
624
632
|
type index$g_EStatusSheetWork = EStatusSheetWork;
|
|
625
633
|
declare const index$g_EStatusSheetWork: typeof EStatusSheetWork;
|
|
634
|
+
type index$g_EStatusSyncAccountSocial = EStatusSyncAccountSocial;
|
|
635
|
+
declare const index$g_EStatusSyncAccountSocial: typeof EStatusSyncAccountSocial;
|
|
626
636
|
type index$g_EStatusTaskAIContent = EStatusTaskAIContent;
|
|
627
637
|
declare const index$g_EStatusTaskAIContent: typeof EStatusTaskAIContent;
|
|
628
638
|
type index$g_EStatusTaskAvatarCover = EStatusTaskAvatarCover;
|
|
@@ -640,7 +650,7 @@ declare const index$g_EStatusTeam: typeof EStatusTeam;
|
|
|
640
650
|
type index$g_EStatusVPS = EStatusVPS;
|
|
641
651
|
declare const index$g_EStatusVPS: typeof EStatusVPS;
|
|
642
652
|
declare namespace index$g {
|
|
643
|
-
export { index$g_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$g_EStatusAccountCanva as EStatusAccountCanva, index$g_EStatusAccountDrive as EStatusAccountDrive, index$g_EStatusAccountSocial as EStatusAccountSocial, index$g_EStatusAccountVPN as EStatusAccountVPN, index$g_EStatusActive as EStatusActive, index$g_EStatusBlog as EStatusBlog, index$g_EStatusChangeInfo as EStatusChangeInfo, index$g_EStatusCommon as EStatusCommon, index$g_EStatusConnectDevice as EStatusConnectDevice, index$g_EStatusExecuteCommon as EStatusExecuteCommon, index$g_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$g_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$g_EStatusSetupDeviceSystem as EStatusSetupDeviceSystem, index$g_EStatusSheetWork as EStatusSheetWork, index$g_EStatusTaskAIContent as EStatusTaskAIContent, index$g_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$g_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$g_EStatusTaskJob as EStatusTaskJob, index$g_EStatusTaskJobGroup as EStatusTaskJobGroup, index$g_EStatusTaskToolSocials as EStatusTaskToolSocials, index$g_EStatusTeam as EStatusTeam, index$g_EStatusVPS as EStatusVPS };
|
|
653
|
+
export { index$g_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$g_EStatusAccountCanva as EStatusAccountCanva, index$g_EStatusAccountDrive as EStatusAccountDrive, index$g_EStatusAccountSocial as EStatusAccountSocial, index$g_EStatusAccountVPN as EStatusAccountVPN, index$g_EStatusActive as EStatusActive, index$g_EStatusBlog as EStatusBlog, index$g_EStatusChangeInfo as EStatusChangeInfo, index$g_EStatusCommon as EStatusCommon, index$g_EStatusConnectDevice as EStatusConnectDevice, index$g_EStatusExecuteCommon as EStatusExecuteCommon, index$g_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$g_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$g_EStatusSetupDeviceSystem as EStatusSetupDeviceSystem, index$g_EStatusSheetWork as EStatusSheetWork, index$g_EStatusSyncAccountSocial as EStatusSyncAccountSocial, index$g_EStatusTaskAIContent as EStatusTaskAIContent, index$g_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$g_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$g_EStatusTaskJob as EStatusTaskJob, index$g_EStatusTaskJobGroup as EStatusTaskJobGroup, index$g_EStatusTaskToolSocials as EStatusTaskToolSocials, index$g_EStatusTeam as EStatusTeam, index$g_EStatusVPS as EStatusVPS };
|
|
644
654
|
}
|
|
645
655
|
|
|
646
656
|
declare enum EFolderImageAI {
|
|
@@ -1644,14 +1654,6 @@ interface IDeviceSettingForVPN extends BoInterfaceModelsCommon.IBaseModel, BoInt
|
|
|
1644
1654
|
accountVPN: string | IAccountVPN;
|
|
1645
1655
|
}
|
|
1646
1656
|
|
|
1647
|
-
declare enum EStatusSyncAccountSocial {
|
|
1648
|
-
New = "New",
|
|
1649
|
-
Done = "Done",
|
|
1650
|
-
Waiting = "Waiting",
|
|
1651
|
-
Missing = "Missing",
|
|
1652
|
-
Failed = "Failed"
|
|
1653
|
-
}
|
|
1654
|
-
|
|
1655
1657
|
interface IAccountRaw extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1656
1658
|
group: IAccountsGroup | string;
|
|
1657
1659
|
typeSocial: ETypeSocial;
|
package/dist/index.js
CHANGED
|
@@ -131,7 +131,7 @@ var CONST_API_CONTROLLERS = {
|
|
|
131
131
|
ACCOUNTS_CANVA: "accounts-canva",
|
|
132
132
|
ACCOUNTS_DRIVE: "accounts-drive",
|
|
133
133
|
ACCOUNTS_SOCIALS: "accounts-socials",
|
|
134
|
-
|
|
134
|
+
ACCOUNTS_SOCIALS_RAW: "accounts-socials-raw",
|
|
135
135
|
ACCOUNTS_GROUPS: "accounts-groups",
|
|
136
136
|
ACCOUNTS_STATUS: "accounts_status",
|
|
137
137
|
ACCOUNTS_DETAILS: "accounts-details",
|
|
@@ -495,6 +495,7 @@ __export(status_exports, {
|
|
|
495
495
|
EStatusLoginAccountSocial: () => EStatusLoginAccountSocial,
|
|
496
496
|
EStatusSetupDeviceSystem: () => EStatusSetupDeviceSystem,
|
|
497
497
|
EStatusSheetWork: () => EStatusSheetWork,
|
|
498
|
+
EStatusSyncAccountSocial: () => EStatusSyncAccountSocial,
|
|
498
499
|
EStatusTaskAIContent: () => EStatusTaskAIContent,
|
|
499
500
|
EStatusTaskAvatarCover: () => EStatusTaskAvatarCover,
|
|
500
501
|
EStatusTaskImageVoiceCanva: () => EStatusTaskImageVoiceCanva,
|
|
@@ -563,6 +564,16 @@ var EStatusAccountSocial = /* @__PURE__ */ ((EStatusAccountSocial2) => {
|
|
|
563
564
|
return EStatusAccountSocial2;
|
|
564
565
|
})(EStatusAccountSocial || {});
|
|
565
566
|
|
|
567
|
+
// src/enums/status/socials/EStatusSyncAccountSocial.enum.ts
|
|
568
|
+
var EStatusSyncAccountSocial = /* @__PURE__ */ ((EStatusSyncAccountSocial2) => {
|
|
569
|
+
EStatusSyncAccountSocial2["New"] = "New";
|
|
570
|
+
EStatusSyncAccountSocial2["Done"] = "Done";
|
|
571
|
+
EStatusSyncAccountSocial2["Waiting"] = "Waiting";
|
|
572
|
+
EStatusSyncAccountSocial2["Missing"] = "Missing";
|
|
573
|
+
EStatusSyncAccountSocial2["Failed"] = "Failed";
|
|
574
|
+
return EStatusSyncAccountSocial2;
|
|
575
|
+
})(EStatusSyncAccountSocial || {});
|
|
576
|
+
|
|
566
577
|
// src/enums/status/socials/EStatusLoginAccountEmail.enum.ts
|
|
567
578
|
var EStatusLoginAccountEmail = /* @__PURE__ */ ((EStatusLoginAccountEmail2) => {
|
|
568
579
|
EStatusLoginAccountEmail2["LoginSuccess"] = "LoginSuccess";
|
package/dist/index.mjs
CHANGED
|
@@ -107,7 +107,7 @@ var CONST_API_CONTROLLERS = {
|
|
|
107
107
|
ACCOUNTS_CANVA: "accounts-canva",
|
|
108
108
|
ACCOUNTS_DRIVE: "accounts-drive",
|
|
109
109
|
ACCOUNTS_SOCIALS: "accounts-socials",
|
|
110
|
-
|
|
110
|
+
ACCOUNTS_SOCIALS_RAW: "accounts-socials-raw",
|
|
111
111
|
ACCOUNTS_GROUPS: "accounts-groups",
|
|
112
112
|
ACCOUNTS_STATUS: "accounts_status",
|
|
113
113
|
ACCOUNTS_DETAILS: "accounts-details",
|
|
@@ -471,6 +471,7 @@ __export(status_exports, {
|
|
|
471
471
|
EStatusLoginAccountSocial: () => EStatusLoginAccountSocial,
|
|
472
472
|
EStatusSetupDeviceSystem: () => EStatusSetupDeviceSystem,
|
|
473
473
|
EStatusSheetWork: () => EStatusSheetWork,
|
|
474
|
+
EStatusSyncAccountSocial: () => EStatusSyncAccountSocial,
|
|
474
475
|
EStatusTaskAIContent: () => EStatusTaskAIContent,
|
|
475
476
|
EStatusTaskAvatarCover: () => EStatusTaskAvatarCover,
|
|
476
477
|
EStatusTaskImageVoiceCanva: () => EStatusTaskImageVoiceCanva,
|
|
@@ -539,6 +540,16 @@ var EStatusAccountSocial = /* @__PURE__ */ ((EStatusAccountSocial2) => {
|
|
|
539
540
|
return EStatusAccountSocial2;
|
|
540
541
|
})(EStatusAccountSocial || {});
|
|
541
542
|
|
|
543
|
+
// src/enums/status/socials/EStatusSyncAccountSocial.enum.ts
|
|
544
|
+
var EStatusSyncAccountSocial = /* @__PURE__ */ ((EStatusSyncAccountSocial2) => {
|
|
545
|
+
EStatusSyncAccountSocial2["New"] = "New";
|
|
546
|
+
EStatusSyncAccountSocial2["Done"] = "Done";
|
|
547
|
+
EStatusSyncAccountSocial2["Waiting"] = "Waiting";
|
|
548
|
+
EStatusSyncAccountSocial2["Missing"] = "Missing";
|
|
549
|
+
EStatusSyncAccountSocial2["Failed"] = "Failed";
|
|
550
|
+
return EStatusSyncAccountSocial2;
|
|
551
|
+
})(EStatusSyncAccountSocial || {});
|
|
552
|
+
|
|
542
553
|
// src/enums/status/socials/EStatusLoginAccountEmail.enum.ts
|
|
543
554
|
var EStatusLoginAccountEmail = /* @__PURE__ */ ((EStatusLoginAccountEmail2) => {
|
|
544
555
|
EStatusLoginAccountEmail2["LoginSuccess"] = "LoginSuccess";
|