automation-lib 5.4.385 → 5.4.387
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 +110 -51
- package/dist/index.d.ts +110 -51
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1039,6 +1039,7 @@ declare enum EStatusAccountSocialRaw {
|
|
|
1039
1039
|
Spam = "Spam",
|
|
1040
1040
|
Checkpoint = "Checkpoint",
|
|
1041
1041
|
ErrorAppClone = "ErrorAppClone",
|
|
1042
|
+
LoginError = "LoginError",
|
|
1042
1043
|
NA = "N/A"
|
|
1043
1044
|
}
|
|
1044
1045
|
|
|
@@ -3091,9 +3092,8 @@ declare enum EStatusAccountVPN {
|
|
|
3091
3092
|
InActive = "InActive",
|
|
3092
3093
|
Active = "Active",
|
|
3093
3094
|
Working = "Working",
|
|
3094
|
-
AccountNotExist = "AccountNotExist",
|
|
3095
|
-
WrongPassword = "WrongPassword",
|
|
3096
3095
|
Expired = "Expired",
|
|
3096
|
+
AccountNotExist = "AccountNotExist",
|
|
3097
3097
|
Error = "Error"
|
|
3098
3098
|
}
|
|
3099
3099
|
|
|
@@ -3130,9 +3130,9 @@ declare enum ETypePcOS {
|
|
|
3130
3130
|
}
|
|
3131
3131
|
|
|
3132
3132
|
declare enum EStatusVPS {
|
|
3133
|
+
New = "New",
|
|
3133
3134
|
Active = "Active",
|
|
3134
3135
|
Pending = "Pending",
|
|
3135
|
-
NewRaw = "NewRaw",
|
|
3136
3136
|
Error = "Error"
|
|
3137
3137
|
}
|
|
3138
3138
|
declare enum EStatusVPSReplace {
|
|
@@ -8682,7 +8682,7 @@ declare enum EStatusEmailManagerChangeInfo {
|
|
|
8682
8682
|
}
|
|
8683
8683
|
declare enum ETypeEmailManager {
|
|
8684
8684
|
Gmail = "Gmail",
|
|
8685
|
-
|
|
8685
|
+
RediffMail = "RediffMail"
|
|
8686
8686
|
}
|
|
8687
8687
|
declare enum EEmailManagerProcessing {
|
|
8688
8688
|
Queued = "Queued",
|
|
@@ -8822,32 +8822,23 @@ interface FindOverviewAccountEmailManagerDto {
|
|
|
8822
8822
|
[EStatusEmailManager.NA]: number;
|
|
8823
8823
|
total: number;
|
|
8824
8824
|
};
|
|
8825
|
-
|
|
8826
|
-
|
|
8827
|
-
|
|
8828
|
-
|
|
8829
|
-
|
|
8830
|
-
total: number;
|
|
8831
|
-
};
|
|
8832
|
-
statusAddProxy: {
|
|
8833
|
-
[EStatusProxyChecked.Working]: number;
|
|
8834
|
-
[EStatusProxyChecked.Dead]: number;
|
|
8835
|
-
total: number;
|
|
8836
|
-
};
|
|
8825
|
+
statusAddEmail: {
|
|
8826
|
+
done: number;
|
|
8827
|
+
error: number;
|
|
8828
|
+
na: number;
|
|
8829
|
+
total: number;
|
|
8837
8830
|
};
|
|
8838
|
-
|
|
8839
|
-
|
|
8840
|
-
|
|
8841
|
-
|
|
8842
|
-
|
|
8843
|
-
|
|
8844
|
-
|
|
8845
|
-
|
|
8846
|
-
|
|
8847
|
-
|
|
8848
|
-
|
|
8849
|
-
total: number;
|
|
8850
|
-
};
|
|
8831
|
+
statusProxy: {
|
|
8832
|
+
[EStatusProxyChecked.Working]: number;
|
|
8833
|
+
[EStatusProxyChecked.Dead]: number;
|
|
8834
|
+
total: number;
|
|
8835
|
+
};
|
|
8836
|
+
vpsStatus: {
|
|
8837
|
+
[EStatusVPS.New]: number;
|
|
8838
|
+
[EStatusVPS.Pending]: number;
|
|
8839
|
+
[EStatusVPS.Active]: number;
|
|
8840
|
+
[EStatusVPS.Error]: number;
|
|
8841
|
+
total: number;
|
|
8851
8842
|
};
|
|
8852
8843
|
rawEmailOnBrowserVPS: {
|
|
8853
8844
|
available: number;
|
|
@@ -12667,28 +12658,96 @@ interface FilterInstagramAccountRunDto extends IFilterBaseDto {
|
|
|
12667
12658
|
updatedDateRange: [Date, Date];
|
|
12668
12659
|
}
|
|
12669
12660
|
interface FindOverViewInstagramAccountRunDto {
|
|
12670
|
-
|
|
12671
|
-
|
|
12672
|
-
|
|
12673
|
-
|
|
12674
|
-
|
|
12675
|
-
|
|
12676
|
-
|
|
12677
|
-
|
|
12678
|
-
|
|
12679
|
-
|
|
12680
|
-
|
|
12681
|
-
|
|
12682
|
-
|
|
12683
|
-
|
|
12684
|
-
|
|
12685
|
-
|
|
12686
|
-
|
|
12687
|
-
|
|
12688
|
-
|
|
12689
|
-
|
|
12690
|
-
|
|
12691
|
-
|
|
12661
|
+
department: number;
|
|
12662
|
+
team: number;
|
|
12663
|
+
leader: number;
|
|
12664
|
+
member: number;
|
|
12665
|
+
hasAssign: number;
|
|
12666
|
+
runOnPc: number;
|
|
12667
|
+
device: number;
|
|
12668
|
+
sheetTool: number;
|
|
12669
|
+
group: number;
|
|
12670
|
+
oldUsername: number;
|
|
12671
|
+
newUserName: number;
|
|
12672
|
+
idea: number;
|
|
12673
|
+
niche: number;
|
|
12674
|
+
tm: number;
|
|
12675
|
+
ntn: number;
|
|
12676
|
+
startStopOnDevice: {
|
|
12677
|
+
[EStartStop.Start]: number;
|
|
12678
|
+
[EStartStop.Stop]: number;
|
|
12679
|
+
total: number;
|
|
12680
|
+
};
|
|
12681
|
+
statusAccountSocial: {
|
|
12682
|
+
[EStatusAccountSocialRaw.Available]: number;
|
|
12683
|
+
[EStatusAccountSocialRaw.InUseDevice]: number;
|
|
12684
|
+
[EStatusAccountSocialRaw.Checkpoint]: number;
|
|
12685
|
+
[EStatusAccountSocialRaw.LockedOnDevice]: number;
|
|
12686
|
+
[EStatusAccountSocialRaw.Dead]: number;
|
|
12687
|
+
[EStatusAccountSocialRaw.NetworkError]: number;
|
|
12688
|
+
[EStatusAccountSocialRaw.Spam]: number;
|
|
12689
|
+
[EStatusAccountSocialRaw.ErrorAppClone]: number;
|
|
12690
|
+
[EStatusAccountSocialRaw.LoginError]: number;
|
|
12691
|
+
[EStatusAccountSocialRaw.NA]: number;
|
|
12692
|
+
total: number;
|
|
12693
|
+
};
|
|
12694
|
+
loginAppClone: {
|
|
12695
|
+
[EStatusAccountSocialRaw.Available]: number;
|
|
12696
|
+
[EStatusAccountSocialRaw.InUseDevice]: number;
|
|
12697
|
+
[EStatusAccountSocialRaw.Checkpoint]: number;
|
|
12698
|
+
[EStatusAccountSocialRaw.LockedOnDevice]: number;
|
|
12699
|
+
[EStatusAccountSocialRaw.Dead]: number;
|
|
12700
|
+
[EStatusAccountSocialRaw.NetworkError]: number;
|
|
12701
|
+
[EStatusAccountSocialRaw.Spam]: number;
|
|
12702
|
+
[EStatusAccountSocialRaw.ErrorAppClone]: number;
|
|
12703
|
+
[EStatusAccountSocialRaw.LoginError]: number;
|
|
12704
|
+
[EStatusAccountSocialRaw.NA]: number;
|
|
12705
|
+
total: number;
|
|
12706
|
+
};
|
|
12707
|
+
statusLoginUsername: {
|
|
12708
|
+
[EStatusAccountSocialCheckAuth.Active]: number;
|
|
12709
|
+
[EStatusAccountSocialCheckAuth.LoginError]: number;
|
|
12710
|
+
[EStatusAccountSocialCheckAuth.Unknown]: number;
|
|
12711
|
+
total: number;
|
|
12712
|
+
};
|
|
12713
|
+
proxyInfoStatus: {
|
|
12714
|
+
[EStatusProxyNewIP.New]: number;
|
|
12715
|
+
[EStatusProxyNewIP.Active]: number;
|
|
12716
|
+
[EStatusProxyNewIP.Error]: number;
|
|
12717
|
+
[EStatusProxyNewIP.Unknown]: number;
|
|
12718
|
+
total: number;
|
|
12719
|
+
};
|
|
12720
|
+
vpnAccountStatus: {
|
|
12721
|
+
[EStatusAccountVPN.Working]: number;
|
|
12722
|
+
[EStatusAccountVPN.Expired]: number;
|
|
12723
|
+
[EStatusAccountVPN.AccountNotExist]: number;
|
|
12724
|
+
[EStatusAccountVPN.Error]: number;
|
|
12725
|
+
total: number;
|
|
12726
|
+
};
|
|
12727
|
+
createFolderName: {
|
|
12728
|
+
createdNoteDone: number;
|
|
12729
|
+
createdButPublic: number;
|
|
12730
|
+
errorCreateNote: number;
|
|
12731
|
+
total: number;
|
|
12732
|
+
};
|
|
12733
|
+
autoSync: {
|
|
12734
|
+
[EStatusAccountSocialSync.New]: number;
|
|
12735
|
+
[EStatusAccountSocialSync.Done]: number;
|
|
12736
|
+
[EStatusAccountSocialSync.Error]: number;
|
|
12737
|
+
total: number;
|
|
12738
|
+
};
|
|
12739
|
+
statusDevice: {
|
|
12740
|
+
[EStatusDeviceConnectPC.Connected]: number;
|
|
12741
|
+
[EStatusDeviceConnectPC.Disconnected]: number;
|
|
12742
|
+
[EStatusDeviceConnectPC.Unauthenticated]: number;
|
|
12743
|
+
total: number;
|
|
12744
|
+
};
|
|
12745
|
+
statusReplaceDevice: {
|
|
12746
|
+
[EStatusDeviceReplace.Done]: number;
|
|
12747
|
+
[EStatusDeviceReplace.Error]: number;
|
|
12748
|
+
[EStatusDeviceReplace.NA]: number;
|
|
12749
|
+
total: number;
|
|
12750
|
+
};
|
|
12692
12751
|
}
|
|
12693
12752
|
|
|
12694
12753
|
interface FindOverViewInstagramReportPostHighLightDto {
|
package/dist/index.d.ts
CHANGED
|
@@ -1039,6 +1039,7 @@ declare enum EStatusAccountSocialRaw {
|
|
|
1039
1039
|
Spam = "Spam",
|
|
1040
1040
|
Checkpoint = "Checkpoint",
|
|
1041
1041
|
ErrorAppClone = "ErrorAppClone",
|
|
1042
|
+
LoginError = "LoginError",
|
|
1042
1043
|
NA = "N/A"
|
|
1043
1044
|
}
|
|
1044
1045
|
|
|
@@ -3091,9 +3092,8 @@ declare enum EStatusAccountVPN {
|
|
|
3091
3092
|
InActive = "InActive",
|
|
3092
3093
|
Active = "Active",
|
|
3093
3094
|
Working = "Working",
|
|
3094
|
-
AccountNotExist = "AccountNotExist",
|
|
3095
|
-
WrongPassword = "WrongPassword",
|
|
3096
3095
|
Expired = "Expired",
|
|
3096
|
+
AccountNotExist = "AccountNotExist",
|
|
3097
3097
|
Error = "Error"
|
|
3098
3098
|
}
|
|
3099
3099
|
|
|
@@ -3130,9 +3130,9 @@ declare enum ETypePcOS {
|
|
|
3130
3130
|
}
|
|
3131
3131
|
|
|
3132
3132
|
declare enum EStatusVPS {
|
|
3133
|
+
New = "New",
|
|
3133
3134
|
Active = "Active",
|
|
3134
3135
|
Pending = "Pending",
|
|
3135
|
-
NewRaw = "NewRaw",
|
|
3136
3136
|
Error = "Error"
|
|
3137
3137
|
}
|
|
3138
3138
|
declare enum EStatusVPSReplace {
|
|
@@ -8682,7 +8682,7 @@ declare enum EStatusEmailManagerChangeInfo {
|
|
|
8682
8682
|
}
|
|
8683
8683
|
declare enum ETypeEmailManager {
|
|
8684
8684
|
Gmail = "Gmail",
|
|
8685
|
-
|
|
8685
|
+
RediffMail = "RediffMail"
|
|
8686
8686
|
}
|
|
8687
8687
|
declare enum EEmailManagerProcessing {
|
|
8688
8688
|
Queued = "Queued",
|
|
@@ -8822,32 +8822,23 @@ interface FindOverviewAccountEmailManagerDto {
|
|
|
8822
8822
|
[EStatusEmailManager.NA]: number;
|
|
8823
8823
|
total: number;
|
|
8824
8824
|
};
|
|
8825
|
-
|
|
8826
|
-
|
|
8827
|
-
|
|
8828
|
-
|
|
8829
|
-
|
|
8830
|
-
total: number;
|
|
8831
|
-
};
|
|
8832
|
-
statusAddProxy: {
|
|
8833
|
-
[EStatusProxyChecked.Working]: number;
|
|
8834
|
-
[EStatusProxyChecked.Dead]: number;
|
|
8835
|
-
total: number;
|
|
8836
|
-
};
|
|
8825
|
+
statusAddEmail: {
|
|
8826
|
+
done: number;
|
|
8827
|
+
error: number;
|
|
8828
|
+
na: number;
|
|
8829
|
+
total: number;
|
|
8837
8830
|
};
|
|
8838
|
-
|
|
8839
|
-
|
|
8840
|
-
|
|
8841
|
-
|
|
8842
|
-
|
|
8843
|
-
|
|
8844
|
-
|
|
8845
|
-
|
|
8846
|
-
|
|
8847
|
-
|
|
8848
|
-
|
|
8849
|
-
total: number;
|
|
8850
|
-
};
|
|
8831
|
+
statusProxy: {
|
|
8832
|
+
[EStatusProxyChecked.Working]: number;
|
|
8833
|
+
[EStatusProxyChecked.Dead]: number;
|
|
8834
|
+
total: number;
|
|
8835
|
+
};
|
|
8836
|
+
vpsStatus: {
|
|
8837
|
+
[EStatusVPS.New]: number;
|
|
8838
|
+
[EStatusVPS.Pending]: number;
|
|
8839
|
+
[EStatusVPS.Active]: number;
|
|
8840
|
+
[EStatusVPS.Error]: number;
|
|
8841
|
+
total: number;
|
|
8851
8842
|
};
|
|
8852
8843
|
rawEmailOnBrowserVPS: {
|
|
8853
8844
|
available: number;
|
|
@@ -12667,28 +12658,96 @@ interface FilterInstagramAccountRunDto extends IFilterBaseDto {
|
|
|
12667
12658
|
updatedDateRange: [Date, Date];
|
|
12668
12659
|
}
|
|
12669
12660
|
interface FindOverViewInstagramAccountRunDto {
|
|
12670
|
-
|
|
12671
|
-
|
|
12672
|
-
|
|
12673
|
-
|
|
12674
|
-
|
|
12675
|
-
|
|
12676
|
-
|
|
12677
|
-
|
|
12678
|
-
|
|
12679
|
-
|
|
12680
|
-
|
|
12681
|
-
|
|
12682
|
-
|
|
12683
|
-
|
|
12684
|
-
|
|
12685
|
-
|
|
12686
|
-
|
|
12687
|
-
|
|
12688
|
-
|
|
12689
|
-
|
|
12690
|
-
|
|
12691
|
-
|
|
12661
|
+
department: number;
|
|
12662
|
+
team: number;
|
|
12663
|
+
leader: number;
|
|
12664
|
+
member: number;
|
|
12665
|
+
hasAssign: number;
|
|
12666
|
+
runOnPc: number;
|
|
12667
|
+
device: number;
|
|
12668
|
+
sheetTool: number;
|
|
12669
|
+
group: number;
|
|
12670
|
+
oldUsername: number;
|
|
12671
|
+
newUserName: number;
|
|
12672
|
+
idea: number;
|
|
12673
|
+
niche: number;
|
|
12674
|
+
tm: number;
|
|
12675
|
+
ntn: number;
|
|
12676
|
+
startStopOnDevice: {
|
|
12677
|
+
[EStartStop.Start]: number;
|
|
12678
|
+
[EStartStop.Stop]: number;
|
|
12679
|
+
total: number;
|
|
12680
|
+
};
|
|
12681
|
+
statusAccountSocial: {
|
|
12682
|
+
[EStatusAccountSocialRaw.Available]: number;
|
|
12683
|
+
[EStatusAccountSocialRaw.InUseDevice]: number;
|
|
12684
|
+
[EStatusAccountSocialRaw.Checkpoint]: number;
|
|
12685
|
+
[EStatusAccountSocialRaw.LockedOnDevice]: number;
|
|
12686
|
+
[EStatusAccountSocialRaw.Dead]: number;
|
|
12687
|
+
[EStatusAccountSocialRaw.NetworkError]: number;
|
|
12688
|
+
[EStatusAccountSocialRaw.Spam]: number;
|
|
12689
|
+
[EStatusAccountSocialRaw.ErrorAppClone]: number;
|
|
12690
|
+
[EStatusAccountSocialRaw.LoginError]: number;
|
|
12691
|
+
[EStatusAccountSocialRaw.NA]: number;
|
|
12692
|
+
total: number;
|
|
12693
|
+
};
|
|
12694
|
+
loginAppClone: {
|
|
12695
|
+
[EStatusAccountSocialRaw.Available]: number;
|
|
12696
|
+
[EStatusAccountSocialRaw.InUseDevice]: number;
|
|
12697
|
+
[EStatusAccountSocialRaw.Checkpoint]: number;
|
|
12698
|
+
[EStatusAccountSocialRaw.LockedOnDevice]: number;
|
|
12699
|
+
[EStatusAccountSocialRaw.Dead]: number;
|
|
12700
|
+
[EStatusAccountSocialRaw.NetworkError]: number;
|
|
12701
|
+
[EStatusAccountSocialRaw.Spam]: number;
|
|
12702
|
+
[EStatusAccountSocialRaw.ErrorAppClone]: number;
|
|
12703
|
+
[EStatusAccountSocialRaw.LoginError]: number;
|
|
12704
|
+
[EStatusAccountSocialRaw.NA]: number;
|
|
12705
|
+
total: number;
|
|
12706
|
+
};
|
|
12707
|
+
statusLoginUsername: {
|
|
12708
|
+
[EStatusAccountSocialCheckAuth.Active]: number;
|
|
12709
|
+
[EStatusAccountSocialCheckAuth.LoginError]: number;
|
|
12710
|
+
[EStatusAccountSocialCheckAuth.Unknown]: number;
|
|
12711
|
+
total: number;
|
|
12712
|
+
};
|
|
12713
|
+
proxyInfoStatus: {
|
|
12714
|
+
[EStatusProxyNewIP.New]: number;
|
|
12715
|
+
[EStatusProxyNewIP.Active]: number;
|
|
12716
|
+
[EStatusProxyNewIP.Error]: number;
|
|
12717
|
+
[EStatusProxyNewIP.Unknown]: number;
|
|
12718
|
+
total: number;
|
|
12719
|
+
};
|
|
12720
|
+
vpnAccountStatus: {
|
|
12721
|
+
[EStatusAccountVPN.Working]: number;
|
|
12722
|
+
[EStatusAccountVPN.Expired]: number;
|
|
12723
|
+
[EStatusAccountVPN.AccountNotExist]: number;
|
|
12724
|
+
[EStatusAccountVPN.Error]: number;
|
|
12725
|
+
total: number;
|
|
12726
|
+
};
|
|
12727
|
+
createFolderName: {
|
|
12728
|
+
createdNoteDone: number;
|
|
12729
|
+
createdButPublic: number;
|
|
12730
|
+
errorCreateNote: number;
|
|
12731
|
+
total: number;
|
|
12732
|
+
};
|
|
12733
|
+
autoSync: {
|
|
12734
|
+
[EStatusAccountSocialSync.New]: number;
|
|
12735
|
+
[EStatusAccountSocialSync.Done]: number;
|
|
12736
|
+
[EStatusAccountSocialSync.Error]: number;
|
|
12737
|
+
total: number;
|
|
12738
|
+
};
|
|
12739
|
+
statusDevice: {
|
|
12740
|
+
[EStatusDeviceConnectPC.Connected]: number;
|
|
12741
|
+
[EStatusDeviceConnectPC.Disconnected]: number;
|
|
12742
|
+
[EStatusDeviceConnectPC.Unauthenticated]: number;
|
|
12743
|
+
total: number;
|
|
12744
|
+
};
|
|
12745
|
+
statusReplaceDevice: {
|
|
12746
|
+
[EStatusDeviceReplace.Done]: number;
|
|
12747
|
+
[EStatusDeviceReplace.Error]: number;
|
|
12748
|
+
[EStatusDeviceReplace.NA]: number;
|
|
12749
|
+
total: number;
|
|
12750
|
+
};
|
|
12692
12751
|
}
|
|
12693
12752
|
|
|
12694
12753
|
interface FindOverViewInstagramReportPostHighLightDto {
|
package/dist/index.js
CHANGED
|
@@ -1471,6 +1471,7 @@ var EStatusAccountSocialRaw = /* @__PURE__ */ ((EStatusAccountSocialRaw2) => {
|
|
|
1471
1471
|
EStatusAccountSocialRaw2["Spam"] = "Spam";
|
|
1472
1472
|
EStatusAccountSocialRaw2["Checkpoint"] = "Checkpoint";
|
|
1473
1473
|
EStatusAccountSocialRaw2["ErrorAppClone"] = "ErrorAppClone";
|
|
1474
|
+
EStatusAccountSocialRaw2["LoginError"] = "LoginError";
|
|
1474
1475
|
EStatusAccountSocialRaw2["NA"] = "N/A";
|
|
1475
1476
|
return EStatusAccountSocialRaw2;
|
|
1476
1477
|
})(EStatusAccountSocialRaw || {});
|
|
@@ -2226,18 +2227,17 @@ var EStatusAccountVPN = /* @__PURE__ */ ((EStatusAccountVPN2) => {
|
|
|
2226
2227
|
EStatusAccountVPN2["InActive"] = "InActive";
|
|
2227
2228
|
EStatusAccountVPN2["Active"] = "Active";
|
|
2228
2229
|
EStatusAccountVPN2["Working"] = "Working";
|
|
2229
|
-
EStatusAccountVPN2["AccountNotExist"] = "AccountNotExist";
|
|
2230
|
-
EStatusAccountVPN2["WrongPassword"] = "WrongPassword";
|
|
2231
2230
|
EStatusAccountVPN2["Expired"] = "Expired";
|
|
2231
|
+
EStatusAccountVPN2["AccountNotExist"] = "AccountNotExist";
|
|
2232
2232
|
EStatusAccountVPN2["Error"] = "Error";
|
|
2233
2233
|
return EStatusAccountVPN2;
|
|
2234
2234
|
})(EStatusAccountVPN || {});
|
|
2235
2235
|
|
|
2236
2236
|
// src/interfaces/models/tool/managers/account-vps/enum/EStatusVPS.enum.ts
|
|
2237
2237
|
var EStatusVPS = /* @__PURE__ */ ((EStatusVPS2) => {
|
|
2238
|
+
EStatusVPS2["New"] = "New";
|
|
2238
2239
|
EStatusVPS2["Active"] = "Active";
|
|
2239
2240
|
EStatusVPS2["Pending"] = "Pending";
|
|
2240
|
-
EStatusVPS2["NewRaw"] = "NewRaw";
|
|
2241
2241
|
EStatusVPS2["Error"] = "Error";
|
|
2242
2242
|
return EStatusVPS2;
|
|
2243
2243
|
})(EStatusVPS || {});
|
package/dist/index.mjs
CHANGED
|
@@ -1300,6 +1300,7 @@ var EStatusAccountSocialRaw = /* @__PURE__ */ ((EStatusAccountSocialRaw2) => {
|
|
|
1300
1300
|
EStatusAccountSocialRaw2["Spam"] = "Spam";
|
|
1301
1301
|
EStatusAccountSocialRaw2["Checkpoint"] = "Checkpoint";
|
|
1302
1302
|
EStatusAccountSocialRaw2["ErrorAppClone"] = "ErrorAppClone";
|
|
1303
|
+
EStatusAccountSocialRaw2["LoginError"] = "LoginError";
|
|
1303
1304
|
EStatusAccountSocialRaw2["NA"] = "N/A";
|
|
1304
1305
|
return EStatusAccountSocialRaw2;
|
|
1305
1306
|
})(EStatusAccountSocialRaw || {});
|
|
@@ -2055,18 +2056,17 @@ var EStatusAccountVPN = /* @__PURE__ */ ((EStatusAccountVPN2) => {
|
|
|
2055
2056
|
EStatusAccountVPN2["InActive"] = "InActive";
|
|
2056
2057
|
EStatusAccountVPN2["Active"] = "Active";
|
|
2057
2058
|
EStatusAccountVPN2["Working"] = "Working";
|
|
2058
|
-
EStatusAccountVPN2["AccountNotExist"] = "AccountNotExist";
|
|
2059
|
-
EStatusAccountVPN2["WrongPassword"] = "WrongPassword";
|
|
2060
2059
|
EStatusAccountVPN2["Expired"] = "Expired";
|
|
2060
|
+
EStatusAccountVPN2["AccountNotExist"] = "AccountNotExist";
|
|
2061
2061
|
EStatusAccountVPN2["Error"] = "Error";
|
|
2062
2062
|
return EStatusAccountVPN2;
|
|
2063
2063
|
})(EStatusAccountVPN || {});
|
|
2064
2064
|
|
|
2065
2065
|
// src/interfaces/models/tool/managers/account-vps/enum/EStatusVPS.enum.ts
|
|
2066
2066
|
var EStatusVPS = /* @__PURE__ */ ((EStatusVPS2) => {
|
|
2067
|
+
EStatusVPS2["New"] = "New";
|
|
2067
2068
|
EStatusVPS2["Active"] = "Active";
|
|
2068
2069
|
EStatusVPS2["Pending"] = "Pending";
|
|
2069
|
-
EStatusVPS2["NewRaw"] = "NewRaw";
|
|
2070
2070
|
EStatusVPS2["Error"] = "Error";
|
|
2071
2071
|
return EStatusVPS2;
|
|
2072
2072
|
})(EStatusVPS || {});
|