automation-lib 5.4.33 → 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 +32 -1
- package/dist/index.d.ts +32 -1
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- 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;
|
|
@@ -683,6 +684,7 @@ declare enum EObjectName {
|
|
|
683
684
|
InteractReplyCommentThreads = "InteractReplyCommentThreads",
|
|
684
685
|
InteractReplyMessageThreads = "InteractReplyMessageThreads",
|
|
685
686
|
ThreadsAccountRaw = "ThreadsAccountRaw",
|
|
687
|
+
ThreadsAccountRun = "ThreadsAccountRun",
|
|
686
688
|
ThreadsAccountRawHistoryGroup = "ThreadsAccountRawHistoryGroup",
|
|
687
689
|
ThreadsAccountRawHistoryChangeInfo = "ThreadsAccountRawHistoryChangeInfo",
|
|
688
690
|
ThreadsAccountRawHistoryCreateNew = "ThreadsAccountRawHistoryCreateNew",
|
|
@@ -2828,7 +2830,36 @@ interface CreateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
|
|
|
2828
2830
|
}
|
|
2829
2831
|
interface UpdateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
|
|
2830
2832
|
}
|
|
2831
|
-
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
|
+
}>;
|
|
2832
2863
|
}
|
|
2833
2864
|
interface FilterAccountSocialGroupDto extends IFilterBaseDto {
|
|
2834
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;
|
|
@@ -683,6 +684,7 @@ declare enum EObjectName {
|
|
|
683
684
|
InteractReplyCommentThreads = "InteractReplyCommentThreads",
|
|
684
685
|
InteractReplyMessageThreads = "InteractReplyMessageThreads",
|
|
685
686
|
ThreadsAccountRaw = "ThreadsAccountRaw",
|
|
687
|
+
ThreadsAccountRun = "ThreadsAccountRun",
|
|
686
688
|
ThreadsAccountRawHistoryGroup = "ThreadsAccountRawHistoryGroup",
|
|
687
689
|
ThreadsAccountRawHistoryChangeInfo = "ThreadsAccountRawHistoryChangeInfo",
|
|
688
690
|
ThreadsAccountRawHistoryCreateNew = "ThreadsAccountRawHistoryCreateNew",
|
|
@@ -2828,7 +2830,36 @@ interface CreateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
|
|
|
2828
2830
|
}
|
|
2829
2831
|
interface UpdateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
|
|
2830
2832
|
}
|
|
2831
|
-
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
|
+
}>;
|
|
2832
2863
|
}
|
|
2833
2864
|
interface FilterAccountSocialGroupDto extends IFilterBaseDto {
|
|
2834
2865
|
}
|
package/dist/index.js
CHANGED
|
@@ -1019,6 +1019,7 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
|
|
|
1019
1019
|
_EObjectName["InteractReplyCommentThreads"] = "InteractReplyCommentThreads";
|
|
1020
1020
|
_EObjectName["InteractReplyMessageThreads"] = "InteractReplyMessageThreads";
|
|
1021
1021
|
_EObjectName["ThreadsAccountRaw"] = "ThreadsAccountRaw";
|
|
1022
|
+
_EObjectName["ThreadsAccountRun"] = "ThreadsAccountRun";
|
|
1022
1023
|
_EObjectName["ThreadsAccountRawHistoryGroup"] = "ThreadsAccountRawHistoryGroup";
|
|
1023
1024
|
_EObjectName["ThreadsAccountRawHistoryChangeInfo"] = "ThreadsAccountRawHistoryChangeInfo";
|
|
1024
1025
|
_EObjectName["ThreadsAccountRawHistoryCreateNew"] = "ThreadsAccountRawHistoryCreateNew";
|
package/dist/index.mjs
CHANGED
|
@@ -866,6 +866,7 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
|
|
|
866
866
|
_EObjectName["InteractReplyCommentThreads"] = "InteractReplyCommentThreads";
|
|
867
867
|
_EObjectName["InteractReplyMessageThreads"] = "InteractReplyMessageThreads";
|
|
868
868
|
_EObjectName["ThreadsAccountRaw"] = "ThreadsAccountRaw";
|
|
869
|
+
_EObjectName["ThreadsAccountRun"] = "ThreadsAccountRun";
|
|
869
870
|
_EObjectName["ThreadsAccountRawHistoryGroup"] = "ThreadsAccountRawHistoryGroup";
|
|
870
871
|
_EObjectName["ThreadsAccountRawHistoryChangeInfo"] = "ThreadsAccountRawHistoryChangeInfo";
|
|
871
872
|
_EObjectName["ThreadsAccountRawHistoryCreateNew"] = "ThreadsAccountRawHistoryCreateNew";
|
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
|