automation-lib 6.2.2 → 6.2.3
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 +175 -173
- package/dist/index.d.ts +175 -173
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5106,179 +5106,6 @@ declare enum EVPSStatusGpmLoginEmail {
|
|
|
5106
5106
|
Verify = "Verify"
|
|
5107
5107
|
}
|
|
5108
5108
|
|
|
5109
|
-
interface ImportAccountVPSDto {
|
|
5110
|
-
sheetName: string;
|
|
5111
|
-
sheetUrl: string;
|
|
5112
|
-
departmentAssigned: string;
|
|
5113
|
-
teamAssigned: string;
|
|
5114
|
-
}
|
|
5115
|
-
interface CreateAccountVPSDto {
|
|
5116
|
-
groupId: string;
|
|
5117
|
-
providerId: string;
|
|
5118
|
-
teamAssignId: string;
|
|
5119
|
-
ip: string;
|
|
5120
|
-
port: string;
|
|
5121
|
-
username: string;
|
|
5122
|
-
password: string;
|
|
5123
|
-
displayName: string;
|
|
5124
|
-
provider: string;
|
|
5125
|
-
price: string;
|
|
5126
|
-
status: EVPSStatus;
|
|
5127
|
-
core: EVPSCore;
|
|
5128
|
-
ram: EVPSRam;
|
|
5129
|
-
os: EVPSOs;
|
|
5130
|
-
listTypeSocial: ETypeSocial[];
|
|
5131
|
-
listJobsID: string[];
|
|
5132
|
-
numberDayUse: number;
|
|
5133
|
-
statusExtension: EVPSExtension;
|
|
5134
|
-
settingDescription: string;
|
|
5135
|
-
description: string;
|
|
5136
|
-
}
|
|
5137
|
-
interface UpdateAccountVPSDto extends CreateAccountVPSDto {
|
|
5138
|
-
}
|
|
5139
|
-
interface FindAccountVPSDto extends IFindBaseDto {
|
|
5140
|
-
status: {
|
|
5141
|
-
value: EVPSStatus;
|
|
5142
|
-
timeChange: Date;
|
|
5143
|
-
};
|
|
5144
|
-
ip: string;
|
|
5145
|
-
port: string;
|
|
5146
|
-
username: string;
|
|
5147
|
-
password: string;
|
|
5148
|
-
displayName: string;
|
|
5149
|
-
provider: string;
|
|
5150
|
-
price: string;
|
|
5151
|
-
core: EVPSCore;
|
|
5152
|
-
ram: EVPSRam;
|
|
5153
|
-
os: EVPSOs;
|
|
5154
|
-
listTypeSocial: ETypeSocial[];
|
|
5155
|
-
timeRaw: Date;
|
|
5156
|
-
timeRun: Date;
|
|
5157
|
-
statusExtension: {
|
|
5158
|
-
value: EVPSExtension;
|
|
5159
|
-
time: Date;
|
|
5160
|
-
numberDayUse: number;
|
|
5161
|
-
dayExpired: Date;
|
|
5162
|
-
};
|
|
5163
|
-
statusConnect: {
|
|
5164
|
-
value: EVPSStatusConnection;
|
|
5165
|
-
time: Date;
|
|
5166
|
-
};
|
|
5167
|
-
statusRestart: {
|
|
5168
|
-
value: EVPSStatusRestart;
|
|
5169
|
-
time: Date;
|
|
5170
|
-
count: number;
|
|
5171
|
-
};
|
|
5172
|
-
statusReplace: {
|
|
5173
|
-
value: EVPSStatusReplace;
|
|
5174
|
-
time: Date;
|
|
5175
|
-
count: number;
|
|
5176
|
-
};
|
|
5177
|
-
numberListGPMProfiles: number;
|
|
5178
|
-
settingDescription: string;
|
|
5179
|
-
description: string;
|
|
5180
|
-
noteFix: string;
|
|
5181
|
-
}
|
|
5182
|
-
interface ViewListGPMProfileDto {
|
|
5183
|
-
id: string;
|
|
5184
|
-
email: string;
|
|
5185
|
-
profileName: string;
|
|
5186
|
-
typeBrowser: ETypeBrowser;
|
|
5187
|
-
userAgent: string;
|
|
5188
|
-
language: string;
|
|
5189
|
-
hardware: string;
|
|
5190
|
-
proxyType: ETypeProxy;
|
|
5191
|
-
proxyStringOld: string;
|
|
5192
|
-
proxyStringNew: string;
|
|
5193
|
-
proxyStatus: EStatusProxyChecked;
|
|
5194
|
-
}
|
|
5195
|
-
interface ReplaceAccountVSPDto {
|
|
5196
|
-
ip: string;
|
|
5197
|
-
port: string;
|
|
5198
|
-
username: string;
|
|
5199
|
-
password: string;
|
|
5200
|
-
}
|
|
5201
|
-
interface FindOverviewAccountVPSDto {
|
|
5202
|
-
totalDepartments: number;
|
|
5203
|
-
totalLeaders: number;
|
|
5204
|
-
totalTeams: number;
|
|
5205
|
-
totalUsers: number;
|
|
5206
|
-
totalGroups: number;
|
|
5207
|
-
totalVPS: number;
|
|
5208
|
-
totalPrice: number;
|
|
5209
|
-
statusVPS: {
|
|
5210
|
-
[EVPSStatus.Active]: number;
|
|
5211
|
-
[EVPSStatus.Error]: number;
|
|
5212
|
-
[EVPSStatus.New]: number;
|
|
5213
|
-
[EVPSStatus.NA]: number;
|
|
5214
|
-
total: number;
|
|
5215
|
-
};
|
|
5216
|
-
statusConnect: {
|
|
5217
|
-
[EVPSStatusConnection.Connected]: number;
|
|
5218
|
-
[EVPSStatusConnection.Disconnected]: number;
|
|
5219
|
-
[EVPSStatusConnection.Error]: number;
|
|
5220
|
-
total: number;
|
|
5221
|
-
};
|
|
5222
|
-
statusReplace: {
|
|
5223
|
-
[EVPSStatusReplace.Done]: number;
|
|
5224
|
-
[EVPSStatusReplace.Error]: number;
|
|
5225
|
-
total: number;
|
|
5226
|
-
};
|
|
5227
|
-
statusRestart: {
|
|
5228
|
-
[EVPSStatusRestart.Restarted]: number;
|
|
5229
|
-
[EVPSStatusRestart.Restarting]: number;
|
|
5230
|
-
[EVPSStatusRestart.Error]: number;
|
|
5231
|
-
[EVPSStatusRestart.NA]: number;
|
|
5232
|
-
total: number;
|
|
5233
|
-
};
|
|
5234
|
-
statusExtension: {
|
|
5235
|
-
[EVPSExtension.Cancelled]: number;
|
|
5236
|
-
[EVPSExtension.Expired]: number;
|
|
5237
|
-
[EVPSExtension.Renewed]: number;
|
|
5238
|
-
total: number;
|
|
5239
|
-
};
|
|
5240
|
-
socials: {
|
|
5241
|
-
[ETypeSocial.Facebook]: number;
|
|
5242
|
-
[ETypeSocial.FacebookGroup]: number;
|
|
5243
|
-
[ETypeSocial.FacebookFanPage]: number;
|
|
5244
|
-
[ETypeSocial.Instagram]: number;
|
|
5245
|
-
[ETypeSocial.Tiktok]: number;
|
|
5246
|
-
[ETypeSocial.Twitter]: number;
|
|
5247
|
-
[ETypeSocial.Youtube]: number;
|
|
5248
|
-
[ETypeSocial.Medium]: number;
|
|
5249
|
-
[ETypeSocial.Reddit]: number;
|
|
5250
|
-
[ETypeSocial.Tumblr]: number;
|
|
5251
|
-
[ETypeSocial.Pinterest]: number;
|
|
5252
|
-
[ETypeSocial.Quora]: number;
|
|
5253
|
-
[ETypeSocial.Threads]: number;
|
|
5254
|
-
total: number;
|
|
5255
|
-
};
|
|
5256
|
-
statusProxy: {
|
|
5257
|
-
[ETypeProxyNewIP.Active]: number;
|
|
5258
|
-
[ETypeProxyNewIP.Error]: number;
|
|
5259
|
-
[ETypeProxyNewIP.NA]: number;
|
|
5260
|
-
total: number;
|
|
5261
|
-
};
|
|
5262
|
-
gpmLoginEmailStatus: {
|
|
5263
|
-
[EVPSStatusGpmLoginEmail.Active]: number;
|
|
5264
|
-
[EVPSStatusGpmLoginEmail.Error]: number;
|
|
5265
|
-
[EVPSStatusGpmLoginEmail.Verify]: number;
|
|
5266
|
-
[EVPSStatusGpmLoginEmail.Pending]: number;
|
|
5267
|
-
total: number;
|
|
5268
|
-
};
|
|
5269
|
-
}
|
|
5270
|
-
interface FilterAccountVPSDto extends IFilterBaseDto {
|
|
5271
|
-
accountVPSGroup: string[];
|
|
5272
|
-
listTypeSocial: ETypeSocial[];
|
|
5273
|
-
provider: string[];
|
|
5274
|
-
core: EVPSCore[];
|
|
5275
|
-
ram: EVPSRam[];
|
|
5276
|
-
status: EVPSStatus[];
|
|
5277
|
-
statusConnect: EVPSStatusConnection[];
|
|
5278
|
-
statusRestart: EVPSStatusRestart[];
|
|
5279
|
-
statusReplace: EVPSStatusReplace[];
|
|
5280
|
-
}
|
|
5281
|
-
|
|
5282
5109
|
interface IAccountVPSGroup extends IBaseModel, ITrackingModel {
|
|
5283
5110
|
name: string;
|
|
5284
5111
|
description: string;
|
|
@@ -6007,6 +5834,181 @@ interface IGPMProfile extends IBaseModel {
|
|
|
6007
5834
|
noteFix: string;
|
|
6008
5835
|
}
|
|
6009
5836
|
|
|
5837
|
+
interface ImportAccountVPSDto {
|
|
5838
|
+
sheetName: string;
|
|
5839
|
+
sheetUrl: string;
|
|
5840
|
+
departmentAssigned: string;
|
|
5841
|
+
teamAssigned: string;
|
|
5842
|
+
}
|
|
5843
|
+
interface CreateAccountVPSDto {
|
|
5844
|
+
ip: string;
|
|
5845
|
+
port: string;
|
|
5846
|
+
username: string;
|
|
5847
|
+
password: string;
|
|
5848
|
+
core: EVPSCore;
|
|
5849
|
+
ram: EVPSRam;
|
|
5850
|
+
os: EVPSOs;
|
|
5851
|
+
numberDayUse: number;
|
|
5852
|
+
displayName: string;
|
|
5853
|
+
listTypeSocial: string[] | IAccountVPSSocial[];
|
|
5854
|
+
status: EVPSStatus;
|
|
5855
|
+
statusConnect: EVPSStatusConnection;
|
|
5856
|
+
statusExtension: EVPSExtension;
|
|
5857
|
+
numberHourForReset: EVPSTimeRestart;
|
|
5858
|
+
groupId: string;
|
|
5859
|
+
providerId: string;
|
|
5860
|
+
provider: string;
|
|
5861
|
+
price: string;
|
|
5862
|
+
teamAssignId: string;
|
|
5863
|
+
listJobsID: string[];
|
|
5864
|
+
settingDescription: string;
|
|
5865
|
+
description: string;
|
|
5866
|
+
}
|
|
5867
|
+
interface UpdateAccountVPSDto extends CreateAccountVPSDto {
|
|
5868
|
+
}
|
|
5869
|
+
interface FindAccountVPSDto extends IFindBaseDto {
|
|
5870
|
+
status: {
|
|
5871
|
+
value: EVPSStatus;
|
|
5872
|
+
timeChange: Date;
|
|
5873
|
+
};
|
|
5874
|
+
ip: string;
|
|
5875
|
+
port: string;
|
|
5876
|
+
username: string;
|
|
5877
|
+
password: string;
|
|
5878
|
+
displayName: string;
|
|
5879
|
+
provider: string;
|
|
5880
|
+
price: string;
|
|
5881
|
+
core: EVPSCore;
|
|
5882
|
+
ram: EVPSRam;
|
|
5883
|
+
os: EVPSOs;
|
|
5884
|
+
listTypeSocial: ETypeSocial[];
|
|
5885
|
+
timeRaw: Date;
|
|
5886
|
+
timeRun: Date;
|
|
5887
|
+
statusExtension: {
|
|
5888
|
+
value: EVPSExtension;
|
|
5889
|
+
time: Date;
|
|
5890
|
+
numberDayUse: number;
|
|
5891
|
+
dayExpired: Date;
|
|
5892
|
+
};
|
|
5893
|
+
statusConnect: {
|
|
5894
|
+
value: EVPSStatusConnection;
|
|
5895
|
+
time: Date;
|
|
5896
|
+
};
|
|
5897
|
+
statusRestart: {
|
|
5898
|
+
value: EVPSStatusRestart;
|
|
5899
|
+
time: Date;
|
|
5900
|
+
count: number;
|
|
5901
|
+
};
|
|
5902
|
+
statusReplace: {
|
|
5903
|
+
value: EVPSStatusReplace;
|
|
5904
|
+
time: Date;
|
|
5905
|
+
count: number;
|
|
5906
|
+
};
|
|
5907
|
+
numberListGPMProfiles: number;
|
|
5908
|
+
settingDescription: string;
|
|
5909
|
+
description: string;
|
|
5910
|
+
noteFix: string;
|
|
5911
|
+
}
|
|
5912
|
+
interface ViewListGPMProfileDto {
|
|
5913
|
+
id: string;
|
|
5914
|
+
email: string;
|
|
5915
|
+
profileName: string;
|
|
5916
|
+
typeBrowser: ETypeBrowser;
|
|
5917
|
+
userAgent: string;
|
|
5918
|
+
language: string;
|
|
5919
|
+
hardware: string;
|
|
5920
|
+
proxyType: ETypeProxy;
|
|
5921
|
+
proxyStringOld: string;
|
|
5922
|
+
proxyStringNew: string;
|
|
5923
|
+
proxyStatus: EStatusProxyChecked;
|
|
5924
|
+
}
|
|
5925
|
+
interface ReplaceAccountVSPDto {
|
|
5926
|
+
ip: string;
|
|
5927
|
+
port: string;
|
|
5928
|
+
username: string;
|
|
5929
|
+
password: string;
|
|
5930
|
+
}
|
|
5931
|
+
interface FindOverviewAccountVPSDto {
|
|
5932
|
+
totalDepartments: number;
|
|
5933
|
+
totalLeaders: number;
|
|
5934
|
+
totalTeams: number;
|
|
5935
|
+
totalUsers: number;
|
|
5936
|
+
totalGroups: number;
|
|
5937
|
+
totalVPS: number;
|
|
5938
|
+
totalPrice: number;
|
|
5939
|
+
statusVPS: {
|
|
5940
|
+
[EVPSStatus.Active]: number;
|
|
5941
|
+
[EVPSStatus.Error]: number;
|
|
5942
|
+
[EVPSStatus.New]: number;
|
|
5943
|
+
[EVPSStatus.NA]: number;
|
|
5944
|
+
total: number;
|
|
5945
|
+
};
|
|
5946
|
+
statusConnect: {
|
|
5947
|
+
[EVPSStatusConnection.Connected]: number;
|
|
5948
|
+
[EVPSStatusConnection.Disconnected]: number;
|
|
5949
|
+
[EVPSStatusConnection.Error]: number;
|
|
5950
|
+
total: number;
|
|
5951
|
+
};
|
|
5952
|
+
statusReplace: {
|
|
5953
|
+
[EVPSStatusReplace.Done]: number;
|
|
5954
|
+
[EVPSStatusReplace.Error]: number;
|
|
5955
|
+
total: number;
|
|
5956
|
+
};
|
|
5957
|
+
statusRestart: {
|
|
5958
|
+
[EVPSStatusRestart.Restarted]: number;
|
|
5959
|
+
[EVPSStatusRestart.Restarting]: number;
|
|
5960
|
+
[EVPSStatusRestart.Error]: number;
|
|
5961
|
+
[EVPSStatusRestart.NA]: number;
|
|
5962
|
+
total: number;
|
|
5963
|
+
};
|
|
5964
|
+
statusExtension: {
|
|
5965
|
+
[EVPSExtension.Cancelled]: number;
|
|
5966
|
+
[EVPSExtension.Expired]: number;
|
|
5967
|
+
[EVPSExtension.Renewed]: number;
|
|
5968
|
+
total: number;
|
|
5969
|
+
};
|
|
5970
|
+
socials: {
|
|
5971
|
+
[ETypeSocial.Facebook]: number;
|
|
5972
|
+
[ETypeSocial.FacebookGroup]: number;
|
|
5973
|
+
[ETypeSocial.FacebookFanPage]: number;
|
|
5974
|
+
[ETypeSocial.Instagram]: number;
|
|
5975
|
+
[ETypeSocial.Tiktok]: number;
|
|
5976
|
+
[ETypeSocial.Twitter]: number;
|
|
5977
|
+
[ETypeSocial.Youtube]: number;
|
|
5978
|
+
[ETypeSocial.Medium]: number;
|
|
5979
|
+
[ETypeSocial.Reddit]: number;
|
|
5980
|
+
[ETypeSocial.Tumblr]: number;
|
|
5981
|
+
[ETypeSocial.Pinterest]: number;
|
|
5982
|
+
[ETypeSocial.Quora]: number;
|
|
5983
|
+
[ETypeSocial.Threads]: number;
|
|
5984
|
+
total: number;
|
|
5985
|
+
};
|
|
5986
|
+
statusProxy: {
|
|
5987
|
+
[ETypeProxyNewIP.Active]: number;
|
|
5988
|
+
[ETypeProxyNewIP.Error]: number;
|
|
5989
|
+
[ETypeProxyNewIP.NA]: number;
|
|
5990
|
+
total: number;
|
|
5991
|
+
};
|
|
5992
|
+
gpmLoginEmailStatus: {
|
|
5993
|
+
[EVPSStatusGpmLoginEmail.Active]: number;
|
|
5994
|
+
[EVPSStatusGpmLoginEmail.Error]: number;
|
|
5995
|
+
[EVPSStatusGpmLoginEmail.Verify]: number;
|
|
5996
|
+
[EVPSStatusGpmLoginEmail.Pending]: number;
|
|
5997
|
+
total: number;
|
|
5998
|
+
};
|
|
5999
|
+
}
|
|
6000
|
+
interface FilterAccountVPSDto extends IFilterBaseDto {
|
|
6001
|
+
accountVPSGroup: string[];
|
|
6002
|
+
listTypeSocial: ETypeSocial[];
|
|
6003
|
+
provider: string[];
|
|
6004
|
+
core: EVPSCore[];
|
|
6005
|
+
ram: EVPSRam[];
|
|
6006
|
+
status: EVPSStatus[];
|
|
6007
|
+
statusConnect: EVPSStatusConnection[];
|
|
6008
|
+
statusRestart: EVPSStatusRestart[];
|
|
6009
|
+
statusReplace: EVPSStatusReplace[];
|
|
6010
|
+
}
|
|
6011
|
+
|
|
6010
6012
|
interface FindAccountVPSGroupDto extends IFindBaseDto, IAccountVPSGroup {
|
|
6011
6013
|
numberAccountVPS: number;
|
|
6012
6014
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -5106,179 +5106,6 @@ declare enum EVPSStatusGpmLoginEmail {
|
|
|
5106
5106
|
Verify = "Verify"
|
|
5107
5107
|
}
|
|
5108
5108
|
|
|
5109
|
-
interface ImportAccountVPSDto {
|
|
5110
|
-
sheetName: string;
|
|
5111
|
-
sheetUrl: string;
|
|
5112
|
-
departmentAssigned: string;
|
|
5113
|
-
teamAssigned: string;
|
|
5114
|
-
}
|
|
5115
|
-
interface CreateAccountVPSDto {
|
|
5116
|
-
groupId: string;
|
|
5117
|
-
providerId: string;
|
|
5118
|
-
teamAssignId: string;
|
|
5119
|
-
ip: string;
|
|
5120
|
-
port: string;
|
|
5121
|
-
username: string;
|
|
5122
|
-
password: string;
|
|
5123
|
-
displayName: string;
|
|
5124
|
-
provider: string;
|
|
5125
|
-
price: string;
|
|
5126
|
-
status: EVPSStatus;
|
|
5127
|
-
core: EVPSCore;
|
|
5128
|
-
ram: EVPSRam;
|
|
5129
|
-
os: EVPSOs;
|
|
5130
|
-
listTypeSocial: ETypeSocial[];
|
|
5131
|
-
listJobsID: string[];
|
|
5132
|
-
numberDayUse: number;
|
|
5133
|
-
statusExtension: EVPSExtension;
|
|
5134
|
-
settingDescription: string;
|
|
5135
|
-
description: string;
|
|
5136
|
-
}
|
|
5137
|
-
interface UpdateAccountVPSDto extends CreateAccountVPSDto {
|
|
5138
|
-
}
|
|
5139
|
-
interface FindAccountVPSDto extends IFindBaseDto {
|
|
5140
|
-
status: {
|
|
5141
|
-
value: EVPSStatus;
|
|
5142
|
-
timeChange: Date;
|
|
5143
|
-
};
|
|
5144
|
-
ip: string;
|
|
5145
|
-
port: string;
|
|
5146
|
-
username: string;
|
|
5147
|
-
password: string;
|
|
5148
|
-
displayName: string;
|
|
5149
|
-
provider: string;
|
|
5150
|
-
price: string;
|
|
5151
|
-
core: EVPSCore;
|
|
5152
|
-
ram: EVPSRam;
|
|
5153
|
-
os: EVPSOs;
|
|
5154
|
-
listTypeSocial: ETypeSocial[];
|
|
5155
|
-
timeRaw: Date;
|
|
5156
|
-
timeRun: Date;
|
|
5157
|
-
statusExtension: {
|
|
5158
|
-
value: EVPSExtension;
|
|
5159
|
-
time: Date;
|
|
5160
|
-
numberDayUse: number;
|
|
5161
|
-
dayExpired: Date;
|
|
5162
|
-
};
|
|
5163
|
-
statusConnect: {
|
|
5164
|
-
value: EVPSStatusConnection;
|
|
5165
|
-
time: Date;
|
|
5166
|
-
};
|
|
5167
|
-
statusRestart: {
|
|
5168
|
-
value: EVPSStatusRestart;
|
|
5169
|
-
time: Date;
|
|
5170
|
-
count: number;
|
|
5171
|
-
};
|
|
5172
|
-
statusReplace: {
|
|
5173
|
-
value: EVPSStatusReplace;
|
|
5174
|
-
time: Date;
|
|
5175
|
-
count: number;
|
|
5176
|
-
};
|
|
5177
|
-
numberListGPMProfiles: number;
|
|
5178
|
-
settingDescription: string;
|
|
5179
|
-
description: string;
|
|
5180
|
-
noteFix: string;
|
|
5181
|
-
}
|
|
5182
|
-
interface ViewListGPMProfileDto {
|
|
5183
|
-
id: string;
|
|
5184
|
-
email: string;
|
|
5185
|
-
profileName: string;
|
|
5186
|
-
typeBrowser: ETypeBrowser;
|
|
5187
|
-
userAgent: string;
|
|
5188
|
-
language: string;
|
|
5189
|
-
hardware: string;
|
|
5190
|
-
proxyType: ETypeProxy;
|
|
5191
|
-
proxyStringOld: string;
|
|
5192
|
-
proxyStringNew: string;
|
|
5193
|
-
proxyStatus: EStatusProxyChecked;
|
|
5194
|
-
}
|
|
5195
|
-
interface ReplaceAccountVSPDto {
|
|
5196
|
-
ip: string;
|
|
5197
|
-
port: string;
|
|
5198
|
-
username: string;
|
|
5199
|
-
password: string;
|
|
5200
|
-
}
|
|
5201
|
-
interface FindOverviewAccountVPSDto {
|
|
5202
|
-
totalDepartments: number;
|
|
5203
|
-
totalLeaders: number;
|
|
5204
|
-
totalTeams: number;
|
|
5205
|
-
totalUsers: number;
|
|
5206
|
-
totalGroups: number;
|
|
5207
|
-
totalVPS: number;
|
|
5208
|
-
totalPrice: number;
|
|
5209
|
-
statusVPS: {
|
|
5210
|
-
[EVPSStatus.Active]: number;
|
|
5211
|
-
[EVPSStatus.Error]: number;
|
|
5212
|
-
[EVPSStatus.New]: number;
|
|
5213
|
-
[EVPSStatus.NA]: number;
|
|
5214
|
-
total: number;
|
|
5215
|
-
};
|
|
5216
|
-
statusConnect: {
|
|
5217
|
-
[EVPSStatusConnection.Connected]: number;
|
|
5218
|
-
[EVPSStatusConnection.Disconnected]: number;
|
|
5219
|
-
[EVPSStatusConnection.Error]: number;
|
|
5220
|
-
total: number;
|
|
5221
|
-
};
|
|
5222
|
-
statusReplace: {
|
|
5223
|
-
[EVPSStatusReplace.Done]: number;
|
|
5224
|
-
[EVPSStatusReplace.Error]: number;
|
|
5225
|
-
total: number;
|
|
5226
|
-
};
|
|
5227
|
-
statusRestart: {
|
|
5228
|
-
[EVPSStatusRestart.Restarted]: number;
|
|
5229
|
-
[EVPSStatusRestart.Restarting]: number;
|
|
5230
|
-
[EVPSStatusRestart.Error]: number;
|
|
5231
|
-
[EVPSStatusRestart.NA]: number;
|
|
5232
|
-
total: number;
|
|
5233
|
-
};
|
|
5234
|
-
statusExtension: {
|
|
5235
|
-
[EVPSExtension.Cancelled]: number;
|
|
5236
|
-
[EVPSExtension.Expired]: number;
|
|
5237
|
-
[EVPSExtension.Renewed]: number;
|
|
5238
|
-
total: number;
|
|
5239
|
-
};
|
|
5240
|
-
socials: {
|
|
5241
|
-
[ETypeSocial.Facebook]: number;
|
|
5242
|
-
[ETypeSocial.FacebookGroup]: number;
|
|
5243
|
-
[ETypeSocial.FacebookFanPage]: number;
|
|
5244
|
-
[ETypeSocial.Instagram]: number;
|
|
5245
|
-
[ETypeSocial.Tiktok]: number;
|
|
5246
|
-
[ETypeSocial.Twitter]: number;
|
|
5247
|
-
[ETypeSocial.Youtube]: number;
|
|
5248
|
-
[ETypeSocial.Medium]: number;
|
|
5249
|
-
[ETypeSocial.Reddit]: number;
|
|
5250
|
-
[ETypeSocial.Tumblr]: number;
|
|
5251
|
-
[ETypeSocial.Pinterest]: number;
|
|
5252
|
-
[ETypeSocial.Quora]: number;
|
|
5253
|
-
[ETypeSocial.Threads]: number;
|
|
5254
|
-
total: number;
|
|
5255
|
-
};
|
|
5256
|
-
statusProxy: {
|
|
5257
|
-
[ETypeProxyNewIP.Active]: number;
|
|
5258
|
-
[ETypeProxyNewIP.Error]: number;
|
|
5259
|
-
[ETypeProxyNewIP.NA]: number;
|
|
5260
|
-
total: number;
|
|
5261
|
-
};
|
|
5262
|
-
gpmLoginEmailStatus: {
|
|
5263
|
-
[EVPSStatusGpmLoginEmail.Active]: number;
|
|
5264
|
-
[EVPSStatusGpmLoginEmail.Error]: number;
|
|
5265
|
-
[EVPSStatusGpmLoginEmail.Verify]: number;
|
|
5266
|
-
[EVPSStatusGpmLoginEmail.Pending]: number;
|
|
5267
|
-
total: number;
|
|
5268
|
-
};
|
|
5269
|
-
}
|
|
5270
|
-
interface FilterAccountVPSDto extends IFilterBaseDto {
|
|
5271
|
-
accountVPSGroup: string[];
|
|
5272
|
-
listTypeSocial: ETypeSocial[];
|
|
5273
|
-
provider: string[];
|
|
5274
|
-
core: EVPSCore[];
|
|
5275
|
-
ram: EVPSRam[];
|
|
5276
|
-
status: EVPSStatus[];
|
|
5277
|
-
statusConnect: EVPSStatusConnection[];
|
|
5278
|
-
statusRestart: EVPSStatusRestart[];
|
|
5279
|
-
statusReplace: EVPSStatusReplace[];
|
|
5280
|
-
}
|
|
5281
|
-
|
|
5282
5109
|
interface IAccountVPSGroup extends IBaseModel, ITrackingModel {
|
|
5283
5110
|
name: string;
|
|
5284
5111
|
description: string;
|
|
@@ -6007,6 +5834,181 @@ interface IGPMProfile extends IBaseModel {
|
|
|
6007
5834
|
noteFix: string;
|
|
6008
5835
|
}
|
|
6009
5836
|
|
|
5837
|
+
interface ImportAccountVPSDto {
|
|
5838
|
+
sheetName: string;
|
|
5839
|
+
sheetUrl: string;
|
|
5840
|
+
departmentAssigned: string;
|
|
5841
|
+
teamAssigned: string;
|
|
5842
|
+
}
|
|
5843
|
+
interface CreateAccountVPSDto {
|
|
5844
|
+
ip: string;
|
|
5845
|
+
port: string;
|
|
5846
|
+
username: string;
|
|
5847
|
+
password: string;
|
|
5848
|
+
core: EVPSCore;
|
|
5849
|
+
ram: EVPSRam;
|
|
5850
|
+
os: EVPSOs;
|
|
5851
|
+
numberDayUse: number;
|
|
5852
|
+
displayName: string;
|
|
5853
|
+
listTypeSocial: string[] | IAccountVPSSocial[];
|
|
5854
|
+
status: EVPSStatus;
|
|
5855
|
+
statusConnect: EVPSStatusConnection;
|
|
5856
|
+
statusExtension: EVPSExtension;
|
|
5857
|
+
numberHourForReset: EVPSTimeRestart;
|
|
5858
|
+
groupId: string;
|
|
5859
|
+
providerId: string;
|
|
5860
|
+
provider: string;
|
|
5861
|
+
price: string;
|
|
5862
|
+
teamAssignId: string;
|
|
5863
|
+
listJobsID: string[];
|
|
5864
|
+
settingDescription: string;
|
|
5865
|
+
description: string;
|
|
5866
|
+
}
|
|
5867
|
+
interface UpdateAccountVPSDto extends CreateAccountVPSDto {
|
|
5868
|
+
}
|
|
5869
|
+
interface FindAccountVPSDto extends IFindBaseDto {
|
|
5870
|
+
status: {
|
|
5871
|
+
value: EVPSStatus;
|
|
5872
|
+
timeChange: Date;
|
|
5873
|
+
};
|
|
5874
|
+
ip: string;
|
|
5875
|
+
port: string;
|
|
5876
|
+
username: string;
|
|
5877
|
+
password: string;
|
|
5878
|
+
displayName: string;
|
|
5879
|
+
provider: string;
|
|
5880
|
+
price: string;
|
|
5881
|
+
core: EVPSCore;
|
|
5882
|
+
ram: EVPSRam;
|
|
5883
|
+
os: EVPSOs;
|
|
5884
|
+
listTypeSocial: ETypeSocial[];
|
|
5885
|
+
timeRaw: Date;
|
|
5886
|
+
timeRun: Date;
|
|
5887
|
+
statusExtension: {
|
|
5888
|
+
value: EVPSExtension;
|
|
5889
|
+
time: Date;
|
|
5890
|
+
numberDayUse: number;
|
|
5891
|
+
dayExpired: Date;
|
|
5892
|
+
};
|
|
5893
|
+
statusConnect: {
|
|
5894
|
+
value: EVPSStatusConnection;
|
|
5895
|
+
time: Date;
|
|
5896
|
+
};
|
|
5897
|
+
statusRestart: {
|
|
5898
|
+
value: EVPSStatusRestart;
|
|
5899
|
+
time: Date;
|
|
5900
|
+
count: number;
|
|
5901
|
+
};
|
|
5902
|
+
statusReplace: {
|
|
5903
|
+
value: EVPSStatusReplace;
|
|
5904
|
+
time: Date;
|
|
5905
|
+
count: number;
|
|
5906
|
+
};
|
|
5907
|
+
numberListGPMProfiles: number;
|
|
5908
|
+
settingDescription: string;
|
|
5909
|
+
description: string;
|
|
5910
|
+
noteFix: string;
|
|
5911
|
+
}
|
|
5912
|
+
interface ViewListGPMProfileDto {
|
|
5913
|
+
id: string;
|
|
5914
|
+
email: string;
|
|
5915
|
+
profileName: string;
|
|
5916
|
+
typeBrowser: ETypeBrowser;
|
|
5917
|
+
userAgent: string;
|
|
5918
|
+
language: string;
|
|
5919
|
+
hardware: string;
|
|
5920
|
+
proxyType: ETypeProxy;
|
|
5921
|
+
proxyStringOld: string;
|
|
5922
|
+
proxyStringNew: string;
|
|
5923
|
+
proxyStatus: EStatusProxyChecked;
|
|
5924
|
+
}
|
|
5925
|
+
interface ReplaceAccountVSPDto {
|
|
5926
|
+
ip: string;
|
|
5927
|
+
port: string;
|
|
5928
|
+
username: string;
|
|
5929
|
+
password: string;
|
|
5930
|
+
}
|
|
5931
|
+
interface FindOverviewAccountVPSDto {
|
|
5932
|
+
totalDepartments: number;
|
|
5933
|
+
totalLeaders: number;
|
|
5934
|
+
totalTeams: number;
|
|
5935
|
+
totalUsers: number;
|
|
5936
|
+
totalGroups: number;
|
|
5937
|
+
totalVPS: number;
|
|
5938
|
+
totalPrice: number;
|
|
5939
|
+
statusVPS: {
|
|
5940
|
+
[EVPSStatus.Active]: number;
|
|
5941
|
+
[EVPSStatus.Error]: number;
|
|
5942
|
+
[EVPSStatus.New]: number;
|
|
5943
|
+
[EVPSStatus.NA]: number;
|
|
5944
|
+
total: number;
|
|
5945
|
+
};
|
|
5946
|
+
statusConnect: {
|
|
5947
|
+
[EVPSStatusConnection.Connected]: number;
|
|
5948
|
+
[EVPSStatusConnection.Disconnected]: number;
|
|
5949
|
+
[EVPSStatusConnection.Error]: number;
|
|
5950
|
+
total: number;
|
|
5951
|
+
};
|
|
5952
|
+
statusReplace: {
|
|
5953
|
+
[EVPSStatusReplace.Done]: number;
|
|
5954
|
+
[EVPSStatusReplace.Error]: number;
|
|
5955
|
+
total: number;
|
|
5956
|
+
};
|
|
5957
|
+
statusRestart: {
|
|
5958
|
+
[EVPSStatusRestart.Restarted]: number;
|
|
5959
|
+
[EVPSStatusRestart.Restarting]: number;
|
|
5960
|
+
[EVPSStatusRestart.Error]: number;
|
|
5961
|
+
[EVPSStatusRestart.NA]: number;
|
|
5962
|
+
total: number;
|
|
5963
|
+
};
|
|
5964
|
+
statusExtension: {
|
|
5965
|
+
[EVPSExtension.Cancelled]: number;
|
|
5966
|
+
[EVPSExtension.Expired]: number;
|
|
5967
|
+
[EVPSExtension.Renewed]: number;
|
|
5968
|
+
total: number;
|
|
5969
|
+
};
|
|
5970
|
+
socials: {
|
|
5971
|
+
[ETypeSocial.Facebook]: number;
|
|
5972
|
+
[ETypeSocial.FacebookGroup]: number;
|
|
5973
|
+
[ETypeSocial.FacebookFanPage]: number;
|
|
5974
|
+
[ETypeSocial.Instagram]: number;
|
|
5975
|
+
[ETypeSocial.Tiktok]: number;
|
|
5976
|
+
[ETypeSocial.Twitter]: number;
|
|
5977
|
+
[ETypeSocial.Youtube]: number;
|
|
5978
|
+
[ETypeSocial.Medium]: number;
|
|
5979
|
+
[ETypeSocial.Reddit]: number;
|
|
5980
|
+
[ETypeSocial.Tumblr]: number;
|
|
5981
|
+
[ETypeSocial.Pinterest]: number;
|
|
5982
|
+
[ETypeSocial.Quora]: number;
|
|
5983
|
+
[ETypeSocial.Threads]: number;
|
|
5984
|
+
total: number;
|
|
5985
|
+
};
|
|
5986
|
+
statusProxy: {
|
|
5987
|
+
[ETypeProxyNewIP.Active]: number;
|
|
5988
|
+
[ETypeProxyNewIP.Error]: number;
|
|
5989
|
+
[ETypeProxyNewIP.NA]: number;
|
|
5990
|
+
total: number;
|
|
5991
|
+
};
|
|
5992
|
+
gpmLoginEmailStatus: {
|
|
5993
|
+
[EVPSStatusGpmLoginEmail.Active]: number;
|
|
5994
|
+
[EVPSStatusGpmLoginEmail.Error]: number;
|
|
5995
|
+
[EVPSStatusGpmLoginEmail.Verify]: number;
|
|
5996
|
+
[EVPSStatusGpmLoginEmail.Pending]: number;
|
|
5997
|
+
total: number;
|
|
5998
|
+
};
|
|
5999
|
+
}
|
|
6000
|
+
interface FilterAccountVPSDto extends IFilterBaseDto {
|
|
6001
|
+
accountVPSGroup: string[];
|
|
6002
|
+
listTypeSocial: ETypeSocial[];
|
|
6003
|
+
provider: string[];
|
|
6004
|
+
core: EVPSCore[];
|
|
6005
|
+
ram: EVPSRam[];
|
|
6006
|
+
status: EVPSStatus[];
|
|
6007
|
+
statusConnect: EVPSStatusConnection[];
|
|
6008
|
+
statusRestart: EVPSStatusRestart[];
|
|
6009
|
+
statusReplace: EVPSStatusReplace[];
|
|
6010
|
+
}
|
|
6011
|
+
|
|
6010
6012
|
interface FindAccountVPSGroupDto extends IFindBaseDto, IAccountVPSGroup {
|
|
6011
6013
|
numberAccountVPS: number;
|
|
6012
6014
|
}
|