automation-lib 4.9.47 → 4.9.48
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 +127 -119
- package/dist/index.d.ts +127 -119
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -482,6 +482,7 @@ declare enum EStatusAccountAI {
|
|
|
482
482
|
}
|
|
483
483
|
|
|
484
484
|
declare enum EStatusEmail {
|
|
485
|
+
New = "New",
|
|
485
486
|
Active = "Active",
|
|
486
487
|
Suspend = "Suspend",
|
|
487
488
|
Wrong2FA = "Wrong2FA",
|
|
@@ -901,6 +902,128 @@ interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
901
902
|
slug: string;
|
|
902
903
|
}
|
|
903
904
|
|
|
905
|
+
interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
906
|
+
email: string;
|
|
907
|
+
emailRecover: string;
|
|
908
|
+
password: string;
|
|
909
|
+
code2FA: string;
|
|
910
|
+
code2FABackup: string;
|
|
911
|
+
status: EStatusEmail;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
915
|
+
model: EAIModelImage;
|
|
916
|
+
provider: string;
|
|
917
|
+
versionModel: EAIVersionImage;
|
|
918
|
+
emailAccount: string | IAccountEmail;
|
|
919
|
+
password: string;
|
|
920
|
+
code2FA: string;
|
|
921
|
+
isActive: boolean;
|
|
922
|
+
status: EStatusAccountAI;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
interface IAccountAIImageChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
926
|
+
model: EAIModelImage;
|
|
927
|
+
name: string;
|
|
928
|
+
url: string;
|
|
929
|
+
color: string;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
933
|
+
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
934
|
+
ideaManagerWork: string | IManagerWork;
|
|
935
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
936
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
937
|
+
tags: string[] | IAccountAIImageTag[];
|
|
938
|
+
membersAssigned: string[] | IUser[];
|
|
939
|
+
listAccountInfoChannels: Array<{
|
|
940
|
+
accountInfo: IAccountAIImageInfo | string;
|
|
941
|
+
listChannels: IAccountAIImageChannel[] | string[];
|
|
942
|
+
}>;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
interface IAccountAIVoiceTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
946
|
+
name: string;
|
|
947
|
+
color: string;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
interface IAccountAIVoiceGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
951
|
+
name: string;
|
|
952
|
+
slug: string;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
956
|
+
model: EAIModelVoice;
|
|
957
|
+
provider: string;
|
|
958
|
+
versionModel: EAIVersionVoice;
|
|
959
|
+
emailAccount: string | IAccountEmail;
|
|
960
|
+
password: string;
|
|
961
|
+
code2FA: string;
|
|
962
|
+
isActive: boolean;
|
|
963
|
+
status: EStatusAccountAI;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
interface IAccountAIVoiceChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
967
|
+
model: EAIModelVoice;
|
|
968
|
+
name: string;
|
|
969
|
+
url: string;
|
|
970
|
+
color: string;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
interface IAccountAIVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
974
|
+
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
975
|
+
ideaManagerWork: string | IManagerWork;
|
|
976
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
977
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
978
|
+
tags: string[] | IAccountAIVoiceTag[];
|
|
979
|
+
membersAssigned: string[] | IUser[];
|
|
980
|
+
listAccountInfoChannels: Array<{
|
|
981
|
+
accountInfo: IAccountAIVoiceInfo | string;
|
|
982
|
+
listChannels: IAccountAIVoiceChannel[] | string[];
|
|
983
|
+
}>;
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
987
|
+
name: string;
|
|
988
|
+
color: string;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
992
|
+
name: string;
|
|
993
|
+
slug: string;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
997
|
+
model: EAIModelContent;
|
|
998
|
+
name: string;
|
|
999
|
+
url: string;
|
|
1000
|
+
color: string;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1004
|
+
model: EAIModelContent;
|
|
1005
|
+
provider: string;
|
|
1006
|
+
versionModel: EAIVersionGPT | EAIVersionPerplexity;
|
|
1007
|
+
emailAccount: string | IAccountEmail;
|
|
1008
|
+
password: string;
|
|
1009
|
+
code2FA: string;
|
|
1010
|
+
isActive: boolean;
|
|
1011
|
+
status: EStatusAccountAI;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1015
|
+
listGroupsAI: string[] | IAccountAIGroup[];
|
|
1016
|
+
ideaManagerWork: string | IManagerWork;
|
|
1017
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
1018
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
1019
|
+
tags: string[] | IAccountAITag[];
|
|
1020
|
+
membersAssigned: string[] | IUser[];
|
|
1021
|
+
listAccountInfoChannels: Array<{
|
|
1022
|
+
accountInfo: IAccountAIInfo | string;
|
|
1023
|
+
listChannels: IAccountAIChannel[] | string[];
|
|
1024
|
+
}>;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
904
1027
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
905
1028
|
ag_name: string;
|
|
906
1029
|
ag_slug: string;
|
|
@@ -1048,125 +1171,9 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
1048
1171
|
proxy_tracker: IProxyTracking | string;
|
|
1049
1172
|
}
|
|
1050
1173
|
|
|
1051
|
-
interface
|
|
1052
|
-
|
|
1053
|
-
password: string;
|
|
1054
|
-
code2FA: string;
|
|
1174
|
+
interface IAccountEmailProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1175
|
+
accountEmail: string | IAccountAIImage;
|
|
1055
1176
|
proxy: string | IProxy;
|
|
1056
|
-
status: EStatusEmail;
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
|
-
interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1060
|
-
model: EAIModelImage;
|
|
1061
|
-
provider: string;
|
|
1062
|
-
versionModel: EAIVersionImage;
|
|
1063
|
-
emailAccount: string | IAccountEmail;
|
|
1064
|
-
password: string;
|
|
1065
|
-
code2FA: string;
|
|
1066
|
-
isActive: boolean;
|
|
1067
|
-
status: EStatusAccountAI;
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
interface IAccountAIImageChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1071
|
-
model: EAIModelImage;
|
|
1072
|
-
name: string;
|
|
1073
|
-
url: string;
|
|
1074
|
-
color: string;
|
|
1075
|
-
}
|
|
1076
|
-
|
|
1077
|
-
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1078
|
-
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
1079
|
-
ideaManagerWork: string | IManagerWork;
|
|
1080
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
1081
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
1082
|
-
tags: string[] | IAccountAIImageTag[];
|
|
1083
|
-
membersAssigned: string[] | IUser[];
|
|
1084
|
-
listAccountInfoChannels: Array<{
|
|
1085
|
-
accountInfo: IAccountAIImageInfo | string;
|
|
1086
|
-
listChannels: IAccountAIImageChannel[] | string[];
|
|
1087
|
-
}>;
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
interface IAccountAIVoiceTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1091
|
-
name: string;
|
|
1092
|
-
color: string;
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
|
-
interface IAccountAIVoiceGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1096
|
-
name: string;
|
|
1097
|
-
slug: string;
|
|
1098
|
-
}
|
|
1099
|
-
|
|
1100
|
-
interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1101
|
-
model: EAIModelVoice;
|
|
1102
|
-
provider: string;
|
|
1103
|
-
versionModel: EAIVersionVoice;
|
|
1104
|
-
emailAccount: string | IAccountEmail;
|
|
1105
|
-
password: string;
|
|
1106
|
-
code2FA: string;
|
|
1107
|
-
isActive: boolean;
|
|
1108
|
-
status: EStatusAccountAI;
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
interface IAccountAIVoiceChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1112
|
-
model: EAIModelVoice;
|
|
1113
|
-
name: string;
|
|
1114
|
-
url: string;
|
|
1115
|
-
color: string;
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
|
-
interface IAccountAIVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1119
|
-
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
1120
|
-
ideaManagerWork: string | IManagerWork;
|
|
1121
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
1122
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
1123
|
-
tags: string[] | IAccountAIVoiceTag[];
|
|
1124
|
-
membersAssigned: string[] | IUser[];
|
|
1125
|
-
listAccountInfoChannels: Array<{
|
|
1126
|
-
accountInfo: IAccountAIVoiceInfo | string;
|
|
1127
|
-
listChannels: IAccountAIVoiceChannel[] | string[];
|
|
1128
|
-
}>;
|
|
1129
|
-
}
|
|
1130
|
-
|
|
1131
|
-
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
1132
|
-
name: string;
|
|
1133
|
-
color: string;
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1137
|
-
name: string;
|
|
1138
|
-
slug: string;
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1141
|
-
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1142
|
-
model: EAIModelContent;
|
|
1143
|
-
name: string;
|
|
1144
|
-
url: string;
|
|
1145
|
-
color: string;
|
|
1146
|
-
}
|
|
1147
|
-
|
|
1148
|
-
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1149
|
-
model: EAIModelContent;
|
|
1150
|
-
provider: string;
|
|
1151
|
-
versionModel: EAIVersionGPT | EAIVersionPerplexity;
|
|
1152
|
-
emailAccount: string | IAccountEmail;
|
|
1153
|
-
password: string;
|
|
1154
|
-
code2FA: string;
|
|
1155
|
-
isActive: boolean;
|
|
1156
|
-
status: EStatusAccountAI;
|
|
1157
|
-
}
|
|
1158
|
-
|
|
1159
|
-
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1160
|
-
listGroupsAI: string[] | IAccountAIGroup[];
|
|
1161
|
-
ideaManagerWork: string | IManagerWork;
|
|
1162
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
1163
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
1164
|
-
tags: string[] | IAccountAITag[];
|
|
1165
|
-
membersAssigned: string[] | IUser[];
|
|
1166
|
-
listAccountInfoChannels: Array<{
|
|
1167
|
-
accountInfo: IAccountAIInfo | string;
|
|
1168
|
-
listChannels: IAccountAIChannel[] | string[];
|
|
1169
|
-
}>;
|
|
1170
1177
|
}
|
|
1171
1178
|
|
|
1172
1179
|
interface IAccountEmailTaskWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -1388,6 +1395,7 @@ type index$4_IAccountAIVoiceTag = IAccountAIVoiceTag;
|
|
|
1388
1395
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1389
1396
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1390
1397
|
type index$4_IAccountEmail = IAccountEmail;
|
|
1398
|
+
type index$4_IAccountEmailProxy = IAccountEmailProxy;
|
|
1391
1399
|
type index$4_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
1392
1400
|
type index$4_IAccountVPS = IAccountVPS;
|
|
1393
1401
|
type index$4_IAccountVPSGroup = IAccountVPSGroup;
|
|
@@ -1421,7 +1429,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1421
1429
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1422
1430
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1423
1431
|
declare namespace index$4 {
|
|
1424
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountAIVoice as IAccountAIVoice, index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountEmail as IAccountEmail, index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1432
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountAIVoice as IAccountAIVoice, index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountEmail as IAccountEmail, index$4_IAccountEmailProxy as IAccountEmailProxy, index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1425
1433
|
}
|
|
1426
1434
|
|
|
1427
1435
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -482,6 +482,7 @@ declare enum EStatusAccountAI {
|
|
|
482
482
|
}
|
|
483
483
|
|
|
484
484
|
declare enum EStatusEmail {
|
|
485
|
+
New = "New",
|
|
485
486
|
Active = "Active",
|
|
486
487
|
Suspend = "Suspend",
|
|
487
488
|
Wrong2FA = "Wrong2FA",
|
|
@@ -901,6 +902,128 @@ interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
901
902
|
slug: string;
|
|
902
903
|
}
|
|
903
904
|
|
|
905
|
+
interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
906
|
+
email: string;
|
|
907
|
+
emailRecover: string;
|
|
908
|
+
password: string;
|
|
909
|
+
code2FA: string;
|
|
910
|
+
code2FABackup: string;
|
|
911
|
+
status: EStatusEmail;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
915
|
+
model: EAIModelImage;
|
|
916
|
+
provider: string;
|
|
917
|
+
versionModel: EAIVersionImage;
|
|
918
|
+
emailAccount: string | IAccountEmail;
|
|
919
|
+
password: string;
|
|
920
|
+
code2FA: string;
|
|
921
|
+
isActive: boolean;
|
|
922
|
+
status: EStatusAccountAI;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
interface IAccountAIImageChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
926
|
+
model: EAIModelImage;
|
|
927
|
+
name: string;
|
|
928
|
+
url: string;
|
|
929
|
+
color: string;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
933
|
+
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
934
|
+
ideaManagerWork: string | IManagerWork;
|
|
935
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
936
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
937
|
+
tags: string[] | IAccountAIImageTag[];
|
|
938
|
+
membersAssigned: string[] | IUser[];
|
|
939
|
+
listAccountInfoChannels: Array<{
|
|
940
|
+
accountInfo: IAccountAIImageInfo | string;
|
|
941
|
+
listChannels: IAccountAIImageChannel[] | string[];
|
|
942
|
+
}>;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
interface IAccountAIVoiceTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
946
|
+
name: string;
|
|
947
|
+
color: string;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
interface IAccountAIVoiceGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
951
|
+
name: string;
|
|
952
|
+
slug: string;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
956
|
+
model: EAIModelVoice;
|
|
957
|
+
provider: string;
|
|
958
|
+
versionModel: EAIVersionVoice;
|
|
959
|
+
emailAccount: string | IAccountEmail;
|
|
960
|
+
password: string;
|
|
961
|
+
code2FA: string;
|
|
962
|
+
isActive: boolean;
|
|
963
|
+
status: EStatusAccountAI;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
interface IAccountAIVoiceChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
967
|
+
model: EAIModelVoice;
|
|
968
|
+
name: string;
|
|
969
|
+
url: string;
|
|
970
|
+
color: string;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
interface IAccountAIVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
974
|
+
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
975
|
+
ideaManagerWork: string | IManagerWork;
|
|
976
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
977
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
978
|
+
tags: string[] | IAccountAIVoiceTag[];
|
|
979
|
+
membersAssigned: string[] | IUser[];
|
|
980
|
+
listAccountInfoChannels: Array<{
|
|
981
|
+
accountInfo: IAccountAIVoiceInfo | string;
|
|
982
|
+
listChannels: IAccountAIVoiceChannel[] | string[];
|
|
983
|
+
}>;
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
987
|
+
name: string;
|
|
988
|
+
color: string;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
992
|
+
name: string;
|
|
993
|
+
slug: string;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
997
|
+
model: EAIModelContent;
|
|
998
|
+
name: string;
|
|
999
|
+
url: string;
|
|
1000
|
+
color: string;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1004
|
+
model: EAIModelContent;
|
|
1005
|
+
provider: string;
|
|
1006
|
+
versionModel: EAIVersionGPT | EAIVersionPerplexity;
|
|
1007
|
+
emailAccount: string | IAccountEmail;
|
|
1008
|
+
password: string;
|
|
1009
|
+
code2FA: string;
|
|
1010
|
+
isActive: boolean;
|
|
1011
|
+
status: EStatusAccountAI;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1015
|
+
listGroupsAI: string[] | IAccountAIGroup[];
|
|
1016
|
+
ideaManagerWork: string | IManagerWork;
|
|
1017
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
1018
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
1019
|
+
tags: string[] | IAccountAITag[];
|
|
1020
|
+
membersAssigned: string[] | IUser[];
|
|
1021
|
+
listAccountInfoChannels: Array<{
|
|
1022
|
+
accountInfo: IAccountAIInfo | string;
|
|
1023
|
+
listChannels: IAccountAIChannel[] | string[];
|
|
1024
|
+
}>;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
904
1027
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
905
1028
|
ag_name: string;
|
|
906
1029
|
ag_slug: string;
|
|
@@ -1048,125 +1171,9 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
1048
1171
|
proxy_tracker: IProxyTracking | string;
|
|
1049
1172
|
}
|
|
1050
1173
|
|
|
1051
|
-
interface
|
|
1052
|
-
|
|
1053
|
-
password: string;
|
|
1054
|
-
code2FA: string;
|
|
1174
|
+
interface IAccountEmailProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1175
|
+
accountEmail: string | IAccountAIImage;
|
|
1055
1176
|
proxy: string | IProxy;
|
|
1056
|
-
status: EStatusEmail;
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
|
-
interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1060
|
-
model: EAIModelImage;
|
|
1061
|
-
provider: string;
|
|
1062
|
-
versionModel: EAIVersionImage;
|
|
1063
|
-
emailAccount: string | IAccountEmail;
|
|
1064
|
-
password: string;
|
|
1065
|
-
code2FA: string;
|
|
1066
|
-
isActive: boolean;
|
|
1067
|
-
status: EStatusAccountAI;
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
interface IAccountAIImageChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1071
|
-
model: EAIModelImage;
|
|
1072
|
-
name: string;
|
|
1073
|
-
url: string;
|
|
1074
|
-
color: string;
|
|
1075
|
-
}
|
|
1076
|
-
|
|
1077
|
-
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1078
|
-
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
1079
|
-
ideaManagerWork: string | IManagerWork;
|
|
1080
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
1081
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
1082
|
-
tags: string[] | IAccountAIImageTag[];
|
|
1083
|
-
membersAssigned: string[] | IUser[];
|
|
1084
|
-
listAccountInfoChannels: Array<{
|
|
1085
|
-
accountInfo: IAccountAIImageInfo | string;
|
|
1086
|
-
listChannels: IAccountAIImageChannel[] | string[];
|
|
1087
|
-
}>;
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
interface IAccountAIVoiceTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1091
|
-
name: string;
|
|
1092
|
-
color: string;
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
|
-
interface IAccountAIVoiceGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1096
|
-
name: string;
|
|
1097
|
-
slug: string;
|
|
1098
|
-
}
|
|
1099
|
-
|
|
1100
|
-
interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1101
|
-
model: EAIModelVoice;
|
|
1102
|
-
provider: string;
|
|
1103
|
-
versionModel: EAIVersionVoice;
|
|
1104
|
-
emailAccount: string | IAccountEmail;
|
|
1105
|
-
password: string;
|
|
1106
|
-
code2FA: string;
|
|
1107
|
-
isActive: boolean;
|
|
1108
|
-
status: EStatusAccountAI;
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
interface IAccountAIVoiceChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1112
|
-
model: EAIModelVoice;
|
|
1113
|
-
name: string;
|
|
1114
|
-
url: string;
|
|
1115
|
-
color: string;
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
|
-
interface IAccountAIVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1119
|
-
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
1120
|
-
ideaManagerWork: string | IManagerWork;
|
|
1121
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
1122
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
1123
|
-
tags: string[] | IAccountAIVoiceTag[];
|
|
1124
|
-
membersAssigned: string[] | IUser[];
|
|
1125
|
-
listAccountInfoChannels: Array<{
|
|
1126
|
-
accountInfo: IAccountAIVoiceInfo | string;
|
|
1127
|
-
listChannels: IAccountAIVoiceChannel[] | string[];
|
|
1128
|
-
}>;
|
|
1129
|
-
}
|
|
1130
|
-
|
|
1131
|
-
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
1132
|
-
name: string;
|
|
1133
|
-
color: string;
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1137
|
-
name: string;
|
|
1138
|
-
slug: string;
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1141
|
-
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1142
|
-
model: EAIModelContent;
|
|
1143
|
-
name: string;
|
|
1144
|
-
url: string;
|
|
1145
|
-
color: string;
|
|
1146
|
-
}
|
|
1147
|
-
|
|
1148
|
-
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1149
|
-
model: EAIModelContent;
|
|
1150
|
-
provider: string;
|
|
1151
|
-
versionModel: EAIVersionGPT | EAIVersionPerplexity;
|
|
1152
|
-
emailAccount: string | IAccountEmail;
|
|
1153
|
-
password: string;
|
|
1154
|
-
code2FA: string;
|
|
1155
|
-
isActive: boolean;
|
|
1156
|
-
status: EStatusAccountAI;
|
|
1157
|
-
}
|
|
1158
|
-
|
|
1159
|
-
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1160
|
-
listGroupsAI: string[] | IAccountAIGroup[];
|
|
1161
|
-
ideaManagerWork: string | IManagerWork;
|
|
1162
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
1163
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
1164
|
-
tags: string[] | IAccountAITag[];
|
|
1165
|
-
membersAssigned: string[] | IUser[];
|
|
1166
|
-
listAccountInfoChannels: Array<{
|
|
1167
|
-
accountInfo: IAccountAIInfo | string;
|
|
1168
|
-
listChannels: IAccountAIChannel[] | string[];
|
|
1169
|
-
}>;
|
|
1170
1177
|
}
|
|
1171
1178
|
|
|
1172
1179
|
interface IAccountEmailTaskWork extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -1388,6 +1395,7 @@ type index$4_IAccountAIVoiceTag = IAccountAIVoiceTag;
|
|
|
1388
1395
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1389
1396
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1390
1397
|
type index$4_IAccountEmail = IAccountEmail;
|
|
1398
|
+
type index$4_IAccountEmailProxy = IAccountEmailProxy;
|
|
1391
1399
|
type index$4_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
1392
1400
|
type index$4_IAccountVPS = IAccountVPS;
|
|
1393
1401
|
type index$4_IAccountVPSGroup = IAccountVPSGroup;
|
|
@@ -1421,7 +1429,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1421
1429
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1422
1430
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1423
1431
|
declare namespace index$4 {
|
|
1424
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountAIVoice as IAccountAIVoice, index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountEmail as IAccountEmail, index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1432
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountAIVoice as IAccountAIVoice, index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountEmail as IAccountEmail, index$4_IAccountEmailProxy as IAccountEmailProxy, index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1425
1433
|
}
|
|
1426
1434
|
|
|
1427
1435
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -587,6 +587,7 @@ var EStatusAccountAI = /* @__PURE__ */ ((EStatusAccountAI2) => {
|
|
|
587
587
|
|
|
588
588
|
// src/enums/ai/status/EStatusEmail.enum.ts
|
|
589
589
|
var EStatusEmail = /* @__PURE__ */ ((EStatusEmail2) => {
|
|
590
|
+
EStatusEmail2["New"] = "New";
|
|
590
591
|
EStatusEmail2["Active"] = "Active";
|
|
591
592
|
EStatusEmail2["Suspend"] = "Suspend";
|
|
592
593
|
EStatusEmail2["Wrong2FA"] = "Wrong2FA";
|
package/dist/index.mjs
CHANGED
|
@@ -564,6 +564,7 @@ var EStatusAccountAI = /* @__PURE__ */ ((EStatusAccountAI2) => {
|
|
|
564
564
|
|
|
565
565
|
// src/enums/ai/status/EStatusEmail.enum.ts
|
|
566
566
|
var EStatusEmail = /* @__PURE__ */ ((EStatusEmail2) => {
|
|
567
|
+
EStatusEmail2["New"] = "New";
|
|
567
568
|
EStatusEmail2["Active"] = "Active";
|
|
568
569
|
EStatusEmail2["Suspend"] = "Suspend";
|
|
569
570
|
EStatusEmail2["Wrong2FA"] = "Wrong2FA";
|