automation-lib 4.8.95 → 4.8.97
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 +112 -112
- package/dist/index.d.ts +112 -112
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -592,123 +592,11 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
592
592
|
posImages: Array<ICanvaPosition>;
|
|
593
593
|
}
|
|
594
594
|
|
|
595
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
596
|
-
idea_name: string;
|
|
597
|
-
idea_slug: string;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
601
|
-
niche_name: string;
|
|
602
|
-
niche_slug: string;
|
|
603
|
-
niche_idea: string | IIdea;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
607
|
-
tse_accountId: string;
|
|
608
|
-
tse_serviceName: string;
|
|
609
|
-
tse_actionsExecuted: string[];
|
|
610
|
-
}
|
|
611
|
-
|
|
612
595
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
613
596
|
name: string;
|
|
614
597
|
slug: string;
|
|
615
598
|
}
|
|
616
599
|
|
|
617
|
-
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
618
|
-
groupsAI: string | IAccountAIGroup;
|
|
619
|
-
idea: string | IIdea;
|
|
620
|
-
niche: string[] | INiche[];
|
|
621
|
-
tags: string[] | IAccountAITag[];
|
|
622
|
-
membersAssigned: string[] | IUser[];
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
626
|
-
accountAI: string | IAccountAI;
|
|
627
|
-
name: string;
|
|
628
|
-
color: string;
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
632
|
-
accountAI: string | IAccountAI;
|
|
633
|
-
model: EModelAI;
|
|
634
|
-
provider: string;
|
|
635
|
-
versionModel: string;
|
|
636
|
-
email: string;
|
|
637
|
-
password: string;
|
|
638
|
-
emailPassword: string;
|
|
639
|
-
email2FA: string;
|
|
640
|
-
isActive: boolean;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
644
|
-
accountAIInfo: string | IAccountAIInfo;
|
|
645
|
-
name: string;
|
|
646
|
-
url: string;
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
650
|
-
name: string;
|
|
651
|
-
slug: string;
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
655
|
-
group: string | IAccountVPSGroup;
|
|
656
|
-
ip: string;
|
|
657
|
-
port: string;
|
|
658
|
-
username: string;
|
|
659
|
-
password: string;
|
|
660
|
-
displayName: string;
|
|
661
|
-
isActive: boolean;
|
|
662
|
-
status: EStatusVPS;
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
666
|
-
ag_name: string;
|
|
667
|
-
ag_slug: string;
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
671
|
-
pc_name: string;
|
|
672
|
-
pc_user: IUser | string;
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
676
|
-
ds_device: IDevice | string;
|
|
677
|
-
ds_deviceKey: string;
|
|
678
|
-
ds_typeSocial: ETypeSocial;
|
|
679
|
-
ds_maximumAccountApply: number;
|
|
680
|
-
ds_isFulled: boolean;
|
|
681
|
-
ds_numberAccountApplied: number;
|
|
682
|
-
ds_accountApplied: IAccount[] | string[];
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
interface IDeviceInfoEmail {
|
|
686
|
-
email: string;
|
|
687
|
-
email2fa: string;
|
|
688
|
-
password: string;
|
|
689
|
-
emailReceiver: string;
|
|
690
|
-
}
|
|
691
|
-
interface IDeviceAllowPermission {
|
|
692
|
-
isAllowPermissionCanva: boolean;
|
|
693
|
-
isAllowPermissionCloneAppPro: boolean;
|
|
694
|
-
isAllowPermissionGmail: boolean;
|
|
695
|
-
isAllowPermissionPlayStore: boolean;
|
|
696
|
-
isAllowPermissionChrome: boolean;
|
|
697
|
-
}
|
|
698
|
-
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
699
|
-
device_pc: IPC | string;
|
|
700
|
-
device_name: string;
|
|
701
|
-
device_key: string;
|
|
702
|
-
device_settings: IDeviceSetting[] | string[];
|
|
703
|
-
device_emailInfo: IDeviceInfoEmail;
|
|
704
|
-
device_status: EStatusCommon;
|
|
705
|
-
device_statusSetup: EStatusCommon;
|
|
706
|
-
device_statusSetupEmail: EStatusCommon;
|
|
707
|
-
device_statusCHPlay: EStatusCommon;
|
|
708
|
-
device_allowPermission: IDeviceAllowPermission;
|
|
709
|
-
device_note: string;
|
|
710
|
-
}
|
|
711
|
-
|
|
712
600
|
interface IImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
713
601
|
image_key: string;
|
|
714
602
|
image_path: string;
|
|
@@ -898,6 +786,101 @@ declare namespace index$5 {
|
|
|
898
786
|
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 };
|
|
899
787
|
}
|
|
900
788
|
|
|
789
|
+
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
790
|
+
groupsAI: string | IAccountAIGroup;
|
|
791
|
+
ideaManagerWork: string | IManagerWork;
|
|
792
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
793
|
+
tags: string[] | IAccountAITag[];
|
|
794
|
+
membersAssigned: string[] | IUser[];
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
798
|
+
accountAI: string | IAccountAI;
|
|
799
|
+
name: string;
|
|
800
|
+
color: string;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
804
|
+
accountAI: string | IAccountAI;
|
|
805
|
+
model: EModelAI;
|
|
806
|
+
provider: string;
|
|
807
|
+
versionModel: string;
|
|
808
|
+
email: string;
|
|
809
|
+
password: string;
|
|
810
|
+
emailPassword: string;
|
|
811
|
+
email2FA: string;
|
|
812
|
+
isActive: boolean;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
816
|
+
accountAIInfo: string | IAccountAIInfo;
|
|
817
|
+
name: string;
|
|
818
|
+
url: string;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
822
|
+
name: string;
|
|
823
|
+
slug: string;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
827
|
+
group: string | IAccountVPSGroup;
|
|
828
|
+
ip: string;
|
|
829
|
+
port: string;
|
|
830
|
+
username: string;
|
|
831
|
+
password: string;
|
|
832
|
+
displayName: string;
|
|
833
|
+
isActive: boolean;
|
|
834
|
+
status: EStatusVPS;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
838
|
+
ag_name: string;
|
|
839
|
+
ag_slug: string;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
843
|
+
pc_name: string;
|
|
844
|
+
pc_user: IUser | string;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
848
|
+
ds_device: IDevice | string;
|
|
849
|
+
ds_deviceKey: string;
|
|
850
|
+
ds_typeSocial: ETypeSocial;
|
|
851
|
+
ds_maximumAccountApply: number;
|
|
852
|
+
ds_isFulled: boolean;
|
|
853
|
+
ds_numberAccountApplied: number;
|
|
854
|
+
ds_accountApplied: IAccount[] | string[];
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
interface IDeviceInfoEmail {
|
|
858
|
+
email: string;
|
|
859
|
+
email2fa: string;
|
|
860
|
+
password: string;
|
|
861
|
+
emailReceiver: string;
|
|
862
|
+
}
|
|
863
|
+
interface IDeviceAllowPermission {
|
|
864
|
+
isAllowPermissionCanva: boolean;
|
|
865
|
+
isAllowPermissionCloneAppPro: boolean;
|
|
866
|
+
isAllowPermissionGmail: boolean;
|
|
867
|
+
isAllowPermissionPlayStore: boolean;
|
|
868
|
+
isAllowPermissionChrome: boolean;
|
|
869
|
+
}
|
|
870
|
+
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
871
|
+
device_pc: IPC | string;
|
|
872
|
+
device_name: string;
|
|
873
|
+
device_key: string;
|
|
874
|
+
device_settings: IDeviceSetting[] | string[];
|
|
875
|
+
device_emailInfo: IDeviceInfoEmail;
|
|
876
|
+
device_status: EStatusCommon;
|
|
877
|
+
device_statusSetup: EStatusCommon;
|
|
878
|
+
device_statusSetupEmail: EStatusCommon;
|
|
879
|
+
device_statusCHPlay: EStatusCommon;
|
|
880
|
+
device_allowPermission: IDeviceAllowPermission;
|
|
881
|
+
device_note: string;
|
|
882
|
+
}
|
|
883
|
+
|
|
901
884
|
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
902
885
|
pt_url: string;
|
|
903
886
|
pt_name: string;
|
|
@@ -933,6 +916,23 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
933
916
|
proxy_tracker: IProxyTracking | string;
|
|
934
917
|
}
|
|
935
918
|
|
|
919
|
+
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
920
|
+
idea_name: string;
|
|
921
|
+
idea_slug: string;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
925
|
+
niche_name: string;
|
|
926
|
+
niche_slug: string;
|
|
927
|
+
niche_idea: string | IIdea;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
931
|
+
tse_accountId: string;
|
|
932
|
+
tse_serviceName: string;
|
|
933
|
+
tse_actionsExecuted: string[];
|
|
934
|
+
}
|
|
935
|
+
|
|
936
936
|
interface IAccountDetailEmail {
|
|
937
937
|
email: string;
|
|
938
938
|
emailPassword: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -592,123 +592,11 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
592
592
|
posImages: Array<ICanvaPosition>;
|
|
593
593
|
}
|
|
594
594
|
|
|
595
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
596
|
-
idea_name: string;
|
|
597
|
-
idea_slug: string;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
601
|
-
niche_name: string;
|
|
602
|
-
niche_slug: string;
|
|
603
|
-
niche_idea: string | IIdea;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
607
|
-
tse_accountId: string;
|
|
608
|
-
tse_serviceName: string;
|
|
609
|
-
tse_actionsExecuted: string[];
|
|
610
|
-
}
|
|
611
|
-
|
|
612
595
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
613
596
|
name: string;
|
|
614
597
|
slug: string;
|
|
615
598
|
}
|
|
616
599
|
|
|
617
|
-
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
618
|
-
groupsAI: string | IAccountAIGroup;
|
|
619
|
-
idea: string | IIdea;
|
|
620
|
-
niche: string[] | INiche[];
|
|
621
|
-
tags: string[] | IAccountAITag[];
|
|
622
|
-
membersAssigned: string[] | IUser[];
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
626
|
-
accountAI: string | IAccountAI;
|
|
627
|
-
name: string;
|
|
628
|
-
color: string;
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
632
|
-
accountAI: string | IAccountAI;
|
|
633
|
-
model: EModelAI;
|
|
634
|
-
provider: string;
|
|
635
|
-
versionModel: string;
|
|
636
|
-
email: string;
|
|
637
|
-
password: string;
|
|
638
|
-
emailPassword: string;
|
|
639
|
-
email2FA: string;
|
|
640
|
-
isActive: boolean;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
644
|
-
accountAIInfo: string | IAccountAIInfo;
|
|
645
|
-
name: string;
|
|
646
|
-
url: string;
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
650
|
-
name: string;
|
|
651
|
-
slug: string;
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
655
|
-
group: string | IAccountVPSGroup;
|
|
656
|
-
ip: string;
|
|
657
|
-
port: string;
|
|
658
|
-
username: string;
|
|
659
|
-
password: string;
|
|
660
|
-
displayName: string;
|
|
661
|
-
isActive: boolean;
|
|
662
|
-
status: EStatusVPS;
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
666
|
-
ag_name: string;
|
|
667
|
-
ag_slug: string;
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
671
|
-
pc_name: string;
|
|
672
|
-
pc_user: IUser | string;
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
676
|
-
ds_device: IDevice | string;
|
|
677
|
-
ds_deviceKey: string;
|
|
678
|
-
ds_typeSocial: ETypeSocial;
|
|
679
|
-
ds_maximumAccountApply: number;
|
|
680
|
-
ds_isFulled: boolean;
|
|
681
|
-
ds_numberAccountApplied: number;
|
|
682
|
-
ds_accountApplied: IAccount[] | string[];
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
interface IDeviceInfoEmail {
|
|
686
|
-
email: string;
|
|
687
|
-
email2fa: string;
|
|
688
|
-
password: string;
|
|
689
|
-
emailReceiver: string;
|
|
690
|
-
}
|
|
691
|
-
interface IDeviceAllowPermission {
|
|
692
|
-
isAllowPermissionCanva: boolean;
|
|
693
|
-
isAllowPermissionCloneAppPro: boolean;
|
|
694
|
-
isAllowPermissionGmail: boolean;
|
|
695
|
-
isAllowPermissionPlayStore: boolean;
|
|
696
|
-
isAllowPermissionChrome: boolean;
|
|
697
|
-
}
|
|
698
|
-
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
699
|
-
device_pc: IPC | string;
|
|
700
|
-
device_name: string;
|
|
701
|
-
device_key: string;
|
|
702
|
-
device_settings: IDeviceSetting[] | string[];
|
|
703
|
-
device_emailInfo: IDeviceInfoEmail;
|
|
704
|
-
device_status: EStatusCommon;
|
|
705
|
-
device_statusSetup: EStatusCommon;
|
|
706
|
-
device_statusSetupEmail: EStatusCommon;
|
|
707
|
-
device_statusCHPlay: EStatusCommon;
|
|
708
|
-
device_allowPermission: IDeviceAllowPermission;
|
|
709
|
-
device_note: string;
|
|
710
|
-
}
|
|
711
|
-
|
|
712
600
|
interface IImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
713
601
|
image_key: string;
|
|
714
602
|
image_path: string;
|
|
@@ -898,6 +786,101 @@ declare namespace index$5 {
|
|
|
898
786
|
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 };
|
|
899
787
|
}
|
|
900
788
|
|
|
789
|
+
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
790
|
+
groupsAI: string | IAccountAIGroup;
|
|
791
|
+
ideaManagerWork: string | IManagerWork;
|
|
792
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
793
|
+
tags: string[] | IAccountAITag[];
|
|
794
|
+
membersAssigned: string[] | IUser[];
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
798
|
+
accountAI: string | IAccountAI;
|
|
799
|
+
name: string;
|
|
800
|
+
color: string;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
804
|
+
accountAI: string | IAccountAI;
|
|
805
|
+
model: EModelAI;
|
|
806
|
+
provider: string;
|
|
807
|
+
versionModel: string;
|
|
808
|
+
email: string;
|
|
809
|
+
password: string;
|
|
810
|
+
emailPassword: string;
|
|
811
|
+
email2FA: string;
|
|
812
|
+
isActive: boolean;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
816
|
+
accountAIInfo: string | IAccountAIInfo;
|
|
817
|
+
name: string;
|
|
818
|
+
url: string;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
822
|
+
name: string;
|
|
823
|
+
slug: string;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
827
|
+
group: string | IAccountVPSGroup;
|
|
828
|
+
ip: string;
|
|
829
|
+
port: string;
|
|
830
|
+
username: string;
|
|
831
|
+
password: string;
|
|
832
|
+
displayName: string;
|
|
833
|
+
isActive: boolean;
|
|
834
|
+
status: EStatusVPS;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
838
|
+
ag_name: string;
|
|
839
|
+
ag_slug: string;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
843
|
+
pc_name: string;
|
|
844
|
+
pc_user: IUser | string;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
848
|
+
ds_device: IDevice | string;
|
|
849
|
+
ds_deviceKey: string;
|
|
850
|
+
ds_typeSocial: ETypeSocial;
|
|
851
|
+
ds_maximumAccountApply: number;
|
|
852
|
+
ds_isFulled: boolean;
|
|
853
|
+
ds_numberAccountApplied: number;
|
|
854
|
+
ds_accountApplied: IAccount[] | string[];
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
interface IDeviceInfoEmail {
|
|
858
|
+
email: string;
|
|
859
|
+
email2fa: string;
|
|
860
|
+
password: string;
|
|
861
|
+
emailReceiver: string;
|
|
862
|
+
}
|
|
863
|
+
interface IDeviceAllowPermission {
|
|
864
|
+
isAllowPermissionCanva: boolean;
|
|
865
|
+
isAllowPermissionCloneAppPro: boolean;
|
|
866
|
+
isAllowPermissionGmail: boolean;
|
|
867
|
+
isAllowPermissionPlayStore: boolean;
|
|
868
|
+
isAllowPermissionChrome: boolean;
|
|
869
|
+
}
|
|
870
|
+
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
871
|
+
device_pc: IPC | string;
|
|
872
|
+
device_name: string;
|
|
873
|
+
device_key: string;
|
|
874
|
+
device_settings: IDeviceSetting[] | string[];
|
|
875
|
+
device_emailInfo: IDeviceInfoEmail;
|
|
876
|
+
device_status: EStatusCommon;
|
|
877
|
+
device_statusSetup: EStatusCommon;
|
|
878
|
+
device_statusSetupEmail: EStatusCommon;
|
|
879
|
+
device_statusCHPlay: EStatusCommon;
|
|
880
|
+
device_allowPermission: IDeviceAllowPermission;
|
|
881
|
+
device_note: string;
|
|
882
|
+
}
|
|
883
|
+
|
|
901
884
|
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
902
885
|
pt_url: string;
|
|
903
886
|
pt_name: string;
|
|
@@ -933,6 +916,23 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
933
916
|
proxy_tracker: IProxyTracking | string;
|
|
934
917
|
}
|
|
935
918
|
|
|
919
|
+
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
920
|
+
idea_name: string;
|
|
921
|
+
idea_slug: string;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
925
|
+
niche_name: string;
|
|
926
|
+
niche_slug: string;
|
|
927
|
+
niche_idea: string | IIdea;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
931
|
+
tse_accountId: string;
|
|
932
|
+
tse_serviceName: string;
|
|
933
|
+
tse_actionsExecuted: string[];
|
|
934
|
+
}
|
|
935
|
+
|
|
936
936
|
interface IAccountDetailEmail {
|
|
937
937
|
email: string;
|
|
938
938
|
emailPassword: string;
|