automation-lib 4.9.42 → 4.9.45
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 +153 -147
- package/dist/index.d.ts +153 -147
- package/dist/index.js +9 -9
- package/dist/index.mjs +9 -9
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -901,10 +901,162 @@ interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
901
901
|
slug: string;
|
|
902
902
|
}
|
|
903
903
|
|
|
904
|
+
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
905
|
+
ag_name: string;
|
|
906
|
+
ag_slug: string;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
910
|
+
pc_name: string;
|
|
911
|
+
pc_user: IUser | string;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
915
|
+
ds_device: IDevice | string;
|
|
916
|
+
ds_deviceKey: string;
|
|
917
|
+
ds_typeSocial: ETypeSocial;
|
|
918
|
+
ds_maximumAccountApply: number;
|
|
919
|
+
ds_isFulled: boolean;
|
|
920
|
+
ds_numberAccountApplied: number;
|
|
921
|
+
ds_accountApplied: IAccount[] | string[];
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
interface IDeviceInfoEmail {
|
|
925
|
+
email: string;
|
|
926
|
+
email2fa: string;
|
|
927
|
+
password: string;
|
|
928
|
+
emailReceiver: string;
|
|
929
|
+
}
|
|
930
|
+
interface IDeviceAllowPermission {
|
|
931
|
+
isAllowPermissionCanva: boolean;
|
|
932
|
+
isAllowPermissionCloneAppPro: boolean;
|
|
933
|
+
isAllowPermissionGmail: boolean;
|
|
934
|
+
isAllowPermissionPlayStore: boolean;
|
|
935
|
+
isAllowPermissionChrome: boolean;
|
|
936
|
+
}
|
|
937
|
+
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
938
|
+
device_pc: IPC | string;
|
|
939
|
+
device_name: string;
|
|
940
|
+
device_serial: string;
|
|
941
|
+
device_key: string;
|
|
942
|
+
device_settings: IDeviceSetting[] | string[];
|
|
943
|
+
device_emailInfo: IDeviceInfoEmail;
|
|
944
|
+
device_status: EStatusCommon;
|
|
945
|
+
device_statusSetup: EStatusCommon;
|
|
946
|
+
device_statusSetupEmail: EStatusCommon;
|
|
947
|
+
device_statusCHPlay: EStatusCommon;
|
|
948
|
+
device_allowPermission: IDeviceAllowPermission;
|
|
949
|
+
device_note: string;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
953
|
+
idea_name: string;
|
|
954
|
+
idea_slug: string;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
958
|
+
niche_name: string;
|
|
959
|
+
niche_slug: string;
|
|
960
|
+
niche_idea: string | IIdea;
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
964
|
+
tse_accountId: string;
|
|
965
|
+
tse_serviceName: string;
|
|
966
|
+
tse_actionsExecuted: string[];
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
interface IAccountDetailEmail {
|
|
970
|
+
email: string;
|
|
971
|
+
emailPassword: string;
|
|
972
|
+
emailReceive: string;
|
|
973
|
+
email2Fa: string;
|
|
974
|
+
}
|
|
975
|
+
interface IAccountDetailSocial {
|
|
976
|
+
avatar: string;
|
|
977
|
+
linksDetail: Array<{
|
|
978
|
+
name: string;
|
|
979
|
+
url: string;
|
|
980
|
+
}>;
|
|
981
|
+
bio: string;
|
|
982
|
+
social2Fa: string;
|
|
983
|
+
fullName: string;
|
|
984
|
+
email: string;
|
|
985
|
+
}
|
|
986
|
+
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
987
|
+
account_avatar: string;
|
|
988
|
+
account_cover: string;
|
|
989
|
+
account_sheetUrl: string;
|
|
990
|
+
account_niche: string | INiche;
|
|
991
|
+
account_idea: string | IIdea;
|
|
992
|
+
account_pc: IPC | string;
|
|
993
|
+
account_username: string;
|
|
994
|
+
account_password: string;
|
|
995
|
+
account_deviceKey: string;
|
|
996
|
+
account_device: IDevice | string;
|
|
997
|
+
account_proxy: IProxy | string;
|
|
998
|
+
account_group: IAccountsGroup | string;
|
|
999
|
+
account_nameAppClone: string;
|
|
1000
|
+
account_typeDevice: string;
|
|
1001
|
+
account_nameDevice: string;
|
|
1002
|
+
account_detailEmail: IAccountDetailEmail;
|
|
1003
|
+
account_detailSocial: IAccountDetailSocial;
|
|
1004
|
+
account_historyInfo: any;
|
|
1005
|
+
account_social: ETypeSocial;
|
|
1006
|
+
account_lastActiveTime: Date;
|
|
1007
|
+
account_status: string;
|
|
1008
|
+
account_statusChangeInfo: EStatusExecuteCommon;
|
|
1009
|
+
account_statusChangeSetting: EStatusExecuteCommon;
|
|
1010
|
+
account_statusLogin: EStatusLoginAccountSocial;
|
|
1011
|
+
account_isAllowPermissionApp: boolean;
|
|
1012
|
+
account_packageApp: string;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1016
|
+
ps_proxy: IProxy | string;
|
|
1017
|
+
ps_typeSocial: ETypeSocial;
|
|
1018
|
+
ps_maximumAccountApply: number;
|
|
1019
|
+
ps_isFulled: boolean;
|
|
1020
|
+
ps_numberAccountApplied: number;
|
|
1021
|
+
ps_accountApplied: IAccount[] | string[];
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1025
|
+
pt_url: string;
|
|
1026
|
+
pt_name: string;
|
|
1027
|
+
pt_desc: string;
|
|
1028
|
+
pt_totalProxy: number;
|
|
1029
|
+
pt_totalLive: number;
|
|
1030
|
+
pt_totalDie: number;
|
|
1031
|
+
pt_department: IDepartment | string;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1035
|
+
proxy_ip: string;
|
|
1036
|
+
proxy_key: string;
|
|
1037
|
+
proxy_port: string;
|
|
1038
|
+
proxy_username: string;
|
|
1039
|
+
proxy_provider: string;
|
|
1040
|
+
proxy_password: string;
|
|
1041
|
+
proxy_status: EStatusCommon;
|
|
1042
|
+
proxy_city: string;
|
|
1043
|
+
proxy_country: string;
|
|
1044
|
+
proxy_lastUsed: Date;
|
|
1045
|
+
proxy_department: string | IDepartment;
|
|
1046
|
+
proxy_user: string | IUser;
|
|
1047
|
+
proxy_settings: Array<IProxySetting> | Array<string>;
|
|
1048
|
+
proxy_tracker: IProxyTracking | string;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
904
1051
|
interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
905
1052
|
email: string;
|
|
906
1053
|
password: string;
|
|
907
1054
|
code2FA: string;
|
|
1055
|
+
tagWorks: Array<{
|
|
1056
|
+
idea: IManagerWork | string;
|
|
1057
|
+
niches: IManagerWork[] | string[];
|
|
1058
|
+
}>;
|
|
1059
|
+
proxy: string | IProxy;
|
|
908
1060
|
status: EStatusEmail;
|
|
909
1061
|
}
|
|
910
1062
|
|
|
@@ -957,6 +1109,7 @@ interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoIn
|
|
|
957
1109
|
password: string;
|
|
958
1110
|
code2FA: string;
|
|
959
1111
|
isActive: boolean;
|
|
1112
|
+
status: EStatusAccountAI;
|
|
960
1113
|
}
|
|
961
1114
|
|
|
962
1115
|
interface IAccountAIVoiceChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -1036,153 +1189,6 @@ interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceM
|
|
|
1036
1189
|
status: EStatusVPS;
|
|
1037
1190
|
}
|
|
1038
1191
|
|
|
1039
|
-
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1040
|
-
ag_name: string;
|
|
1041
|
-
ag_slug: string;
|
|
1042
|
-
}
|
|
1043
|
-
|
|
1044
|
-
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1045
|
-
pc_name: string;
|
|
1046
|
-
pc_user: IUser | string;
|
|
1047
|
-
}
|
|
1048
|
-
|
|
1049
|
-
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1050
|
-
ds_device: IDevice | string;
|
|
1051
|
-
ds_deviceKey: string;
|
|
1052
|
-
ds_typeSocial: ETypeSocial;
|
|
1053
|
-
ds_maximumAccountApply: number;
|
|
1054
|
-
ds_isFulled: boolean;
|
|
1055
|
-
ds_numberAccountApplied: number;
|
|
1056
|
-
ds_accountApplied: IAccount[] | string[];
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
|
-
interface IDeviceInfoEmail {
|
|
1060
|
-
email: string;
|
|
1061
|
-
email2fa: string;
|
|
1062
|
-
password: string;
|
|
1063
|
-
emailReceiver: string;
|
|
1064
|
-
}
|
|
1065
|
-
interface IDeviceAllowPermission {
|
|
1066
|
-
isAllowPermissionCanva: boolean;
|
|
1067
|
-
isAllowPermissionCloneAppPro: boolean;
|
|
1068
|
-
isAllowPermissionGmail: boolean;
|
|
1069
|
-
isAllowPermissionPlayStore: boolean;
|
|
1070
|
-
isAllowPermissionChrome: boolean;
|
|
1071
|
-
}
|
|
1072
|
-
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1073
|
-
device_pc: IPC | string;
|
|
1074
|
-
device_name: string;
|
|
1075
|
-
device_serial: string;
|
|
1076
|
-
device_key: string;
|
|
1077
|
-
device_settings: IDeviceSetting[] | string[];
|
|
1078
|
-
device_emailInfo: IDeviceInfoEmail;
|
|
1079
|
-
device_status: EStatusCommon;
|
|
1080
|
-
device_statusSetup: EStatusCommon;
|
|
1081
|
-
device_statusSetupEmail: EStatusCommon;
|
|
1082
|
-
device_statusCHPlay: EStatusCommon;
|
|
1083
|
-
device_allowPermission: IDeviceAllowPermission;
|
|
1084
|
-
device_note: string;
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1088
|
-
ps_proxy: IProxy | string;
|
|
1089
|
-
ps_typeSocial: ETypeSocial;
|
|
1090
|
-
ps_maximumAccountApply: number;
|
|
1091
|
-
ps_isFulled: boolean;
|
|
1092
|
-
ps_numberAccountApplied: number;
|
|
1093
|
-
ps_accountApplied: IAccount[] | string[];
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1096
|
-
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1097
|
-
pt_url: string;
|
|
1098
|
-
pt_name: string;
|
|
1099
|
-
pt_desc: string;
|
|
1100
|
-
pt_totalProxy: number;
|
|
1101
|
-
pt_totalLive: number;
|
|
1102
|
-
pt_totalDie: number;
|
|
1103
|
-
pt_department: IDepartment | string;
|
|
1104
|
-
}
|
|
1105
|
-
|
|
1106
|
-
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1107
|
-
proxy_ip: string;
|
|
1108
|
-
proxy_key: string;
|
|
1109
|
-
proxy_port: string;
|
|
1110
|
-
proxy_username: string;
|
|
1111
|
-
proxy_provider: string;
|
|
1112
|
-
proxy_password: string;
|
|
1113
|
-
proxy_status: EStatusCommon;
|
|
1114
|
-
proxy_city: string;
|
|
1115
|
-
proxy_country: string;
|
|
1116
|
-
proxy_lastUsed: Date;
|
|
1117
|
-
proxy_department: string | IDepartment;
|
|
1118
|
-
proxy_user: string | IUser;
|
|
1119
|
-
proxy_settings: Array<IProxySetting> | Array<string>;
|
|
1120
|
-
proxy_tracker: IProxyTracking | string;
|
|
1121
|
-
}
|
|
1122
|
-
|
|
1123
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1124
|
-
idea_name: string;
|
|
1125
|
-
idea_slug: string;
|
|
1126
|
-
}
|
|
1127
|
-
|
|
1128
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1129
|
-
niche_name: string;
|
|
1130
|
-
niche_slug: string;
|
|
1131
|
-
niche_idea: string | IIdea;
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1135
|
-
tse_accountId: string;
|
|
1136
|
-
tse_serviceName: string;
|
|
1137
|
-
tse_actionsExecuted: string[];
|
|
1138
|
-
}
|
|
1139
|
-
|
|
1140
|
-
interface IAccountDetailEmail {
|
|
1141
|
-
email: string;
|
|
1142
|
-
emailPassword: string;
|
|
1143
|
-
emailReceive: string;
|
|
1144
|
-
email2Fa: string;
|
|
1145
|
-
}
|
|
1146
|
-
interface IAccountDetailSocial {
|
|
1147
|
-
avatar: string;
|
|
1148
|
-
linksDetail: Array<{
|
|
1149
|
-
name: string;
|
|
1150
|
-
url: string;
|
|
1151
|
-
}>;
|
|
1152
|
-
bio: string;
|
|
1153
|
-
social2Fa: string;
|
|
1154
|
-
fullName: string;
|
|
1155
|
-
email: string;
|
|
1156
|
-
}
|
|
1157
|
-
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1158
|
-
account_avatar: string;
|
|
1159
|
-
account_cover: string;
|
|
1160
|
-
account_sheetUrl: string;
|
|
1161
|
-
account_niche: string | INiche;
|
|
1162
|
-
account_idea: string | IIdea;
|
|
1163
|
-
account_pc: IPC | string;
|
|
1164
|
-
account_username: string;
|
|
1165
|
-
account_password: string;
|
|
1166
|
-
account_deviceKey: string;
|
|
1167
|
-
account_device: IDevice | string;
|
|
1168
|
-
account_proxy: IProxy | string;
|
|
1169
|
-
account_group: IAccountsGroup | string;
|
|
1170
|
-
account_nameAppClone: string;
|
|
1171
|
-
account_typeDevice: string;
|
|
1172
|
-
account_nameDevice: string;
|
|
1173
|
-
account_detailEmail: IAccountDetailEmail;
|
|
1174
|
-
account_detailSocial: IAccountDetailSocial;
|
|
1175
|
-
account_historyInfo: any;
|
|
1176
|
-
account_social: ETypeSocial;
|
|
1177
|
-
account_lastActiveTime: Date;
|
|
1178
|
-
account_status: string;
|
|
1179
|
-
account_statusChangeInfo: EStatusExecuteCommon;
|
|
1180
|
-
account_statusChangeSetting: EStatusExecuteCommon;
|
|
1181
|
-
account_statusLogin: EStatusLoginAccountSocial;
|
|
1182
|
-
account_isAllowPermissionApp: boolean;
|
|
1183
|
-
account_packageApp: string;
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
1192
|
interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1187
1193
|
logging_name: string;
|
|
1188
1194
|
logging_account: IAccount | string;
|
package/dist/index.d.ts
CHANGED
|
@@ -901,10 +901,162 @@ interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
901
901
|
slug: string;
|
|
902
902
|
}
|
|
903
903
|
|
|
904
|
+
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
905
|
+
ag_name: string;
|
|
906
|
+
ag_slug: string;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
910
|
+
pc_name: string;
|
|
911
|
+
pc_user: IUser | string;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
915
|
+
ds_device: IDevice | string;
|
|
916
|
+
ds_deviceKey: string;
|
|
917
|
+
ds_typeSocial: ETypeSocial;
|
|
918
|
+
ds_maximumAccountApply: number;
|
|
919
|
+
ds_isFulled: boolean;
|
|
920
|
+
ds_numberAccountApplied: number;
|
|
921
|
+
ds_accountApplied: IAccount[] | string[];
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
interface IDeviceInfoEmail {
|
|
925
|
+
email: string;
|
|
926
|
+
email2fa: string;
|
|
927
|
+
password: string;
|
|
928
|
+
emailReceiver: string;
|
|
929
|
+
}
|
|
930
|
+
interface IDeviceAllowPermission {
|
|
931
|
+
isAllowPermissionCanva: boolean;
|
|
932
|
+
isAllowPermissionCloneAppPro: boolean;
|
|
933
|
+
isAllowPermissionGmail: boolean;
|
|
934
|
+
isAllowPermissionPlayStore: boolean;
|
|
935
|
+
isAllowPermissionChrome: boolean;
|
|
936
|
+
}
|
|
937
|
+
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
938
|
+
device_pc: IPC | string;
|
|
939
|
+
device_name: string;
|
|
940
|
+
device_serial: string;
|
|
941
|
+
device_key: string;
|
|
942
|
+
device_settings: IDeviceSetting[] | string[];
|
|
943
|
+
device_emailInfo: IDeviceInfoEmail;
|
|
944
|
+
device_status: EStatusCommon;
|
|
945
|
+
device_statusSetup: EStatusCommon;
|
|
946
|
+
device_statusSetupEmail: EStatusCommon;
|
|
947
|
+
device_statusCHPlay: EStatusCommon;
|
|
948
|
+
device_allowPermission: IDeviceAllowPermission;
|
|
949
|
+
device_note: string;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
953
|
+
idea_name: string;
|
|
954
|
+
idea_slug: string;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
958
|
+
niche_name: string;
|
|
959
|
+
niche_slug: string;
|
|
960
|
+
niche_idea: string | IIdea;
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
964
|
+
tse_accountId: string;
|
|
965
|
+
tse_serviceName: string;
|
|
966
|
+
tse_actionsExecuted: string[];
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
interface IAccountDetailEmail {
|
|
970
|
+
email: string;
|
|
971
|
+
emailPassword: string;
|
|
972
|
+
emailReceive: string;
|
|
973
|
+
email2Fa: string;
|
|
974
|
+
}
|
|
975
|
+
interface IAccountDetailSocial {
|
|
976
|
+
avatar: string;
|
|
977
|
+
linksDetail: Array<{
|
|
978
|
+
name: string;
|
|
979
|
+
url: string;
|
|
980
|
+
}>;
|
|
981
|
+
bio: string;
|
|
982
|
+
social2Fa: string;
|
|
983
|
+
fullName: string;
|
|
984
|
+
email: string;
|
|
985
|
+
}
|
|
986
|
+
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
987
|
+
account_avatar: string;
|
|
988
|
+
account_cover: string;
|
|
989
|
+
account_sheetUrl: string;
|
|
990
|
+
account_niche: string | INiche;
|
|
991
|
+
account_idea: string | IIdea;
|
|
992
|
+
account_pc: IPC | string;
|
|
993
|
+
account_username: string;
|
|
994
|
+
account_password: string;
|
|
995
|
+
account_deviceKey: string;
|
|
996
|
+
account_device: IDevice | string;
|
|
997
|
+
account_proxy: IProxy | string;
|
|
998
|
+
account_group: IAccountsGroup | string;
|
|
999
|
+
account_nameAppClone: string;
|
|
1000
|
+
account_typeDevice: string;
|
|
1001
|
+
account_nameDevice: string;
|
|
1002
|
+
account_detailEmail: IAccountDetailEmail;
|
|
1003
|
+
account_detailSocial: IAccountDetailSocial;
|
|
1004
|
+
account_historyInfo: any;
|
|
1005
|
+
account_social: ETypeSocial;
|
|
1006
|
+
account_lastActiveTime: Date;
|
|
1007
|
+
account_status: string;
|
|
1008
|
+
account_statusChangeInfo: EStatusExecuteCommon;
|
|
1009
|
+
account_statusChangeSetting: EStatusExecuteCommon;
|
|
1010
|
+
account_statusLogin: EStatusLoginAccountSocial;
|
|
1011
|
+
account_isAllowPermissionApp: boolean;
|
|
1012
|
+
account_packageApp: string;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1016
|
+
ps_proxy: IProxy | string;
|
|
1017
|
+
ps_typeSocial: ETypeSocial;
|
|
1018
|
+
ps_maximumAccountApply: number;
|
|
1019
|
+
ps_isFulled: boolean;
|
|
1020
|
+
ps_numberAccountApplied: number;
|
|
1021
|
+
ps_accountApplied: IAccount[] | string[];
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1025
|
+
pt_url: string;
|
|
1026
|
+
pt_name: string;
|
|
1027
|
+
pt_desc: string;
|
|
1028
|
+
pt_totalProxy: number;
|
|
1029
|
+
pt_totalLive: number;
|
|
1030
|
+
pt_totalDie: number;
|
|
1031
|
+
pt_department: IDepartment | string;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1035
|
+
proxy_ip: string;
|
|
1036
|
+
proxy_key: string;
|
|
1037
|
+
proxy_port: string;
|
|
1038
|
+
proxy_username: string;
|
|
1039
|
+
proxy_provider: string;
|
|
1040
|
+
proxy_password: string;
|
|
1041
|
+
proxy_status: EStatusCommon;
|
|
1042
|
+
proxy_city: string;
|
|
1043
|
+
proxy_country: string;
|
|
1044
|
+
proxy_lastUsed: Date;
|
|
1045
|
+
proxy_department: string | IDepartment;
|
|
1046
|
+
proxy_user: string | IUser;
|
|
1047
|
+
proxy_settings: Array<IProxySetting> | Array<string>;
|
|
1048
|
+
proxy_tracker: IProxyTracking | string;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
904
1051
|
interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
905
1052
|
email: string;
|
|
906
1053
|
password: string;
|
|
907
1054
|
code2FA: string;
|
|
1055
|
+
tagWorks: Array<{
|
|
1056
|
+
idea: IManagerWork | string;
|
|
1057
|
+
niches: IManagerWork[] | string[];
|
|
1058
|
+
}>;
|
|
1059
|
+
proxy: string | IProxy;
|
|
908
1060
|
status: EStatusEmail;
|
|
909
1061
|
}
|
|
910
1062
|
|
|
@@ -957,6 +1109,7 @@ interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoIn
|
|
|
957
1109
|
password: string;
|
|
958
1110
|
code2FA: string;
|
|
959
1111
|
isActive: boolean;
|
|
1112
|
+
status: EStatusAccountAI;
|
|
960
1113
|
}
|
|
961
1114
|
|
|
962
1115
|
interface IAccountAIVoiceChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -1036,153 +1189,6 @@ interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceM
|
|
|
1036
1189
|
status: EStatusVPS;
|
|
1037
1190
|
}
|
|
1038
1191
|
|
|
1039
|
-
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1040
|
-
ag_name: string;
|
|
1041
|
-
ag_slug: string;
|
|
1042
|
-
}
|
|
1043
|
-
|
|
1044
|
-
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1045
|
-
pc_name: string;
|
|
1046
|
-
pc_user: IUser | string;
|
|
1047
|
-
}
|
|
1048
|
-
|
|
1049
|
-
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1050
|
-
ds_device: IDevice | string;
|
|
1051
|
-
ds_deviceKey: string;
|
|
1052
|
-
ds_typeSocial: ETypeSocial;
|
|
1053
|
-
ds_maximumAccountApply: number;
|
|
1054
|
-
ds_isFulled: boolean;
|
|
1055
|
-
ds_numberAccountApplied: number;
|
|
1056
|
-
ds_accountApplied: IAccount[] | string[];
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
|
-
interface IDeviceInfoEmail {
|
|
1060
|
-
email: string;
|
|
1061
|
-
email2fa: string;
|
|
1062
|
-
password: string;
|
|
1063
|
-
emailReceiver: string;
|
|
1064
|
-
}
|
|
1065
|
-
interface IDeviceAllowPermission {
|
|
1066
|
-
isAllowPermissionCanva: boolean;
|
|
1067
|
-
isAllowPermissionCloneAppPro: boolean;
|
|
1068
|
-
isAllowPermissionGmail: boolean;
|
|
1069
|
-
isAllowPermissionPlayStore: boolean;
|
|
1070
|
-
isAllowPermissionChrome: boolean;
|
|
1071
|
-
}
|
|
1072
|
-
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1073
|
-
device_pc: IPC | string;
|
|
1074
|
-
device_name: string;
|
|
1075
|
-
device_serial: string;
|
|
1076
|
-
device_key: string;
|
|
1077
|
-
device_settings: IDeviceSetting[] | string[];
|
|
1078
|
-
device_emailInfo: IDeviceInfoEmail;
|
|
1079
|
-
device_status: EStatusCommon;
|
|
1080
|
-
device_statusSetup: EStatusCommon;
|
|
1081
|
-
device_statusSetupEmail: EStatusCommon;
|
|
1082
|
-
device_statusCHPlay: EStatusCommon;
|
|
1083
|
-
device_allowPermission: IDeviceAllowPermission;
|
|
1084
|
-
device_note: string;
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1088
|
-
ps_proxy: IProxy | string;
|
|
1089
|
-
ps_typeSocial: ETypeSocial;
|
|
1090
|
-
ps_maximumAccountApply: number;
|
|
1091
|
-
ps_isFulled: boolean;
|
|
1092
|
-
ps_numberAccountApplied: number;
|
|
1093
|
-
ps_accountApplied: IAccount[] | string[];
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1096
|
-
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1097
|
-
pt_url: string;
|
|
1098
|
-
pt_name: string;
|
|
1099
|
-
pt_desc: string;
|
|
1100
|
-
pt_totalProxy: number;
|
|
1101
|
-
pt_totalLive: number;
|
|
1102
|
-
pt_totalDie: number;
|
|
1103
|
-
pt_department: IDepartment | string;
|
|
1104
|
-
}
|
|
1105
|
-
|
|
1106
|
-
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1107
|
-
proxy_ip: string;
|
|
1108
|
-
proxy_key: string;
|
|
1109
|
-
proxy_port: string;
|
|
1110
|
-
proxy_username: string;
|
|
1111
|
-
proxy_provider: string;
|
|
1112
|
-
proxy_password: string;
|
|
1113
|
-
proxy_status: EStatusCommon;
|
|
1114
|
-
proxy_city: string;
|
|
1115
|
-
proxy_country: string;
|
|
1116
|
-
proxy_lastUsed: Date;
|
|
1117
|
-
proxy_department: string | IDepartment;
|
|
1118
|
-
proxy_user: string | IUser;
|
|
1119
|
-
proxy_settings: Array<IProxySetting> | Array<string>;
|
|
1120
|
-
proxy_tracker: IProxyTracking | string;
|
|
1121
|
-
}
|
|
1122
|
-
|
|
1123
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1124
|
-
idea_name: string;
|
|
1125
|
-
idea_slug: string;
|
|
1126
|
-
}
|
|
1127
|
-
|
|
1128
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1129
|
-
niche_name: string;
|
|
1130
|
-
niche_slug: string;
|
|
1131
|
-
niche_idea: string | IIdea;
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1135
|
-
tse_accountId: string;
|
|
1136
|
-
tse_serviceName: string;
|
|
1137
|
-
tse_actionsExecuted: string[];
|
|
1138
|
-
}
|
|
1139
|
-
|
|
1140
|
-
interface IAccountDetailEmail {
|
|
1141
|
-
email: string;
|
|
1142
|
-
emailPassword: string;
|
|
1143
|
-
emailReceive: string;
|
|
1144
|
-
email2Fa: string;
|
|
1145
|
-
}
|
|
1146
|
-
interface IAccountDetailSocial {
|
|
1147
|
-
avatar: string;
|
|
1148
|
-
linksDetail: Array<{
|
|
1149
|
-
name: string;
|
|
1150
|
-
url: string;
|
|
1151
|
-
}>;
|
|
1152
|
-
bio: string;
|
|
1153
|
-
social2Fa: string;
|
|
1154
|
-
fullName: string;
|
|
1155
|
-
email: string;
|
|
1156
|
-
}
|
|
1157
|
-
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1158
|
-
account_avatar: string;
|
|
1159
|
-
account_cover: string;
|
|
1160
|
-
account_sheetUrl: string;
|
|
1161
|
-
account_niche: string | INiche;
|
|
1162
|
-
account_idea: string | IIdea;
|
|
1163
|
-
account_pc: IPC | string;
|
|
1164
|
-
account_username: string;
|
|
1165
|
-
account_password: string;
|
|
1166
|
-
account_deviceKey: string;
|
|
1167
|
-
account_device: IDevice | string;
|
|
1168
|
-
account_proxy: IProxy | string;
|
|
1169
|
-
account_group: IAccountsGroup | string;
|
|
1170
|
-
account_nameAppClone: string;
|
|
1171
|
-
account_typeDevice: string;
|
|
1172
|
-
account_nameDevice: string;
|
|
1173
|
-
account_detailEmail: IAccountDetailEmail;
|
|
1174
|
-
account_detailSocial: IAccountDetailSocial;
|
|
1175
|
-
account_historyInfo: any;
|
|
1176
|
-
account_social: ETypeSocial;
|
|
1177
|
-
account_lastActiveTime: Date;
|
|
1178
|
-
account_status: string;
|
|
1179
|
-
account_statusChangeInfo: EStatusExecuteCommon;
|
|
1180
|
-
account_statusChangeSetting: EStatusExecuteCommon;
|
|
1181
|
-
account_statusLogin: EStatusLoginAccountSocial;
|
|
1182
|
-
account_isAllowPermissionApp: boolean;
|
|
1183
|
-
account_packageApp: string;
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
1192
|
interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1187
1193
|
logging_name: string;
|
|
1188
1194
|
logging_account: IAccount | string;
|
package/dist/index.js
CHANGED
|
@@ -524,33 +524,33 @@ __export(ai_exports, {
|
|
|
524
524
|
EStatusEmail: () => EStatusEmail
|
|
525
525
|
});
|
|
526
526
|
|
|
527
|
-
// src/enums/ai/EAIModelContent.enum.ts
|
|
527
|
+
// src/enums/ai/model/EAIModelContent.enum.ts
|
|
528
528
|
var EAIModelContent = /* @__PURE__ */ ((EAIModelContent2) => {
|
|
529
529
|
EAIModelContent2["GPT"] = "GPT";
|
|
530
530
|
EAIModelContent2["Perplexity"] = "Perplexity";
|
|
531
531
|
return EAIModelContent2;
|
|
532
532
|
})(EAIModelContent || {});
|
|
533
533
|
|
|
534
|
-
// src/enums/ai/EAIModelImage.enum.ts
|
|
534
|
+
// src/enums/ai/model/EAIModelImage.enum.ts
|
|
535
535
|
var EAIModelImage = /* @__PURE__ */ ((EAIModelImage2) => {
|
|
536
536
|
EAIModelImage2["Freepik"] = "Freepik";
|
|
537
537
|
EAIModelImage2["GoogleLap"] = "GoogleLap";
|
|
538
538
|
return EAIModelImage2;
|
|
539
539
|
})(EAIModelImage || {});
|
|
540
540
|
|
|
541
|
-
// src/enums/ai/EAIModelVoice.enum.ts
|
|
541
|
+
// src/enums/ai/model/EAIModelVoice.enum.ts
|
|
542
542
|
var EAIModelVoice = /* @__PURE__ */ ((EAIModelVoice2) => {
|
|
543
543
|
EAIModelVoice2["Google"] = "Google";
|
|
544
544
|
return EAIModelVoice2;
|
|
545
545
|
})(EAIModelVoice || {});
|
|
546
546
|
|
|
547
|
-
// src/enums/ai/EAIVersionGPT.enum.ts
|
|
547
|
+
// src/enums/ai/version/EAIVersionGPT.enum.ts
|
|
548
548
|
var EAIVersionGPT = /* @__PURE__ */ ((EAIVersionGPT2) => {
|
|
549
549
|
EAIVersionGPT2["Default"] = "Default";
|
|
550
550
|
return EAIVersionGPT2;
|
|
551
551
|
})(EAIVersionGPT || {});
|
|
552
552
|
|
|
553
|
-
// src/enums/ai/EAIVersionPerplexity.enum.ts
|
|
553
|
+
// src/enums/ai/version/EAIVersionPerplexity.enum.ts
|
|
554
554
|
var EAIVersionPerplexity = /* @__PURE__ */ ((EAIVersionPerplexity2) => {
|
|
555
555
|
EAIVersionPerplexity2["Best"] = "Best";
|
|
556
556
|
EAIVersionPerplexity2["Sonar"] = "Sonar";
|
|
@@ -562,20 +562,20 @@ var EAIVersionPerplexity = /* @__PURE__ */ ((EAIVersionPerplexity2) => {
|
|
|
562
562
|
return EAIVersionPerplexity2;
|
|
563
563
|
})(EAIVersionPerplexity || {});
|
|
564
564
|
|
|
565
|
-
// src/enums/ai/EAIVersionImage.enum.ts
|
|
565
|
+
// src/enums/ai/version/EAIVersionImage.enum.ts
|
|
566
566
|
var EAIVersionImage = /* @__PURE__ */ ((EAIVersionImage2) => {
|
|
567
567
|
EAIVersionImage2["Freepik"] = "Freepik";
|
|
568
568
|
EAIVersionImage2["GoogleLaps"] = "GoogleLaps";
|
|
569
569
|
return EAIVersionImage2;
|
|
570
570
|
})(EAIVersionImage || {});
|
|
571
571
|
|
|
572
|
-
// src/enums/ai/EAIVersionVoice.enum.ts
|
|
572
|
+
// src/enums/ai/version/EAIVersionVoice.enum.ts
|
|
573
573
|
var EAIVersionVoice = /* @__PURE__ */ ((EAIVersionVoice2) => {
|
|
574
574
|
EAIVersionVoice2["Google"] = "Google";
|
|
575
575
|
return EAIVersionVoice2;
|
|
576
576
|
})(EAIVersionVoice || {});
|
|
577
577
|
|
|
578
|
-
// src/enums/ai/EStatusAccountAI.enum.ts
|
|
578
|
+
// src/enums/ai/status/EStatusAccountAI.enum.ts
|
|
579
579
|
var EStatusAccountAI = /* @__PURE__ */ ((EStatusAccountAI2) => {
|
|
580
580
|
EStatusAccountAI2["Active"] = "Active";
|
|
581
581
|
EStatusAccountAI2["Limit"] = "Limit";
|
|
@@ -585,7 +585,7 @@ var EStatusAccountAI = /* @__PURE__ */ ((EStatusAccountAI2) => {
|
|
|
585
585
|
return EStatusAccountAI2;
|
|
586
586
|
})(EStatusAccountAI || {});
|
|
587
587
|
|
|
588
|
-
// src/enums/ai/EStatusEmail.enum.ts
|
|
588
|
+
// src/enums/ai/status/EStatusEmail.enum.ts
|
|
589
589
|
var EStatusEmail = /* @__PURE__ */ ((EStatusEmail2) => {
|
|
590
590
|
EStatusEmail2["Active"] = "Active";
|
|
591
591
|
EStatusEmail2["Suspend"] = "Suspend";
|
package/dist/index.mjs
CHANGED
|
@@ -501,33 +501,33 @@ __export(ai_exports, {
|
|
|
501
501
|
EStatusEmail: () => EStatusEmail
|
|
502
502
|
});
|
|
503
503
|
|
|
504
|
-
// src/enums/ai/EAIModelContent.enum.ts
|
|
504
|
+
// src/enums/ai/model/EAIModelContent.enum.ts
|
|
505
505
|
var EAIModelContent = /* @__PURE__ */ ((EAIModelContent2) => {
|
|
506
506
|
EAIModelContent2["GPT"] = "GPT";
|
|
507
507
|
EAIModelContent2["Perplexity"] = "Perplexity";
|
|
508
508
|
return EAIModelContent2;
|
|
509
509
|
})(EAIModelContent || {});
|
|
510
510
|
|
|
511
|
-
// src/enums/ai/EAIModelImage.enum.ts
|
|
511
|
+
// src/enums/ai/model/EAIModelImage.enum.ts
|
|
512
512
|
var EAIModelImage = /* @__PURE__ */ ((EAIModelImage2) => {
|
|
513
513
|
EAIModelImage2["Freepik"] = "Freepik";
|
|
514
514
|
EAIModelImage2["GoogleLap"] = "GoogleLap";
|
|
515
515
|
return EAIModelImage2;
|
|
516
516
|
})(EAIModelImage || {});
|
|
517
517
|
|
|
518
|
-
// src/enums/ai/EAIModelVoice.enum.ts
|
|
518
|
+
// src/enums/ai/model/EAIModelVoice.enum.ts
|
|
519
519
|
var EAIModelVoice = /* @__PURE__ */ ((EAIModelVoice2) => {
|
|
520
520
|
EAIModelVoice2["Google"] = "Google";
|
|
521
521
|
return EAIModelVoice2;
|
|
522
522
|
})(EAIModelVoice || {});
|
|
523
523
|
|
|
524
|
-
// src/enums/ai/EAIVersionGPT.enum.ts
|
|
524
|
+
// src/enums/ai/version/EAIVersionGPT.enum.ts
|
|
525
525
|
var EAIVersionGPT = /* @__PURE__ */ ((EAIVersionGPT2) => {
|
|
526
526
|
EAIVersionGPT2["Default"] = "Default";
|
|
527
527
|
return EAIVersionGPT2;
|
|
528
528
|
})(EAIVersionGPT || {});
|
|
529
529
|
|
|
530
|
-
// src/enums/ai/EAIVersionPerplexity.enum.ts
|
|
530
|
+
// src/enums/ai/version/EAIVersionPerplexity.enum.ts
|
|
531
531
|
var EAIVersionPerplexity = /* @__PURE__ */ ((EAIVersionPerplexity2) => {
|
|
532
532
|
EAIVersionPerplexity2["Best"] = "Best";
|
|
533
533
|
EAIVersionPerplexity2["Sonar"] = "Sonar";
|
|
@@ -539,20 +539,20 @@ var EAIVersionPerplexity = /* @__PURE__ */ ((EAIVersionPerplexity2) => {
|
|
|
539
539
|
return EAIVersionPerplexity2;
|
|
540
540
|
})(EAIVersionPerplexity || {});
|
|
541
541
|
|
|
542
|
-
// src/enums/ai/EAIVersionImage.enum.ts
|
|
542
|
+
// src/enums/ai/version/EAIVersionImage.enum.ts
|
|
543
543
|
var EAIVersionImage = /* @__PURE__ */ ((EAIVersionImage2) => {
|
|
544
544
|
EAIVersionImage2["Freepik"] = "Freepik";
|
|
545
545
|
EAIVersionImage2["GoogleLaps"] = "GoogleLaps";
|
|
546
546
|
return EAIVersionImage2;
|
|
547
547
|
})(EAIVersionImage || {});
|
|
548
548
|
|
|
549
|
-
// src/enums/ai/EAIVersionVoice.enum.ts
|
|
549
|
+
// src/enums/ai/version/EAIVersionVoice.enum.ts
|
|
550
550
|
var EAIVersionVoice = /* @__PURE__ */ ((EAIVersionVoice2) => {
|
|
551
551
|
EAIVersionVoice2["Google"] = "Google";
|
|
552
552
|
return EAIVersionVoice2;
|
|
553
553
|
})(EAIVersionVoice || {});
|
|
554
554
|
|
|
555
|
-
// src/enums/ai/EStatusAccountAI.enum.ts
|
|
555
|
+
// src/enums/ai/status/EStatusAccountAI.enum.ts
|
|
556
556
|
var EStatusAccountAI = /* @__PURE__ */ ((EStatusAccountAI2) => {
|
|
557
557
|
EStatusAccountAI2["Active"] = "Active";
|
|
558
558
|
EStatusAccountAI2["Limit"] = "Limit";
|
|
@@ -562,7 +562,7 @@ var EStatusAccountAI = /* @__PURE__ */ ((EStatusAccountAI2) => {
|
|
|
562
562
|
return EStatusAccountAI2;
|
|
563
563
|
})(EStatusAccountAI || {});
|
|
564
564
|
|
|
565
|
-
// src/enums/ai/EStatusEmail.enum.ts
|
|
565
|
+
// src/enums/ai/status/EStatusEmail.enum.ts
|
|
566
566
|
var EStatusEmail = /* @__PURE__ */ ((EStatusEmail2) => {
|
|
567
567
|
EStatusEmail2["Active"] = "Active";
|
|
568
568
|
EStatusEmail2["Suspend"] = "Suspend";
|