automation-lib 5.1.97 → 5.1.99
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 +33 -7
- package/dist/index.d.ts +33 -7
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -5217,6 +5217,9 @@ interface FindDeviceAvailableForAddProxyDto {
|
|
5217
5217
|
isChecked: boolean;
|
5218
5218
|
}
|
5219
5219
|
interface FilterProxyDto extends IFilterBaseDto, Omit<IProxy, TOmitFilterDto> {
|
5220
|
+
pcName: string[];
|
5221
|
+
devicesName: string[];
|
5222
|
+
devicesOS: string[];
|
5220
5223
|
}
|
5221
5224
|
interface FindOverviewProxyDto {
|
5222
5225
|
totalProxies: {
|
@@ -5270,6 +5273,9 @@ interface FindDeviceAvailableForAddAccountVPNDto {
|
|
5270
5273
|
isChecked: boolean;
|
5271
5274
|
}
|
5272
5275
|
interface FilterAccountVPNDto extends IFilterBaseDto, Omit<IAccountVPN, TOmitFilterDto> {
|
5276
|
+
pcName: string[];
|
5277
|
+
devicesName: string[];
|
5278
|
+
devicesOS: string[];
|
5273
5279
|
}
|
5274
5280
|
interface FindAccountVPNDto extends IFindBaseDto, IAccountVPN {
|
5275
5281
|
listDeviceKey: string[];
|
@@ -5328,8 +5334,9 @@ interface FindDeviceAvailableForAddCHPlayICloudDto {
|
|
5328
5334
|
isChecked: boolean;
|
5329
5335
|
}
|
5330
5336
|
interface FilterAccountCHPlayICloudDto extends IFilterBaseDto, Omit<IAccountCHPlayICloud, TOmitFilterDto> {
|
5331
|
-
|
5332
|
-
|
5337
|
+
pcName: string[];
|
5338
|
+
devicesName: string[];
|
5339
|
+
devicesOS: string[];
|
5333
5340
|
}
|
5334
5341
|
interface FindAccountCHPlayICloudDto extends IFindBaseDto, IAccountCHPlayICloud {
|
5335
5342
|
listDeviceKeys: string[];
|
@@ -6210,11 +6217,16 @@ interface AutoFillInstagramAccountRawDto {
|
|
6210
6217
|
timeExecute2FA: Date;
|
6211
6218
|
newEmail: string;
|
6212
6219
|
timeExecuteEmail: Date;
|
6213
|
-
newLinks:
|
6220
|
+
newLinks: {
|
6221
|
+
name: string;
|
6222
|
+
link: string;
|
6223
|
+
}[];
|
6214
6224
|
timeExecuteLinks: Date;
|
6215
|
-
|
6225
|
+
newAvatarPrompt: string;
|
6226
|
+
newAvatarFontText: string;
|
6216
6227
|
timeExecuteAvatar: Date;
|
6217
|
-
|
6228
|
+
newCoverPrompt: string;
|
6229
|
+
newCoverFontText: string;
|
6218
6230
|
timeExecuteCover: Date;
|
6219
6231
|
}
|
6220
6232
|
|
@@ -7065,11 +7077,21 @@ interface FilterPCDto extends IFilterBaseDto, Omit<IPC, TOmitFilterDto> {
|
|
7065
7077
|
interface FindManagerWorkDto extends IFindBaseDto, IManagerWork {
|
7066
7078
|
}
|
7067
7079
|
interface FilterManagerWorkDto extends IFilterBaseDto, Omit<IManagerWork, TOmitFilterDto> {
|
7080
|
+
tags: string[];
|
7081
|
+
domains: string[];
|
7082
|
+
like: string[];
|
7083
|
+
love: string[];
|
7084
|
+
pin: string[];
|
7085
|
+
sheetWorks: string[];
|
7068
7086
|
}
|
7069
7087
|
|
7070
7088
|
interface FindSheetWorkDto extends IFindBaseDto, ISheetWork {
|
7071
7089
|
}
|
7072
7090
|
interface FilterSheetWorkDto extends IFilterBaseDto, Omit<ISheetWork, TOmitFilterDto> {
|
7091
|
+
idea: string[];
|
7092
|
+
niche: string[];
|
7093
|
+
subNiche: string[];
|
7094
|
+
type: ETypeSheetWorkClassify;
|
7073
7095
|
}
|
7074
7096
|
|
7075
7097
|
interface FindSheetWorkManagerDto extends IFindBaseDto, ISheetWorkManager {
|
@@ -7205,8 +7227,9 @@ interface CreateUserDto extends Partial<IUser> {
|
|
7205
7227
|
user_password: string;
|
7206
7228
|
user_phone: string;
|
7207
7229
|
user_gender: EGender;
|
7208
|
-
user_roles?: string[];
|
7209
7230
|
user_department: string;
|
7231
|
+
user_team: string;
|
7232
|
+
user_roles?: string[];
|
7210
7233
|
user_isSubAdmin?: boolean;
|
7211
7234
|
user_avatar?: string;
|
7212
7235
|
}
|
@@ -7216,14 +7239,17 @@ interface UpdateUserDto extends Partial<IUser> {
|
|
7216
7239
|
user_password?: string;
|
7217
7240
|
user_phone?: string;
|
7218
7241
|
user_gender?: EGender;
|
7219
|
-
user_roles?: string[];
|
7220
7242
|
user_department?: string;
|
7243
|
+
user_team: string;
|
7244
|
+
user_roles?: string[];
|
7221
7245
|
user_avatar?: string;
|
7222
7246
|
user_isSubAdmin?: boolean;
|
7223
7247
|
}
|
7224
7248
|
interface FindUserDto extends IFindBaseDto, IUser {
|
7225
7249
|
}
|
7226
7250
|
interface FilterUserDto extends IFilterBaseDto, Omit<IUser, TOmitFilterDto> {
|
7251
|
+
departments: string[];
|
7252
|
+
teams: string[];
|
7227
7253
|
}
|
7228
7254
|
interface OverviewUserDto {
|
7229
7255
|
totalDepartments: number;
|
package/dist/index.d.ts
CHANGED
@@ -5217,6 +5217,9 @@ interface FindDeviceAvailableForAddProxyDto {
|
|
5217
5217
|
isChecked: boolean;
|
5218
5218
|
}
|
5219
5219
|
interface FilterProxyDto extends IFilterBaseDto, Omit<IProxy, TOmitFilterDto> {
|
5220
|
+
pcName: string[];
|
5221
|
+
devicesName: string[];
|
5222
|
+
devicesOS: string[];
|
5220
5223
|
}
|
5221
5224
|
interface FindOverviewProxyDto {
|
5222
5225
|
totalProxies: {
|
@@ -5270,6 +5273,9 @@ interface FindDeviceAvailableForAddAccountVPNDto {
|
|
5270
5273
|
isChecked: boolean;
|
5271
5274
|
}
|
5272
5275
|
interface FilterAccountVPNDto extends IFilterBaseDto, Omit<IAccountVPN, TOmitFilterDto> {
|
5276
|
+
pcName: string[];
|
5277
|
+
devicesName: string[];
|
5278
|
+
devicesOS: string[];
|
5273
5279
|
}
|
5274
5280
|
interface FindAccountVPNDto extends IFindBaseDto, IAccountVPN {
|
5275
5281
|
listDeviceKey: string[];
|
@@ -5328,8 +5334,9 @@ interface FindDeviceAvailableForAddCHPlayICloudDto {
|
|
5328
5334
|
isChecked: boolean;
|
5329
5335
|
}
|
5330
5336
|
interface FilterAccountCHPlayICloudDto extends IFilterBaseDto, Omit<IAccountCHPlayICloud, TOmitFilterDto> {
|
5331
|
-
|
5332
|
-
|
5337
|
+
pcName: string[];
|
5338
|
+
devicesName: string[];
|
5339
|
+
devicesOS: string[];
|
5333
5340
|
}
|
5334
5341
|
interface FindAccountCHPlayICloudDto extends IFindBaseDto, IAccountCHPlayICloud {
|
5335
5342
|
listDeviceKeys: string[];
|
@@ -6210,11 +6217,16 @@ interface AutoFillInstagramAccountRawDto {
|
|
6210
6217
|
timeExecute2FA: Date;
|
6211
6218
|
newEmail: string;
|
6212
6219
|
timeExecuteEmail: Date;
|
6213
|
-
newLinks:
|
6220
|
+
newLinks: {
|
6221
|
+
name: string;
|
6222
|
+
link: string;
|
6223
|
+
}[];
|
6214
6224
|
timeExecuteLinks: Date;
|
6215
|
-
|
6225
|
+
newAvatarPrompt: string;
|
6226
|
+
newAvatarFontText: string;
|
6216
6227
|
timeExecuteAvatar: Date;
|
6217
|
-
|
6228
|
+
newCoverPrompt: string;
|
6229
|
+
newCoverFontText: string;
|
6218
6230
|
timeExecuteCover: Date;
|
6219
6231
|
}
|
6220
6232
|
|
@@ -7065,11 +7077,21 @@ interface FilterPCDto extends IFilterBaseDto, Omit<IPC, TOmitFilterDto> {
|
|
7065
7077
|
interface FindManagerWorkDto extends IFindBaseDto, IManagerWork {
|
7066
7078
|
}
|
7067
7079
|
interface FilterManagerWorkDto extends IFilterBaseDto, Omit<IManagerWork, TOmitFilterDto> {
|
7080
|
+
tags: string[];
|
7081
|
+
domains: string[];
|
7082
|
+
like: string[];
|
7083
|
+
love: string[];
|
7084
|
+
pin: string[];
|
7085
|
+
sheetWorks: string[];
|
7068
7086
|
}
|
7069
7087
|
|
7070
7088
|
interface FindSheetWorkDto extends IFindBaseDto, ISheetWork {
|
7071
7089
|
}
|
7072
7090
|
interface FilterSheetWorkDto extends IFilterBaseDto, Omit<ISheetWork, TOmitFilterDto> {
|
7091
|
+
idea: string[];
|
7092
|
+
niche: string[];
|
7093
|
+
subNiche: string[];
|
7094
|
+
type: ETypeSheetWorkClassify;
|
7073
7095
|
}
|
7074
7096
|
|
7075
7097
|
interface FindSheetWorkManagerDto extends IFindBaseDto, ISheetWorkManager {
|
@@ -7205,8 +7227,9 @@ interface CreateUserDto extends Partial<IUser> {
|
|
7205
7227
|
user_password: string;
|
7206
7228
|
user_phone: string;
|
7207
7229
|
user_gender: EGender;
|
7208
|
-
user_roles?: string[];
|
7209
7230
|
user_department: string;
|
7231
|
+
user_team: string;
|
7232
|
+
user_roles?: string[];
|
7210
7233
|
user_isSubAdmin?: boolean;
|
7211
7234
|
user_avatar?: string;
|
7212
7235
|
}
|
@@ -7216,14 +7239,17 @@ interface UpdateUserDto extends Partial<IUser> {
|
|
7216
7239
|
user_password?: string;
|
7217
7240
|
user_phone?: string;
|
7218
7241
|
user_gender?: EGender;
|
7219
|
-
user_roles?: string[];
|
7220
7242
|
user_department?: string;
|
7243
|
+
user_team: string;
|
7244
|
+
user_roles?: string[];
|
7221
7245
|
user_avatar?: string;
|
7222
7246
|
user_isSubAdmin?: boolean;
|
7223
7247
|
}
|
7224
7248
|
interface FindUserDto extends IFindBaseDto, IUser {
|
7225
7249
|
}
|
7226
7250
|
interface FilterUserDto extends IFilterBaseDto, Omit<IUser, TOmitFilterDto> {
|
7251
|
+
departments: string[];
|
7252
|
+
teams: string[];
|
7227
7253
|
}
|
7228
7254
|
interface OverviewUserDto {
|
7229
7255
|
totalDepartments: number;
|