automation-lib 5.4.17 → 5.4.18
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3851,7 +3851,7 @@ interface IAccountSocialGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3851
3851
|
description: string;
|
|
3852
3852
|
}
|
|
3853
3853
|
|
|
3854
|
-
interface IInstagramAccountRun extends IBaseModel,
|
|
3854
|
+
interface IInstagramAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
3855
3855
|
accountRaw: string | IInstagramAccountRaw;
|
|
3856
3856
|
numberPost: number;
|
|
3857
3857
|
numberFollowers: number;
|
|
@@ -9955,7 +9955,7 @@ interface IInstagramDashboardFollowerELS extends IBaseELS {
|
|
|
9955
9955
|
followings: number;
|
|
9956
9956
|
}
|
|
9957
9957
|
|
|
9958
|
-
interface IThreadsAccountRun extends IBaseModel,
|
|
9958
|
+
interface IThreadsAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
9959
9959
|
accountRaw: string | IThreadsAccountRaw;
|
|
9960
9960
|
runStartDateTime: Date;
|
|
9961
9961
|
runEndDateTime: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -3851,7 +3851,7 @@ interface IAccountSocialGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3851
3851
|
description: string;
|
|
3852
3852
|
}
|
|
3853
3853
|
|
|
3854
|
-
interface IInstagramAccountRun extends IBaseModel,
|
|
3854
|
+
interface IInstagramAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
3855
3855
|
accountRaw: string | IInstagramAccountRaw;
|
|
3856
3856
|
numberPost: number;
|
|
3857
3857
|
numberFollowers: number;
|
|
@@ -9955,7 +9955,7 @@ interface IInstagramDashboardFollowerELS extends IBaseELS {
|
|
|
9955
9955
|
followings: number;
|
|
9956
9956
|
}
|
|
9957
9957
|
|
|
9958
|
-
interface IThreadsAccountRun extends IBaseModel,
|
|
9958
|
+
interface IThreadsAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
9959
9959
|
accountRaw: string | IThreadsAccountRaw;
|
|
9960
9960
|
runStartDateTime: Date;
|
|
9961
9961
|
runEndDateTime: Date;
|