automation-lib 5.4.92 → 5.4.94
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 +13 -0
- package/dist/index.d.ts +13 -0
- package/package.json +1 -1
- package/requirements.txt +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -3036,6 +3036,12 @@ interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, IFilterBaseAccou
|
|
|
3036
3036
|
}
|
|
3037
3037
|
|
|
3038
3038
|
interface FindThreadsAccountRawDto extends IFindBaseDto, IThreadsAccountRaw {
|
|
3039
|
+
pcInfo: {
|
|
3040
|
+
name: string;
|
|
3041
|
+
department: string;
|
|
3042
|
+
leader: string;
|
|
3043
|
+
member: string;
|
|
3044
|
+
};
|
|
3039
3045
|
deviceInfo: {
|
|
3040
3046
|
id: string;
|
|
3041
3047
|
key: string;
|
|
@@ -4995,6 +5001,12 @@ interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, Omit<IFilterBas
|
|
|
4995
5001
|
}
|
|
4996
5002
|
|
|
4997
5003
|
interface FindInstagramAccountRawDto extends IFindBaseDto {
|
|
5004
|
+
pcInfo: {
|
|
5005
|
+
name: string;
|
|
5006
|
+
department: string;
|
|
5007
|
+
leader: string;
|
|
5008
|
+
member: string;
|
|
5009
|
+
};
|
|
4998
5010
|
deviceInfo: {
|
|
4999
5011
|
id: string;
|
|
5000
5012
|
key: string;
|
|
@@ -7713,6 +7725,7 @@ interface DevicePopupOverviewAddAccountDto {
|
|
|
7713
7725
|
};
|
|
7714
7726
|
}
|
|
7715
7727
|
interface DevicePopupListAddAccountDto {
|
|
7728
|
+
id: string;
|
|
7716
7729
|
idea: string;
|
|
7717
7730
|
niche: string;
|
|
7718
7731
|
type: ETypeManagerWorkClassify;
|
package/dist/index.d.ts
CHANGED
|
@@ -3036,6 +3036,12 @@ interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, IFilterBaseAccou
|
|
|
3036
3036
|
}
|
|
3037
3037
|
|
|
3038
3038
|
interface FindThreadsAccountRawDto extends IFindBaseDto, IThreadsAccountRaw {
|
|
3039
|
+
pcInfo: {
|
|
3040
|
+
name: string;
|
|
3041
|
+
department: string;
|
|
3042
|
+
leader: string;
|
|
3043
|
+
member: string;
|
|
3044
|
+
};
|
|
3039
3045
|
deviceInfo: {
|
|
3040
3046
|
id: string;
|
|
3041
3047
|
key: string;
|
|
@@ -4995,6 +5001,12 @@ interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, Omit<IFilterBas
|
|
|
4995
5001
|
}
|
|
4996
5002
|
|
|
4997
5003
|
interface FindInstagramAccountRawDto extends IFindBaseDto {
|
|
5004
|
+
pcInfo: {
|
|
5005
|
+
name: string;
|
|
5006
|
+
department: string;
|
|
5007
|
+
leader: string;
|
|
5008
|
+
member: string;
|
|
5009
|
+
};
|
|
4998
5010
|
deviceInfo: {
|
|
4999
5011
|
id: string;
|
|
5000
5012
|
key: string;
|
|
@@ -7713,6 +7725,7 @@ interface DevicePopupOverviewAddAccountDto {
|
|
|
7713
7725
|
};
|
|
7714
7726
|
}
|
|
7715
7727
|
interface DevicePopupListAddAccountDto {
|
|
7728
|
+
id: string;
|
|
7716
7729
|
idea: string;
|
|
7717
7730
|
niche: string;
|
|
7718
7731
|
type: ETypeManagerWorkClassify;
|
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
|