automation-lib 4.9.121 → 4.9.122
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 +34 -34
- package/dist/index.d.ts +34 -34
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1025,12 +1025,12 @@ interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
1025
1025
|
niches: IManagerWork[] | string[];
|
|
1026
1026
|
}
|
|
1027
1027
|
|
|
1028
|
-
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1028
|
+
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1029
1029
|
ag_name: string;
|
|
1030
1030
|
ag_slug: string;
|
|
1031
1031
|
}
|
|
1032
1032
|
|
|
1033
|
-
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1033
|
+
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1034
1034
|
pc_name: string;
|
|
1035
1035
|
pc_user: IUser | string;
|
|
1036
1036
|
}
|
|
@@ -1062,7 +1062,7 @@ interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
|
|
|
1062
1062
|
device_note: string;
|
|
1063
1063
|
}
|
|
1064
1064
|
|
|
1065
|
-
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1065
|
+
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1066
1066
|
pt_url: string;
|
|
1067
1067
|
pt_name: string;
|
|
1068
1068
|
pt_desc: string;
|
|
@@ -1072,7 +1072,7 @@ interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterface
|
|
|
1072
1072
|
pt_department: IDepartment | string;
|
|
1073
1073
|
}
|
|
1074
1074
|
|
|
1075
|
-
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1075
|
+
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1076
1076
|
proxy_type: ETypeProxy;
|
|
1077
1077
|
proxy_ip: string;
|
|
1078
1078
|
proxy_key: string;
|
|
@@ -1274,7 +1274,7 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
1274
1274
|
}>;
|
|
1275
1275
|
}
|
|
1276
1276
|
|
|
1277
|
-
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1277
|
+
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1278
1278
|
ps_proxy: IProxy | string;
|
|
1279
1279
|
ps_typeSocial: ETypeSocial;
|
|
1280
1280
|
ps_maximumAccountApply: number;
|
|
@@ -1557,7 +1557,7 @@ interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceMo
|
|
|
1557
1557
|
de_device: IDevice | string;
|
|
1558
1558
|
}
|
|
1559
1559
|
|
|
1560
|
-
interface IDeviceCHPlay extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1560
|
+
interface IDeviceCHPlay extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1561
1561
|
dc_status: string;
|
|
1562
1562
|
dc_note: string;
|
|
1563
1563
|
dc_device: IDevice | string;
|
|
@@ -1569,7 +1569,7 @@ declare namespace index$3 {
|
|
|
1569
1569
|
export type { index$3_IDeviceCHPlay as IDeviceCHPlay, index$3_IDeviceEmail as IDeviceEmail };
|
|
1570
1570
|
}
|
|
1571
1571
|
|
|
1572
|
-
interface IFreepikSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1572
|
+
interface IFreepikSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1573
1573
|
username: string;
|
|
1574
1574
|
password: string;
|
|
1575
1575
|
maxDeviceApply: number;
|
|
@@ -1582,12 +1582,12 @@ declare namespace index$2 {
|
|
|
1582
1582
|
export type { index$2_IFreepikSetting as IFreepikSetting };
|
|
1583
1583
|
}
|
|
1584
1584
|
|
|
1585
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1585
|
+
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1586
1586
|
idea_name: string;
|
|
1587
1587
|
idea_slug: string;
|
|
1588
1588
|
}
|
|
1589
1589
|
|
|
1590
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1590
|
+
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1591
1591
|
niche_name: string;
|
|
1592
1592
|
niche_slug: string;
|
|
1593
1593
|
niche_idea: string | IIdea;
|
|
@@ -1599,7 +1599,7 @@ interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, Bo
|
|
|
1599
1599
|
tse_actionsExecuted: string[];
|
|
1600
1600
|
}
|
|
1601
1601
|
|
|
1602
|
-
interface IInstagramPostHighLight extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1602
|
+
interface IInstagramPostHighLight extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1603
1603
|
ph_rowId: string;
|
|
1604
1604
|
ph_otherAccount: string;
|
|
1605
1605
|
ph_historyName: string;
|
|
@@ -1614,7 +1614,7 @@ interface IInstagramPostHighLight extends BoInterfaceModelsCommon.IBaseModel, Bo
|
|
|
1614
1614
|
ph_statusDetail: string;
|
|
1615
1615
|
}
|
|
1616
1616
|
|
|
1617
|
-
interface IInstagramPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1617
|
+
interface IInstagramPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1618
1618
|
pn_rowId: string;
|
|
1619
1619
|
pn_otherAccount: string;
|
|
1620
1620
|
pn_photosUrl: string[];
|
|
@@ -1636,7 +1636,7 @@ interface IInstagramPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterf
|
|
|
1636
1636
|
pn_statusDetail: string;
|
|
1637
1637
|
}
|
|
1638
1638
|
|
|
1639
|
-
interface IInstagramPostReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1639
|
+
interface IInstagramPostReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1640
1640
|
pr_rowId: string;
|
|
1641
1641
|
pr_otherAccount: string;
|
|
1642
1642
|
pr_photosUrl: string[];
|
|
@@ -1660,7 +1660,7 @@ interface IInstagramPostReel extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
1660
1660
|
pr_statusDetail: string;
|
|
1661
1661
|
}
|
|
1662
1662
|
|
|
1663
|
-
interface IInstagramPostStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1663
|
+
interface IInstagramPostStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1664
1664
|
ps_rowId: string;
|
|
1665
1665
|
ps_otherAccount: string;
|
|
1666
1666
|
ps_photosUrl: string[];
|
|
@@ -1678,7 +1678,7 @@ interface IInstagramPostStory extends BoInterfaceModelsCommon.IBaseModel, BoInte
|
|
|
1678
1678
|
ps_statusDetail: string;
|
|
1679
1679
|
}
|
|
1680
1680
|
|
|
1681
|
-
interface IInstagramInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1681
|
+
interface IInstagramInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1682
1682
|
ircmt_content: string;
|
|
1683
1683
|
ircmt_userLink: string;
|
|
1684
1684
|
ircmt_linkPost: string;
|
|
@@ -1694,7 +1694,7 @@ interface IInstagramInteractReplyComment extends BoInterfaceModelsCommon.IBaseMo
|
|
|
1694
1694
|
ircmt_statusDetail: string;
|
|
1695
1695
|
}
|
|
1696
1696
|
|
|
1697
|
-
interface IInstagramInteractReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1697
|
+
interface IInstagramInteractReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1698
1698
|
ir_idea: string | IIdea;
|
|
1699
1699
|
ir_niche: string | INiche;
|
|
1700
1700
|
ir_department: IDepartment | string;
|
|
@@ -1709,7 +1709,7 @@ interface IInstagramInteractReel extends BoInterfaceModelsCommon.IBaseModel, BoI
|
|
|
1709
1709
|
ir_statusDetail: string;
|
|
1710
1710
|
}
|
|
1711
1711
|
|
|
1712
|
-
interface IInstagramInteractStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1712
|
+
interface IInstagramInteractStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1713
1713
|
is_idea: string | IIdea;
|
|
1714
1714
|
is_niche: string | INiche;
|
|
1715
1715
|
is_department: IDepartment | string;
|
|
@@ -1726,7 +1726,7 @@ interface IInstagramInteractStory extends BoInterfaceModelsCommon.IBaseModel, Bo
|
|
|
1726
1726
|
is_statusDetail: string;
|
|
1727
1727
|
}
|
|
1728
1728
|
|
|
1729
|
-
interface IInstagramInteractExplore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1729
|
+
interface IInstagramInteractExplore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1730
1730
|
ie_typeView: string;
|
|
1731
1731
|
ie_numberLike: number;
|
|
1732
1732
|
ie_minutesExecute: number;
|
|
@@ -1746,7 +1746,7 @@ interface IInteractSentMessageDetail {
|
|
|
1746
1746
|
content_message: string;
|
|
1747
1747
|
content_receiver: string;
|
|
1748
1748
|
}
|
|
1749
|
-
interface IInstagramInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1749
|
+
interface IInstagramInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1750
1750
|
irm_content: string;
|
|
1751
1751
|
irm_receiver: string;
|
|
1752
1752
|
irm_idea: string | IIdea;
|
|
@@ -1760,7 +1760,7 @@ interface IInstagramInteractReplyMessage extends BoInterfaceModelsCommon.IBaseMo
|
|
|
1760
1760
|
irm_statusDetail: string;
|
|
1761
1761
|
}
|
|
1762
1762
|
|
|
1763
|
-
interface IInstagramInteractFollowing extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1763
|
+
interface IInstagramInteractFollowing extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1764
1764
|
if_following: number;
|
|
1765
1765
|
if_idea: string | IIdea;
|
|
1766
1766
|
if_niche: string | INiche;
|
|
@@ -1773,7 +1773,7 @@ interface IInstagramInteractFollowing extends BoInterfaceModelsCommon.IBaseModel
|
|
|
1773
1773
|
if_statusDetail: string;
|
|
1774
1774
|
}
|
|
1775
1775
|
|
|
1776
|
-
interface IInstagramInteractFollower extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1776
|
+
interface IInstagramInteractFollower extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1777
1777
|
if_follower: number;
|
|
1778
1778
|
if_idea: string | IIdea;
|
|
1779
1779
|
if_niche: string | INiche;
|
|
@@ -1786,7 +1786,7 @@ interface IInstagramInteractFollower extends BoInterfaceModelsCommon.IBaseModel,
|
|
|
1786
1786
|
if_statusDetail: string;
|
|
1787
1787
|
}
|
|
1788
1788
|
|
|
1789
|
-
interface IInstagramSettingInteractExplore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1789
|
+
interface IInstagramSettingInteractExplore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1790
1790
|
sie_account: string | IAccount;
|
|
1791
1791
|
sie_dayOfWeeks: Array<string>;
|
|
1792
1792
|
sie_listRunTimes: Array<Array<string>>;
|
|
@@ -1806,7 +1806,7 @@ interface IInstagramSettingInteractExplore extends BoInterfaceModelsCommon.IBase
|
|
|
1806
1806
|
sie_isLikeExplore: boolean;
|
|
1807
1807
|
}
|
|
1808
1808
|
|
|
1809
|
-
interface IInstagramSettingInteractFollow extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1809
|
+
interface IInstagramSettingInteractFollow extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1810
1810
|
sif_account: string | IAccount;
|
|
1811
1811
|
sif_listRunTimes: Array<Array<string>>;
|
|
1812
1812
|
sif_dayOfWeeks: Array<string>;
|
|
@@ -1845,7 +1845,7 @@ interface IInstagramSettingInteractFollow extends BoInterfaceModelsCommon.IBaseM
|
|
|
1845
1845
|
sif_isSkipBioNoneEnglish: boolean;
|
|
1846
1846
|
}
|
|
1847
1847
|
|
|
1848
|
-
interface IInstagramSettingInteractReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1848
|
+
interface IInstagramSettingInteractReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1849
1849
|
sir_account: string | IAccount;
|
|
1850
1850
|
sir_dayOfWeeks: Array<string>;
|
|
1851
1851
|
sir_listRunTimes: Array<Array<string>>;
|
|
@@ -1864,7 +1864,7 @@ interface IInstagramSettingInteractReel extends BoInterfaceModelsCommon.IBaseMod
|
|
|
1864
1864
|
sir_isLikeReel: boolean;
|
|
1865
1865
|
}
|
|
1866
1866
|
|
|
1867
|
-
interface IInstagramSettingInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1867
|
+
interface IInstagramSettingInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1868
1868
|
sirc_account: string | IAccount;
|
|
1869
1869
|
sirc_dayOfWeeks: Array<string>;
|
|
1870
1870
|
sirc_listRunTimes: Array<Array<string>>;
|
|
@@ -1887,7 +1887,7 @@ interface IInstagramSettingInteractReplyComment extends BoInterfaceModelsCommon.
|
|
|
1887
1887
|
sirc_isReplyCommentsPostOfMe: boolean;
|
|
1888
1888
|
}
|
|
1889
1889
|
|
|
1890
|
-
interface IInstagramSettingInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1890
|
+
interface IInstagramSettingInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1891
1891
|
sirm_account: string | IAccount;
|
|
1892
1892
|
sirm_listRunTimes: Array<Array<string>>;
|
|
1893
1893
|
sirm_dayOfWeeks: Array<string>;
|
|
@@ -1905,7 +1905,7 @@ interface IInstagramSettingInteractReplyMessage extends BoInterfaceModelsCommon.
|
|
|
1905
1905
|
sirm_isSkipReplyIfOnlyIcons: boolean;
|
|
1906
1906
|
}
|
|
1907
1907
|
|
|
1908
|
-
interface IInstagramSettingInteractStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1908
|
+
interface IInstagramSettingInteractStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1909
1909
|
sis_account: string | IAccount;
|
|
1910
1910
|
sis_dayOfWeeks: Array<string>;
|
|
1911
1911
|
sis_listRunTimes: Array<Array<string>>;
|
|
@@ -1934,7 +1934,7 @@ interface IInstagramSettingInteractStory extends BoInterfaceModelsCommon.IBaseMo
|
|
|
1934
1934
|
sis_isSendMessageOnSheet: boolean;
|
|
1935
1935
|
}
|
|
1936
1936
|
|
|
1937
|
-
interface IInstagramSettingInteractUnFollow extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1937
|
+
interface IInstagramSettingInteractUnFollow extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1938
1938
|
siuf_account: string | IAccount;
|
|
1939
1939
|
siuf_dayOfWeeks: Array<string>;
|
|
1940
1940
|
siuf_listRunTimes: Array<Array<string>>;
|
|
@@ -1956,7 +1956,7 @@ interface IInstagramSettingInteractUnFollow extends BoInterfaceModelsCommon.IBas
|
|
|
1956
1956
|
siuf_isInteractBeforeUnFollow: boolean;
|
|
1957
1957
|
}
|
|
1958
1958
|
|
|
1959
|
-
interface IInstagramSettingPost extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1959
|
+
interface IInstagramSettingPost extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1960
1960
|
sp_account: string | IAccount;
|
|
1961
1961
|
sp_listRunTimes: Array<{
|
|
1962
1962
|
typePost: string;
|
|
@@ -1970,7 +1970,7 @@ interface IInstagramSettingPost extends BoInterfaceModelsCommon.IBaseModel, BoIn
|
|
|
1970
1970
|
sp_isTimeUs: boolean;
|
|
1971
1971
|
}
|
|
1972
1972
|
|
|
1973
|
-
interface IThreadsPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1973
|
+
interface IThreadsPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1974
1974
|
pn_url: string;
|
|
1975
1975
|
pn_photosUrl: string[];
|
|
1976
1976
|
pn_videosUrl: string[];
|
|
@@ -1993,7 +1993,7 @@ interface IThreadsPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
1993
1993
|
pn_statusDetail: string;
|
|
1994
1994
|
}
|
|
1995
1995
|
|
|
1996
|
-
interface IThreadsInteractFollower extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1996
|
+
interface IThreadsInteractFollower extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1997
1997
|
if_follower: number;
|
|
1998
1998
|
if_idea: string | IIdea;
|
|
1999
1999
|
if_niche: string | INiche;
|
|
@@ -2006,7 +2006,7 @@ interface IThreadsInteractFollower extends BoInterfaceModelsCommon.IBaseModel, B
|
|
|
2006
2006
|
if_statusDetail: string;
|
|
2007
2007
|
}
|
|
2008
2008
|
|
|
2009
|
-
interface IThreadsInteractFollowing extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
2009
|
+
interface IThreadsInteractFollowing extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
2010
2010
|
if_following: number;
|
|
2011
2011
|
if_idea: string | IIdea;
|
|
2012
2012
|
if_niche: string | INiche;
|
|
@@ -2019,7 +2019,7 @@ interface IThreadsInteractFollowing extends BoInterfaceModelsCommon.IBaseModel,
|
|
|
2019
2019
|
if_statusDetail: string;
|
|
2020
2020
|
}
|
|
2021
2021
|
|
|
2022
|
-
interface IThreadsInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
2022
|
+
interface IThreadsInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
2023
2023
|
ircmt_content: string;
|
|
2024
2024
|
ircmt_linkPost: string;
|
|
2025
2025
|
ircmt_userLink: string;
|
|
@@ -2034,7 +2034,7 @@ interface IThreadsInteractReplyComment extends BoInterfaceModelsCommon.IBaseMode
|
|
|
2034
2034
|
ircmt_statusDetail: string;
|
|
2035
2035
|
}
|
|
2036
2036
|
|
|
2037
|
-
interface IThreadsInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
2037
|
+
interface IThreadsInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
2038
2038
|
irm_content: string;
|
|
2039
2039
|
irm_receiver: string;
|
|
2040
2040
|
irm_idea: string | IIdea;
|
|
@@ -2048,7 +2048,7 @@ interface IThreadsInteractReplyMessage extends BoInterfaceModelsCommon.IBaseMode
|
|
|
2048
2048
|
irm_statusDetail: string;
|
|
2049
2049
|
}
|
|
2050
2050
|
|
|
2051
|
-
interface IThreadsSettingPost extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
2051
|
+
interface IThreadsSettingPost extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
2052
2052
|
sp_account: string | IAccount;
|
|
2053
2053
|
sp_listRunTimes: Array<{
|
|
2054
2054
|
typePost: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1025,12 +1025,12 @@ interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
1025
1025
|
niches: IManagerWork[] | string[];
|
|
1026
1026
|
}
|
|
1027
1027
|
|
|
1028
|
-
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1028
|
+
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1029
1029
|
ag_name: string;
|
|
1030
1030
|
ag_slug: string;
|
|
1031
1031
|
}
|
|
1032
1032
|
|
|
1033
|
-
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1033
|
+
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1034
1034
|
pc_name: string;
|
|
1035
1035
|
pc_user: IUser | string;
|
|
1036
1036
|
}
|
|
@@ -1062,7 +1062,7 @@ interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
|
|
|
1062
1062
|
device_note: string;
|
|
1063
1063
|
}
|
|
1064
1064
|
|
|
1065
|
-
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1065
|
+
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1066
1066
|
pt_url: string;
|
|
1067
1067
|
pt_name: string;
|
|
1068
1068
|
pt_desc: string;
|
|
@@ -1072,7 +1072,7 @@ interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterface
|
|
|
1072
1072
|
pt_department: IDepartment | string;
|
|
1073
1073
|
}
|
|
1074
1074
|
|
|
1075
|
-
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1075
|
+
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1076
1076
|
proxy_type: ETypeProxy;
|
|
1077
1077
|
proxy_ip: string;
|
|
1078
1078
|
proxy_key: string;
|
|
@@ -1274,7 +1274,7 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
1274
1274
|
}>;
|
|
1275
1275
|
}
|
|
1276
1276
|
|
|
1277
|
-
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1277
|
+
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1278
1278
|
ps_proxy: IProxy | string;
|
|
1279
1279
|
ps_typeSocial: ETypeSocial;
|
|
1280
1280
|
ps_maximumAccountApply: number;
|
|
@@ -1557,7 +1557,7 @@ interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceMo
|
|
|
1557
1557
|
de_device: IDevice | string;
|
|
1558
1558
|
}
|
|
1559
1559
|
|
|
1560
|
-
interface IDeviceCHPlay extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1560
|
+
interface IDeviceCHPlay extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1561
1561
|
dc_status: string;
|
|
1562
1562
|
dc_note: string;
|
|
1563
1563
|
dc_device: IDevice | string;
|
|
@@ -1569,7 +1569,7 @@ declare namespace index$3 {
|
|
|
1569
1569
|
export type { index$3_IDeviceCHPlay as IDeviceCHPlay, index$3_IDeviceEmail as IDeviceEmail };
|
|
1570
1570
|
}
|
|
1571
1571
|
|
|
1572
|
-
interface IFreepikSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1572
|
+
interface IFreepikSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1573
1573
|
username: string;
|
|
1574
1574
|
password: string;
|
|
1575
1575
|
maxDeviceApply: number;
|
|
@@ -1582,12 +1582,12 @@ declare namespace index$2 {
|
|
|
1582
1582
|
export type { index$2_IFreepikSetting as IFreepikSetting };
|
|
1583
1583
|
}
|
|
1584
1584
|
|
|
1585
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1585
|
+
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1586
1586
|
idea_name: string;
|
|
1587
1587
|
idea_slug: string;
|
|
1588
1588
|
}
|
|
1589
1589
|
|
|
1590
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1590
|
+
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1591
1591
|
niche_name: string;
|
|
1592
1592
|
niche_slug: string;
|
|
1593
1593
|
niche_idea: string | IIdea;
|
|
@@ -1599,7 +1599,7 @@ interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, Bo
|
|
|
1599
1599
|
tse_actionsExecuted: string[];
|
|
1600
1600
|
}
|
|
1601
1601
|
|
|
1602
|
-
interface IInstagramPostHighLight extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1602
|
+
interface IInstagramPostHighLight extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1603
1603
|
ph_rowId: string;
|
|
1604
1604
|
ph_otherAccount: string;
|
|
1605
1605
|
ph_historyName: string;
|
|
@@ -1614,7 +1614,7 @@ interface IInstagramPostHighLight extends BoInterfaceModelsCommon.IBaseModel, Bo
|
|
|
1614
1614
|
ph_statusDetail: string;
|
|
1615
1615
|
}
|
|
1616
1616
|
|
|
1617
|
-
interface IInstagramPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1617
|
+
interface IInstagramPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1618
1618
|
pn_rowId: string;
|
|
1619
1619
|
pn_otherAccount: string;
|
|
1620
1620
|
pn_photosUrl: string[];
|
|
@@ -1636,7 +1636,7 @@ interface IInstagramPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterf
|
|
|
1636
1636
|
pn_statusDetail: string;
|
|
1637
1637
|
}
|
|
1638
1638
|
|
|
1639
|
-
interface IInstagramPostReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1639
|
+
interface IInstagramPostReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1640
1640
|
pr_rowId: string;
|
|
1641
1641
|
pr_otherAccount: string;
|
|
1642
1642
|
pr_photosUrl: string[];
|
|
@@ -1660,7 +1660,7 @@ interface IInstagramPostReel extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
1660
1660
|
pr_statusDetail: string;
|
|
1661
1661
|
}
|
|
1662
1662
|
|
|
1663
|
-
interface IInstagramPostStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1663
|
+
interface IInstagramPostStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1664
1664
|
ps_rowId: string;
|
|
1665
1665
|
ps_otherAccount: string;
|
|
1666
1666
|
ps_photosUrl: string[];
|
|
@@ -1678,7 +1678,7 @@ interface IInstagramPostStory extends BoInterfaceModelsCommon.IBaseModel, BoInte
|
|
|
1678
1678
|
ps_statusDetail: string;
|
|
1679
1679
|
}
|
|
1680
1680
|
|
|
1681
|
-
interface IInstagramInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1681
|
+
interface IInstagramInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1682
1682
|
ircmt_content: string;
|
|
1683
1683
|
ircmt_userLink: string;
|
|
1684
1684
|
ircmt_linkPost: string;
|
|
@@ -1694,7 +1694,7 @@ interface IInstagramInteractReplyComment extends BoInterfaceModelsCommon.IBaseMo
|
|
|
1694
1694
|
ircmt_statusDetail: string;
|
|
1695
1695
|
}
|
|
1696
1696
|
|
|
1697
|
-
interface IInstagramInteractReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1697
|
+
interface IInstagramInteractReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1698
1698
|
ir_idea: string | IIdea;
|
|
1699
1699
|
ir_niche: string | INiche;
|
|
1700
1700
|
ir_department: IDepartment | string;
|
|
@@ -1709,7 +1709,7 @@ interface IInstagramInteractReel extends BoInterfaceModelsCommon.IBaseModel, BoI
|
|
|
1709
1709
|
ir_statusDetail: string;
|
|
1710
1710
|
}
|
|
1711
1711
|
|
|
1712
|
-
interface IInstagramInteractStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1712
|
+
interface IInstagramInteractStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1713
1713
|
is_idea: string | IIdea;
|
|
1714
1714
|
is_niche: string | INiche;
|
|
1715
1715
|
is_department: IDepartment | string;
|
|
@@ -1726,7 +1726,7 @@ interface IInstagramInteractStory extends BoInterfaceModelsCommon.IBaseModel, Bo
|
|
|
1726
1726
|
is_statusDetail: string;
|
|
1727
1727
|
}
|
|
1728
1728
|
|
|
1729
|
-
interface IInstagramInteractExplore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1729
|
+
interface IInstagramInteractExplore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1730
1730
|
ie_typeView: string;
|
|
1731
1731
|
ie_numberLike: number;
|
|
1732
1732
|
ie_minutesExecute: number;
|
|
@@ -1746,7 +1746,7 @@ interface IInteractSentMessageDetail {
|
|
|
1746
1746
|
content_message: string;
|
|
1747
1747
|
content_receiver: string;
|
|
1748
1748
|
}
|
|
1749
|
-
interface IInstagramInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1749
|
+
interface IInstagramInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1750
1750
|
irm_content: string;
|
|
1751
1751
|
irm_receiver: string;
|
|
1752
1752
|
irm_idea: string | IIdea;
|
|
@@ -1760,7 +1760,7 @@ interface IInstagramInteractReplyMessage extends BoInterfaceModelsCommon.IBaseMo
|
|
|
1760
1760
|
irm_statusDetail: string;
|
|
1761
1761
|
}
|
|
1762
1762
|
|
|
1763
|
-
interface IInstagramInteractFollowing extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1763
|
+
interface IInstagramInteractFollowing extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1764
1764
|
if_following: number;
|
|
1765
1765
|
if_idea: string | IIdea;
|
|
1766
1766
|
if_niche: string | INiche;
|
|
@@ -1773,7 +1773,7 @@ interface IInstagramInteractFollowing extends BoInterfaceModelsCommon.IBaseModel
|
|
|
1773
1773
|
if_statusDetail: string;
|
|
1774
1774
|
}
|
|
1775
1775
|
|
|
1776
|
-
interface IInstagramInteractFollower extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1776
|
+
interface IInstagramInteractFollower extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1777
1777
|
if_follower: number;
|
|
1778
1778
|
if_idea: string | IIdea;
|
|
1779
1779
|
if_niche: string | INiche;
|
|
@@ -1786,7 +1786,7 @@ interface IInstagramInteractFollower extends BoInterfaceModelsCommon.IBaseModel,
|
|
|
1786
1786
|
if_statusDetail: string;
|
|
1787
1787
|
}
|
|
1788
1788
|
|
|
1789
|
-
interface IInstagramSettingInteractExplore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1789
|
+
interface IInstagramSettingInteractExplore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1790
1790
|
sie_account: string | IAccount;
|
|
1791
1791
|
sie_dayOfWeeks: Array<string>;
|
|
1792
1792
|
sie_listRunTimes: Array<Array<string>>;
|
|
@@ -1806,7 +1806,7 @@ interface IInstagramSettingInteractExplore extends BoInterfaceModelsCommon.IBase
|
|
|
1806
1806
|
sie_isLikeExplore: boolean;
|
|
1807
1807
|
}
|
|
1808
1808
|
|
|
1809
|
-
interface IInstagramSettingInteractFollow extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1809
|
+
interface IInstagramSettingInteractFollow extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1810
1810
|
sif_account: string | IAccount;
|
|
1811
1811
|
sif_listRunTimes: Array<Array<string>>;
|
|
1812
1812
|
sif_dayOfWeeks: Array<string>;
|
|
@@ -1845,7 +1845,7 @@ interface IInstagramSettingInteractFollow extends BoInterfaceModelsCommon.IBaseM
|
|
|
1845
1845
|
sif_isSkipBioNoneEnglish: boolean;
|
|
1846
1846
|
}
|
|
1847
1847
|
|
|
1848
|
-
interface IInstagramSettingInteractReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1848
|
+
interface IInstagramSettingInteractReel extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1849
1849
|
sir_account: string | IAccount;
|
|
1850
1850
|
sir_dayOfWeeks: Array<string>;
|
|
1851
1851
|
sir_listRunTimes: Array<Array<string>>;
|
|
@@ -1864,7 +1864,7 @@ interface IInstagramSettingInteractReel extends BoInterfaceModelsCommon.IBaseMod
|
|
|
1864
1864
|
sir_isLikeReel: boolean;
|
|
1865
1865
|
}
|
|
1866
1866
|
|
|
1867
|
-
interface IInstagramSettingInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1867
|
+
interface IInstagramSettingInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1868
1868
|
sirc_account: string | IAccount;
|
|
1869
1869
|
sirc_dayOfWeeks: Array<string>;
|
|
1870
1870
|
sirc_listRunTimes: Array<Array<string>>;
|
|
@@ -1887,7 +1887,7 @@ interface IInstagramSettingInteractReplyComment extends BoInterfaceModelsCommon.
|
|
|
1887
1887
|
sirc_isReplyCommentsPostOfMe: boolean;
|
|
1888
1888
|
}
|
|
1889
1889
|
|
|
1890
|
-
interface IInstagramSettingInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1890
|
+
interface IInstagramSettingInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1891
1891
|
sirm_account: string | IAccount;
|
|
1892
1892
|
sirm_listRunTimes: Array<Array<string>>;
|
|
1893
1893
|
sirm_dayOfWeeks: Array<string>;
|
|
@@ -1905,7 +1905,7 @@ interface IInstagramSettingInteractReplyMessage extends BoInterfaceModelsCommon.
|
|
|
1905
1905
|
sirm_isSkipReplyIfOnlyIcons: boolean;
|
|
1906
1906
|
}
|
|
1907
1907
|
|
|
1908
|
-
interface IInstagramSettingInteractStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1908
|
+
interface IInstagramSettingInteractStory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1909
1909
|
sis_account: string | IAccount;
|
|
1910
1910
|
sis_dayOfWeeks: Array<string>;
|
|
1911
1911
|
sis_listRunTimes: Array<Array<string>>;
|
|
@@ -1934,7 +1934,7 @@ interface IInstagramSettingInteractStory extends BoInterfaceModelsCommon.IBaseMo
|
|
|
1934
1934
|
sis_isSendMessageOnSheet: boolean;
|
|
1935
1935
|
}
|
|
1936
1936
|
|
|
1937
|
-
interface IInstagramSettingInteractUnFollow extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1937
|
+
interface IInstagramSettingInteractUnFollow extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1938
1938
|
siuf_account: string | IAccount;
|
|
1939
1939
|
siuf_dayOfWeeks: Array<string>;
|
|
1940
1940
|
siuf_listRunTimes: Array<Array<string>>;
|
|
@@ -1956,7 +1956,7 @@ interface IInstagramSettingInteractUnFollow extends BoInterfaceModelsCommon.IBas
|
|
|
1956
1956
|
siuf_isInteractBeforeUnFollow: boolean;
|
|
1957
1957
|
}
|
|
1958
1958
|
|
|
1959
|
-
interface IInstagramSettingPost extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1959
|
+
interface IInstagramSettingPost extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1960
1960
|
sp_account: string | IAccount;
|
|
1961
1961
|
sp_listRunTimes: Array<{
|
|
1962
1962
|
typePost: string;
|
|
@@ -1970,7 +1970,7 @@ interface IInstagramSettingPost extends BoInterfaceModelsCommon.IBaseModel, BoIn
|
|
|
1970
1970
|
sp_isTimeUs: boolean;
|
|
1971
1971
|
}
|
|
1972
1972
|
|
|
1973
|
-
interface IThreadsPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1973
|
+
interface IThreadsPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1974
1974
|
pn_url: string;
|
|
1975
1975
|
pn_photosUrl: string[];
|
|
1976
1976
|
pn_videosUrl: string[];
|
|
@@ -1993,7 +1993,7 @@ interface IThreadsPostNew extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
1993
1993
|
pn_statusDetail: string;
|
|
1994
1994
|
}
|
|
1995
1995
|
|
|
1996
|
-
interface IThreadsInteractFollower extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
1996
|
+
interface IThreadsInteractFollower extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1997
1997
|
if_follower: number;
|
|
1998
1998
|
if_idea: string | IIdea;
|
|
1999
1999
|
if_niche: string | INiche;
|
|
@@ -2006,7 +2006,7 @@ interface IThreadsInteractFollower extends BoInterfaceModelsCommon.IBaseModel, B
|
|
|
2006
2006
|
if_statusDetail: string;
|
|
2007
2007
|
}
|
|
2008
2008
|
|
|
2009
|
-
interface IThreadsInteractFollowing extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
2009
|
+
interface IThreadsInteractFollowing extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
2010
2010
|
if_following: number;
|
|
2011
2011
|
if_idea: string | IIdea;
|
|
2012
2012
|
if_niche: string | INiche;
|
|
@@ -2019,7 +2019,7 @@ interface IThreadsInteractFollowing extends BoInterfaceModelsCommon.IBaseModel,
|
|
|
2019
2019
|
if_statusDetail: string;
|
|
2020
2020
|
}
|
|
2021
2021
|
|
|
2022
|
-
interface IThreadsInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
2022
|
+
interface IThreadsInteractReplyComment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
2023
2023
|
ircmt_content: string;
|
|
2024
2024
|
ircmt_linkPost: string;
|
|
2025
2025
|
ircmt_userLink: string;
|
|
@@ -2034,7 +2034,7 @@ interface IThreadsInteractReplyComment extends BoInterfaceModelsCommon.IBaseMode
|
|
|
2034
2034
|
ircmt_statusDetail: string;
|
|
2035
2035
|
}
|
|
2036
2036
|
|
|
2037
|
-
interface IThreadsInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
2037
|
+
interface IThreadsInteractReplyMessage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
2038
2038
|
irm_content: string;
|
|
2039
2039
|
irm_receiver: string;
|
|
2040
2040
|
irm_idea: string | IIdea;
|
|
@@ -2048,7 +2048,7 @@ interface IThreadsInteractReplyMessage extends BoInterfaceModelsCommon.IBaseMode
|
|
|
2048
2048
|
irm_statusDetail: string;
|
|
2049
2049
|
}
|
|
2050
2050
|
|
|
2051
|
-
interface IThreadsSettingPost extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.
|
|
2051
|
+
interface IThreadsSettingPost extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
2052
2052
|
sp_account: string | IAccount;
|
|
2053
2053
|
sp_listRunTimes: Array<{
|
|
2054
2054
|
typePost: string;
|