automation-lib 6.6.558 → 6.6.559
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 +25 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -7906,6 +7906,7 @@ declare enum EFilterOptionInstagramAccountRun {
|
|
|
7906
7906
|
UpdatedBy = "UpdatedBy",
|
|
7907
7907
|
MemberRunDeviceAndRunPC = "MemberRunDeviceAndRunPC",
|
|
7908
7908
|
Idea = "Idea",
|
|
7909
|
+
Niche = "Niche",
|
|
7909
7910
|
AccountGroup = "AccountGroup"
|
|
7910
7911
|
}
|
|
7911
7912
|
|
|
@@ -8633,6 +8634,28 @@ interface FindInstagramAccountRunDto extends IFindBaseDto {
|
|
|
8633
8634
|
user: string;
|
|
8634
8635
|
timeUserAssign: Date;
|
|
8635
8636
|
};
|
|
8637
|
+
listSettingsInfo?: Array<{
|
|
8638
|
+
id: string;
|
|
8639
|
+
hasSetting: string;
|
|
8640
|
+
type: string;
|
|
8641
|
+
status: string;
|
|
8642
|
+
departmentCreator: string;
|
|
8643
|
+
leaderCreator: string;
|
|
8644
|
+
teamCreator: string;
|
|
8645
|
+
createdBy: string;
|
|
8646
|
+
createAt: string;
|
|
8647
|
+
updatedBy: string;
|
|
8648
|
+
updatedAt: string;
|
|
8649
|
+
}>;
|
|
8650
|
+
historyUserName?: {
|
|
8651
|
+
old: string;
|
|
8652
|
+
new: string;
|
|
8653
|
+
statusChange: string;
|
|
8654
|
+
timeChange: Date;
|
|
8655
|
+
statusSync: string;
|
|
8656
|
+
statusAuth: string;
|
|
8657
|
+
timeAuth: Date;
|
|
8658
|
+
};
|
|
8636
8659
|
}
|
|
8637
8660
|
interface FilterInstagramAccountRunDto extends IFilterBaseDto {
|
|
8638
8661
|
idea: string[];
|
|
@@ -8643,6 +8666,7 @@ interface FilterInstagramAccountRunDto extends IFilterBaseDto {
|
|
|
8643
8666
|
leaderTeam: string[];
|
|
8644
8667
|
memberRunDeviceAndRunPC: string[];
|
|
8645
8668
|
accountIDRange: [number, number];
|
|
8669
|
+
startStopOnDevice: boolean[];
|
|
8646
8670
|
deviceType: ETypeDeviceOS[];
|
|
8647
8671
|
deviceConnectStatus: string;
|
|
8648
8672
|
pcAssignment: string;
|
|
@@ -8662,6 +8686,7 @@ interface FilterInstagramAccountRunDto extends IFilterBaseDto {
|
|
|
8662
8686
|
passwordChangeStatus: string[];
|
|
8663
8687
|
twoFactorAuthChangeStatus: string[];
|
|
8664
8688
|
emailChangeStatus: string[];
|
|
8689
|
+
statusSyncAccount: string[];
|
|
8665
8690
|
runActiveDateRange: [Date, Date];
|
|
8666
8691
|
createdDateRange: [Date, Date];
|
|
8667
8692
|
updatedDateRange: [Date, Date];
|
package/dist/index.d.ts
CHANGED
|
@@ -7906,6 +7906,7 @@ declare enum EFilterOptionInstagramAccountRun {
|
|
|
7906
7906
|
UpdatedBy = "UpdatedBy",
|
|
7907
7907
|
MemberRunDeviceAndRunPC = "MemberRunDeviceAndRunPC",
|
|
7908
7908
|
Idea = "Idea",
|
|
7909
|
+
Niche = "Niche",
|
|
7909
7910
|
AccountGroup = "AccountGroup"
|
|
7910
7911
|
}
|
|
7911
7912
|
|
|
@@ -8633,6 +8634,28 @@ interface FindInstagramAccountRunDto extends IFindBaseDto {
|
|
|
8633
8634
|
user: string;
|
|
8634
8635
|
timeUserAssign: Date;
|
|
8635
8636
|
};
|
|
8637
|
+
listSettingsInfo?: Array<{
|
|
8638
|
+
id: string;
|
|
8639
|
+
hasSetting: string;
|
|
8640
|
+
type: string;
|
|
8641
|
+
status: string;
|
|
8642
|
+
departmentCreator: string;
|
|
8643
|
+
leaderCreator: string;
|
|
8644
|
+
teamCreator: string;
|
|
8645
|
+
createdBy: string;
|
|
8646
|
+
createAt: string;
|
|
8647
|
+
updatedBy: string;
|
|
8648
|
+
updatedAt: string;
|
|
8649
|
+
}>;
|
|
8650
|
+
historyUserName?: {
|
|
8651
|
+
old: string;
|
|
8652
|
+
new: string;
|
|
8653
|
+
statusChange: string;
|
|
8654
|
+
timeChange: Date;
|
|
8655
|
+
statusSync: string;
|
|
8656
|
+
statusAuth: string;
|
|
8657
|
+
timeAuth: Date;
|
|
8658
|
+
};
|
|
8636
8659
|
}
|
|
8637
8660
|
interface FilterInstagramAccountRunDto extends IFilterBaseDto {
|
|
8638
8661
|
idea: string[];
|
|
@@ -8643,6 +8666,7 @@ interface FilterInstagramAccountRunDto extends IFilterBaseDto {
|
|
|
8643
8666
|
leaderTeam: string[];
|
|
8644
8667
|
memberRunDeviceAndRunPC: string[];
|
|
8645
8668
|
accountIDRange: [number, number];
|
|
8669
|
+
startStopOnDevice: boolean[];
|
|
8646
8670
|
deviceType: ETypeDeviceOS[];
|
|
8647
8671
|
deviceConnectStatus: string;
|
|
8648
8672
|
pcAssignment: string;
|
|
@@ -8662,6 +8686,7 @@ interface FilterInstagramAccountRunDto extends IFilterBaseDto {
|
|
|
8662
8686
|
passwordChangeStatus: string[];
|
|
8663
8687
|
twoFactorAuthChangeStatus: string[];
|
|
8664
8688
|
emailChangeStatus: string[];
|
|
8689
|
+
statusSyncAccount: string[];
|
|
8665
8690
|
runActiveDateRange: [Date, Date];
|
|
8666
8691
|
createdDateRange: [Date, Date];
|
|
8667
8692
|
updatedDateRange: [Date, Date];
|
package/dist/index.js
CHANGED
|
@@ -2580,6 +2580,7 @@ var EFilterOptionInstagramAccountRun = /* @__PURE__ */ ((EFilterOptionInstagramA
|
|
|
2580
2580
|
EFilterOptionInstagramAccountRun2["UpdatedBy"] = "UpdatedBy";
|
|
2581
2581
|
EFilterOptionInstagramAccountRun2["MemberRunDeviceAndRunPC"] = "MemberRunDeviceAndRunPC";
|
|
2582
2582
|
EFilterOptionInstagramAccountRun2["Idea"] = "Idea";
|
|
2583
|
+
EFilterOptionInstagramAccountRun2["Niche"] = "Niche";
|
|
2583
2584
|
EFilterOptionInstagramAccountRun2["AccountGroup"] = "AccountGroup";
|
|
2584
2585
|
return EFilterOptionInstagramAccountRun2;
|
|
2585
2586
|
})(EFilterOptionInstagramAccountRun || {});
|
package/dist/index.mjs
CHANGED
|
@@ -2266,6 +2266,7 @@ var EFilterOptionInstagramAccountRun = /* @__PURE__ */ ((EFilterOptionInstagramA
|
|
|
2266
2266
|
EFilterOptionInstagramAccountRun2["UpdatedBy"] = "UpdatedBy";
|
|
2267
2267
|
EFilterOptionInstagramAccountRun2["MemberRunDeviceAndRunPC"] = "MemberRunDeviceAndRunPC";
|
|
2268
2268
|
EFilterOptionInstagramAccountRun2["Idea"] = "Idea";
|
|
2269
|
+
EFilterOptionInstagramAccountRun2["Niche"] = "Niche";
|
|
2269
2270
|
EFilterOptionInstagramAccountRun2["AccountGroup"] = "AccountGroup";
|
|
2270
2271
|
return EFilterOptionInstagramAccountRun2;
|
|
2271
2272
|
})(EFilterOptionInstagramAccountRun || {});
|