automation-lib 4.9.41 → 4.9.44
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 +152 -150
- package/dist/index.d.ts +152 -150
- package/dist/index.js +9 -9
- package/dist/index.mjs +9 -9
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -901,15 +901,166 @@ 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
|
|
|
911
1063
|
interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
912
|
-
accountAI: string | IAccountAIImage;
|
|
913
1064
|
model: EAIModelImage;
|
|
914
1065
|
provider: string;
|
|
915
1066
|
versionModel: EAIVersionImage;
|
|
@@ -951,7 +1102,6 @@ interface IAccountAIVoiceGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
951
1102
|
}
|
|
952
1103
|
|
|
953
1104
|
interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
954
|
-
accountAI: string | IAccountAIVoice;
|
|
955
1105
|
model: EAIModelVoice;
|
|
956
1106
|
provider: string;
|
|
957
1107
|
versionModel: EAIVersionVoice;
|
|
@@ -999,7 +1149,6 @@ interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInte
|
|
|
999
1149
|
}
|
|
1000
1150
|
|
|
1001
1151
|
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1002
|
-
accountAI: string | IAccountAI;
|
|
1003
1152
|
model: EAIModelContent;
|
|
1004
1153
|
provider: string;
|
|
1005
1154
|
versionModel: EAIVersionGPT | EAIVersionPerplexity;
|
|
@@ -1039,153 +1188,6 @@ interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceM
|
|
|
1039
1188
|
status: EStatusVPS;
|
|
1040
1189
|
}
|
|
1041
1190
|
|
|
1042
|
-
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1043
|
-
ag_name: string;
|
|
1044
|
-
ag_slug: string;
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1048
|
-
pc_name: string;
|
|
1049
|
-
pc_user: IUser | string;
|
|
1050
|
-
}
|
|
1051
|
-
|
|
1052
|
-
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1053
|
-
ds_device: IDevice | string;
|
|
1054
|
-
ds_deviceKey: string;
|
|
1055
|
-
ds_typeSocial: ETypeSocial;
|
|
1056
|
-
ds_maximumAccountApply: number;
|
|
1057
|
-
ds_isFulled: boolean;
|
|
1058
|
-
ds_numberAccountApplied: number;
|
|
1059
|
-
ds_accountApplied: IAccount[] | string[];
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
interface IDeviceInfoEmail {
|
|
1063
|
-
email: string;
|
|
1064
|
-
email2fa: string;
|
|
1065
|
-
password: string;
|
|
1066
|
-
emailReceiver: string;
|
|
1067
|
-
}
|
|
1068
|
-
interface IDeviceAllowPermission {
|
|
1069
|
-
isAllowPermissionCanva: boolean;
|
|
1070
|
-
isAllowPermissionCloneAppPro: boolean;
|
|
1071
|
-
isAllowPermissionGmail: boolean;
|
|
1072
|
-
isAllowPermissionPlayStore: boolean;
|
|
1073
|
-
isAllowPermissionChrome: boolean;
|
|
1074
|
-
}
|
|
1075
|
-
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1076
|
-
device_pc: IPC | string;
|
|
1077
|
-
device_name: string;
|
|
1078
|
-
device_serial: string;
|
|
1079
|
-
device_key: string;
|
|
1080
|
-
device_settings: IDeviceSetting[] | string[];
|
|
1081
|
-
device_emailInfo: IDeviceInfoEmail;
|
|
1082
|
-
device_status: EStatusCommon;
|
|
1083
|
-
device_statusSetup: EStatusCommon;
|
|
1084
|
-
device_statusSetupEmail: EStatusCommon;
|
|
1085
|
-
device_statusCHPlay: EStatusCommon;
|
|
1086
|
-
device_allowPermission: IDeviceAllowPermission;
|
|
1087
|
-
device_note: string;
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1091
|
-
ps_proxy: IProxy | string;
|
|
1092
|
-
ps_typeSocial: ETypeSocial;
|
|
1093
|
-
ps_maximumAccountApply: number;
|
|
1094
|
-
ps_isFulled: boolean;
|
|
1095
|
-
ps_numberAccountApplied: number;
|
|
1096
|
-
ps_accountApplied: IAccount[] | string[];
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1100
|
-
pt_url: string;
|
|
1101
|
-
pt_name: string;
|
|
1102
|
-
pt_desc: string;
|
|
1103
|
-
pt_totalProxy: number;
|
|
1104
|
-
pt_totalLive: number;
|
|
1105
|
-
pt_totalDie: number;
|
|
1106
|
-
pt_department: IDepartment | string;
|
|
1107
|
-
}
|
|
1108
|
-
|
|
1109
|
-
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1110
|
-
proxy_ip: string;
|
|
1111
|
-
proxy_key: string;
|
|
1112
|
-
proxy_port: string;
|
|
1113
|
-
proxy_username: string;
|
|
1114
|
-
proxy_provider: string;
|
|
1115
|
-
proxy_password: string;
|
|
1116
|
-
proxy_status: EStatusCommon;
|
|
1117
|
-
proxy_city: string;
|
|
1118
|
-
proxy_country: string;
|
|
1119
|
-
proxy_lastUsed: Date;
|
|
1120
|
-
proxy_department: string | IDepartment;
|
|
1121
|
-
proxy_user: string | IUser;
|
|
1122
|
-
proxy_settings: Array<IProxySetting> | Array<string>;
|
|
1123
|
-
proxy_tracker: IProxyTracking | string;
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1127
|
-
idea_name: string;
|
|
1128
|
-
idea_slug: string;
|
|
1129
|
-
}
|
|
1130
|
-
|
|
1131
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1132
|
-
niche_name: string;
|
|
1133
|
-
niche_slug: string;
|
|
1134
|
-
niche_idea: string | IIdea;
|
|
1135
|
-
}
|
|
1136
|
-
|
|
1137
|
-
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1138
|
-
tse_accountId: string;
|
|
1139
|
-
tse_serviceName: string;
|
|
1140
|
-
tse_actionsExecuted: string[];
|
|
1141
|
-
}
|
|
1142
|
-
|
|
1143
|
-
interface IAccountDetailEmail {
|
|
1144
|
-
email: string;
|
|
1145
|
-
emailPassword: string;
|
|
1146
|
-
emailReceive: string;
|
|
1147
|
-
email2Fa: string;
|
|
1148
|
-
}
|
|
1149
|
-
interface IAccountDetailSocial {
|
|
1150
|
-
avatar: string;
|
|
1151
|
-
linksDetail: Array<{
|
|
1152
|
-
name: string;
|
|
1153
|
-
url: string;
|
|
1154
|
-
}>;
|
|
1155
|
-
bio: string;
|
|
1156
|
-
social2Fa: string;
|
|
1157
|
-
fullName: string;
|
|
1158
|
-
email: string;
|
|
1159
|
-
}
|
|
1160
|
-
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1161
|
-
account_avatar: string;
|
|
1162
|
-
account_cover: string;
|
|
1163
|
-
account_sheetUrl: string;
|
|
1164
|
-
account_niche: string | INiche;
|
|
1165
|
-
account_idea: string | IIdea;
|
|
1166
|
-
account_pc: IPC | string;
|
|
1167
|
-
account_username: string;
|
|
1168
|
-
account_password: string;
|
|
1169
|
-
account_deviceKey: string;
|
|
1170
|
-
account_device: IDevice | string;
|
|
1171
|
-
account_proxy: IProxy | string;
|
|
1172
|
-
account_group: IAccountsGroup | string;
|
|
1173
|
-
account_nameAppClone: string;
|
|
1174
|
-
account_typeDevice: string;
|
|
1175
|
-
account_nameDevice: string;
|
|
1176
|
-
account_detailEmail: IAccountDetailEmail;
|
|
1177
|
-
account_detailSocial: IAccountDetailSocial;
|
|
1178
|
-
account_historyInfo: any;
|
|
1179
|
-
account_social: ETypeSocial;
|
|
1180
|
-
account_lastActiveTime: Date;
|
|
1181
|
-
account_status: string;
|
|
1182
|
-
account_statusChangeInfo: EStatusExecuteCommon;
|
|
1183
|
-
account_statusChangeSetting: EStatusExecuteCommon;
|
|
1184
|
-
account_statusLogin: EStatusLoginAccountSocial;
|
|
1185
|
-
account_isAllowPermissionApp: boolean;
|
|
1186
|
-
account_packageApp: string;
|
|
1187
|
-
}
|
|
1188
|
-
|
|
1189
1191
|
interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1190
1192
|
logging_name: string;
|
|
1191
1193
|
logging_account: IAccount | string;
|
package/dist/index.d.ts
CHANGED
|
@@ -901,15 +901,166 @@ 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
|
|
|
911
1063
|
interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
912
|
-
accountAI: string | IAccountAIImage;
|
|
913
1064
|
model: EAIModelImage;
|
|
914
1065
|
provider: string;
|
|
915
1066
|
versionModel: EAIVersionImage;
|
|
@@ -951,7 +1102,6 @@ interface IAccountAIVoiceGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
951
1102
|
}
|
|
952
1103
|
|
|
953
1104
|
interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
954
|
-
accountAI: string | IAccountAIVoice;
|
|
955
1105
|
model: EAIModelVoice;
|
|
956
1106
|
provider: string;
|
|
957
1107
|
versionModel: EAIVersionVoice;
|
|
@@ -999,7 +1149,6 @@ interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInte
|
|
|
999
1149
|
}
|
|
1000
1150
|
|
|
1001
1151
|
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1002
|
-
accountAI: string | IAccountAI;
|
|
1003
1152
|
model: EAIModelContent;
|
|
1004
1153
|
provider: string;
|
|
1005
1154
|
versionModel: EAIVersionGPT | EAIVersionPerplexity;
|
|
@@ -1039,153 +1188,6 @@ interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceM
|
|
|
1039
1188
|
status: EStatusVPS;
|
|
1040
1189
|
}
|
|
1041
1190
|
|
|
1042
|
-
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1043
|
-
ag_name: string;
|
|
1044
|
-
ag_slug: string;
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1048
|
-
pc_name: string;
|
|
1049
|
-
pc_user: IUser | string;
|
|
1050
|
-
}
|
|
1051
|
-
|
|
1052
|
-
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1053
|
-
ds_device: IDevice | string;
|
|
1054
|
-
ds_deviceKey: string;
|
|
1055
|
-
ds_typeSocial: ETypeSocial;
|
|
1056
|
-
ds_maximumAccountApply: number;
|
|
1057
|
-
ds_isFulled: boolean;
|
|
1058
|
-
ds_numberAccountApplied: number;
|
|
1059
|
-
ds_accountApplied: IAccount[] | string[];
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
interface IDeviceInfoEmail {
|
|
1063
|
-
email: string;
|
|
1064
|
-
email2fa: string;
|
|
1065
|
-
password: string;
|
|
1066
|
-
emailReceiver: string;
|
|
1067
|
-
}
|
|
1068
|
-
interface IDeviceAllowPermission {
|
|
1069
|
-
isAllowPermissionCanva: boolean;
|
|
1070
|
-
isAllowPermissionCloneAppPro: boolean;
|
|
1071
|
-
isAllowPermissionGmail: boolean;
|
|
1072
|
-
isAllowPermissionPlayStore: boolean;
|
|
1073
|
-
isAllowPermissionChrome: boolean;
|
|
1074
|
-
}
|
|
1075
|
-
interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1076
|
-
device_pc: IPC | string;
|
|
1077
|
-
device_name: string;
|
|
1078
|
-
device_serial: string;
|
|
1079
|
-
device_key: string;
|
|
1080
|
-
device_settings: IDeviceSetting[] | string[];
|
|
1081
|
-
device_emailInfo: IDeviceInfoEmail;
|
|
1082
|
-
device_status: EStatusCommon;
|
|
1083
|
-
device_statusSetup: EStatusCommon;
|
|
1084
|
-
device_statusSetupEmail: EStatusCommon;
|
|
1085
|
-
device_statusCHPlay: EStatusCommon;
|
|
1086
|
-
device_allowPermission: IDeviceAllowPermission;
|
|
1087
|
-
device_note: string;
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1091
|
-
ps_proxy: IProxy | string;
|
|
1092
|
-
ps_typeSocial: ETypeSocial;
|
|
1093
|
-
ps_maximumAccountApply: number;
|
|
1094
|
-
ps_isFulled: boolean;
|
|
1095
|
-
ps_numberAccountApplied: number;
|
|
1096
|
-
ps_accountApplied: IAccount[] | string[];
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1100
|
-
pt_url: string;
|
|
1101
|
-
pt_name: string;
|
|
1102
|
-
pt_desc: string;
|
|
1103
|
-
pt_totalProxy: number;
|
|
1104
|
-
pt_totalLive: number;
|
|
1105
|
-
pt_totalDie: number;
|
|
1106
|
-
pt_department: IDepartment | string;
|
|
1107
|
-
}
|
|
1108
|
-
|
|
1109
|
-
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1110
|
-
proxy_ip: string;
|
|
1111
|
-
proxy_key: string;
|
|
1112
|
-
proxy_port: string;
|
|
1113
|
-
proxy_username: string;
|
|
1114
|
-
proxy_provider: string;
|
|
1115
|
-
proxy_password: string;
|
|
1116
|
-
proxy_status: EStatusCommon;
|
|
1117
|
-
proxy_city: string;
|
|
1118
|
-
proxy_country: string;
|
|
1119
|
-
proxy_lastUsed: Date;
|
|
1120
|
-
proxy_department: string | IDepartment;
|
|
1121
|
-
proxy_user: string | IUser;
|
|
1122
|
-
proxy_settings: Array<IProxySetting> | Array<string>;
|
|
1123
|
-
proxy_tracker: IProxyTracking | string;
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1127
|
-
idea_name: string;
|
|
1128
|
-
idea_slug: string;
|
|
1129
|
-
}
|
|
1130
|
-
|
|
1131
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1132
|
-
niche_name: string;
|
|
1133
|
-
niche_slug: string;
|
|
1134
|
-
niche_idea: string | IIdea;
|
|
1135
|
-
}
|
|
1136
|
-
|
|
1137
|
-
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1138
|
-
tse_accountId: string;
|
|
1139
|
-
tse_serviceName: string;
|
|
1140
|
-
tse_actionsExecuted: string[];
|
|
1141
|
-
}
|
|
1142
|
-
|
|
1143
|
-
interface IAccountDetailEmail {
|
|
1144
|
-
email: string;
|
|
1145
|
-
emailPassword: string;
|
|
1146
|
-
emailReceive: string;
|
|
1147
|
-
email2Fa: string;
|
|
1148
|
-
}
|
|
1149
|
-
interface IAccountDetailSocial {
|
|
1150
|
-
avatar: string;
|
|
1151
|
-
linksDetail: Array<{
|
|
1152
|
-
name: string;
|
|
1153
|
-
url: string;
|
|
1154
|
-
}>;
|
|
1155
|
-
bio: string;
|
|
1156
|
-
social2Fa: string;
|
|
1157
|
-
fullName: string;
|
|
1158
|
-
email: string;
|
|
1159
|
-
}
|
|
1160
|
-
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1161
|
-
account_avatar: string;
|
|
1162
|
-
account_cover: string;
|
|
1163
|
-
account_sheetUrl: string;
|
|
1164
|
-
account_niche: string | INiche;
|
|
1165
|
-
account_idea: string | IIdea;
|
|
1166
|
-
account_pc: IPC | string;
|
|
1167
|
-
account_username: string;
|
|
1168
|
-
account_password: string;
|
|
1169
|
-
account_deviceKey: string;
|
|
1170
|
-
account_device: IDevice | string;
|
|
1171
|
-
account_proxy: IProxy | string;
|
|
1172
|
-
account_group: IAccountsGroup | string;
|
|
1173
|
-
account_nameAppClone: string;
|
|
1174
|
-
account_typeDevice: string;
|
|
1175
|
-
account_nameDevice: string;
|
|
1176
|
-
account_detailEmail: IAccountDetailEmail;
|
|
1177
|
-
account_detailSocial: IAccountDetailSocial;
|
|
1178
|
-
account_historyInfo: any;
|
|
1179
|
-
account_social: ETypeSocial;
|
|
1180
|
-
account_lastActiveTime: Date;
|
|
1181
|
-
account_status: string;
|
|
1182
|
-
account_statusChangeInfo: EStatusExecuteCommon;
|
|
1183
|
-
account_statusChangeSetting: EStatusExecuteCommon;
|
|
1184
|
-
account_statusLogin: EStatusLoginAccountSocial;
|
|
1185
|
-
account_isAllowPermissionApp: boolean;
|
|
1186
|
-
account_packageApp: string;
|
|
1187
|
-
}
|
|
1188
|
-
|
|
1189
1191
|
interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1190
1192
|
logging_name: string;
|
|
1191
1193
|
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";
|