automation-lib 5.4.34 → 5.4.35
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 +31 -1
- package/dist/index.d.ts +31 -1
- package/package.json +1 -1
- package/requirements.txt +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BoInterfaceModelsCommon } from 'bodevops-be-common';
|
|
2
2
|
import { BoInterfaceModelsCommon as BoInterfaceModelsCommon$1 } from 'bodevops-be-common/dist';
|
|
3
|
+
import { AutoEnums } from 'automation-lib/dist';
|
|
3
4
|
|
|
4
5
|
declare const CONST_API_OTP: {
|
|
5
6
|
SEND: string;
|
|
@@ -2829,7 +2830,36 @@ interface CreateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
|
|
|
2829
2830
|
}
|
|
2830
2831
|
interface UpdateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
|
|
2831
2832
|
}
|
|
2832
|
-
interface FindAccountSocialGroupDto extends IFindBaseDto
|
|
2833
|
+
interface FindAccountSocialGroupDto extends IFindBaseDto {
|
|
2834
|
+
typeSocial: AutoEnums.Types.ETypeSocial;
|
|
2835
|
+
name: string;
|
|
2836
|
+
description: string;
|
|
2837
|
+
listAccounts: Array<{
|
|
2838
|
+
id: string;
|
|
2839
|
+
idea: string;
|
|
2840
|
+
niche: string;
|
|
2841
|
+
type: ETypeManagerWorkClassify;
|
|
2842
|
+
username: string;
|
|
2843
|
+
email: string;
|
|
2844
|
+
status: string;
|
|
2845
|
+
pcName: string;
|
|
2846
|
+
typeAppClone: string;
|
|
2847
|
+
nameAppClone: string;
|
|
2848
|
+
nameAppCloneSocial: string;
|
|
2849
|
+
deviceName: string;
|
|
2850
|
+
deviceOS: ETypeDeviceOS;
|
|
2851
|
+
deviceModel: string;
|
|
2852
|
+
departmentAssign: string;
|
|
2853
|
+
leaderAssign: string;
|
|
2854
|
+
memberAssign: string;
|
|
2855
|
+
timeLastUsed: Date;
|
|
2856
|
+
sheetUrl: string;
|
|
2857
|
+
sheetName: string;
|
|
2858
|
+
createdAt: Date;
|
|
2859
|
+
updatedAt: Date;
|
|
2860
|
+
createdBy: string;
|
|
2861
|
+
updatedBy: string;
|
|
2862
|
+
}>;
|
|
2833
2863
|
}
|
|
2834
2864
|
interface FilterAccountSocialGroupDto extends IFilterBaseDto {
|
|
2835
2865
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BoInterfaceModelsCommon } from 'bodevops-be-common';
|
|
2
2
|
import { BoInterfaceModelsCommon as BoInterfaceModelsCommon$1 } from 'bodevops-be-common/dist';
|
|
3
|
+
import { AutoEnums } from 'automation-lib/dist';
|
|
3
4
|
|
|
4
5
|
declare const CONST_API_OTP: {
|
|
5
6
|
SEND: string;
|
|
@@ -2829,7 +2830,36 @@ interface CreateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
|
|
|
2829
2830
|
}
|
|
2830
2831
|
interface UpdateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
|
|
2831
2832
|
}
|
|
2832
|
-
interface FindAccountSocialGroupDto extends IFindBaseDto
|
|
2833
|
+
interface FindAccountSocialGroupDto extends IFindBaseDto {
|
|
2834
|
+
typeSocial: AutoEnums.Types.ETypeSocial;
|
|
2835
|
+
name: string;
|
|
2836
|
+
description: string;
|
|
2837
|
+
listAccounts: Array<{
|
|
2838
|
+
id: string;
|
|
2839
|
+
idea: string;
|
|
2840
|
+
niche: string;
|
|
2841
|
+
type: ETypeManagerWorkClassify;
|
|
2842
|
+
username: string;
|
|
2843
|
+
email: string;
|
|
2844
|
+
status: string;
|
|
2845
|
+
pcName: string;
|
|
2846
|
+
typeAppClone: string;
|
|
2847
|
+
nameAppClone: string;
|
|
2848
|
+
nameAppCloneSocial: string;
|
|
2849
|
+
deviceName: string;
|
|
2850
|
+
deviceOS: ETypeDeviceOS;
|
|
2851
|
+
deviceModel: string;
|
|
2852
|
+
departmentAssign: string;
|
|
2853
|
+
leaderAssign: string;
|
|
2854
|
+
memberAssign: string;
|
|
2855
|
+
timeLastUsed: Date;
|
|
2856
|
+
sheetUrl: string;
|
|
2857
|
+
sheetName: string;
|
|
2858
|
+
createdAt: Date;
|
|
2859
|
+
updatedAt: Date;
|
|
2860
|
+
createdBy: string;
|
|
2861
|
+
updatedBy: string;
|
|
2862
|
+
}>;
|
|
2833
2863
|
}
|
|
2834
2864
|
interface FilterAccountSocialGroupDto extends IFilterBaseDto {
|
|
2835
2865
|
}
|
package/package.json
CHANGED
package/requirements.txt
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
pyinstaller
|
|
2
|
-
pywin32
|
|
3
|
-
pytz
|
|
4
|
-
webdriver-manager
|
|
5
|
-
selenium
|
|
6
|
-
undetected-chromedriver
|
|
7
|
-
requests
|
|
1
|
+
pyinstaller
|
|
2
|
+
pywin32
|
|
3
|
+
pytz
|
|
4
|
+
webdriver-manager
|
|
5
|
+
selenium
|
|
6
|
+
undetected-chromedriver
|
|
7
|
+
requests
|
|
8
8
|
rapidfuzz
|