automation-lib 5.0.195 → 5.0.204
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 +394 -584
- package/dist/index.d.ts +394 -584
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1100,6 +1100,46 @@ interface IHistoryTaskAIContent extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1100
1100
|
timeEnd: Date;
|
|
1101
1101
|
}
|
|
1102
1102
|
|
|
1103
|
+
interface IHistoryTaskCanva extends IBaseModel, ITrackingModel<IUser> {
|
|
1104
|
+
sheetID: string;
|
|
1105
|
+
sheetUrl: string;
|
|
1106
|
+
sheetName: string;
|
|
1107
|
+
rowID: string;
|
|
1108
|
+
row: number;
|
|
1109
|
+
typeSocial: ETypeSocial;
|
|
1110
|
+
accountSocialId: string;
|
|
1111
|
+
typePost: string;
|
|
1112
|
+
titlePool: string;
|
|
1113
|
+
pool1: string;
|
|
1114
|
+
pool2: string;
|
|
1115
|
+
pool3: string;
|
|
1116
|
+
textFirstPage2: string;
|
|
1117
|
+
textSecondPage2: string;
|
|
1118
|
+
textPage6: string;
|
|
1119
|
+
linkAddHistory: string;
|
|
1120
|
+
nicheLinkCategory: string;
|
|
1121
|
+
styleName: string;
|
|
1122
|
+
backgroundForPage3: string;
|
|
1123
|
+
backgroundForPage4: string;
|
|
1124
|
+
backgroundForPage5: string;
|
|
1125
|
+
backgroundForPage6: string;
|
|
1126
|
+
effectAudioThumbnail: string;
|
|
1127
|
+
effectAudioPage345: string;
|
|
1128
|
+
bgRemoveBackground345: string;
|
|
1129
|
+
fontText1: string;
|
|
1130
|
+
fontText2: string;
|
|
1131
|
+
linkCanvaScript: string;
|
|
1132
|
+
linkCanvaVideo: string;
|
|
1133
|
+
linkCanvaImageThumb: string;
|
|
1134
|
+
linkCanvaImage1: string;
|
|
1135
|
+
linkCanvaImage2: string;
|
|
1136
|
+
linkCanvaImage3: string;
|
|
1137
|
+
linkCanvaImage4: string;
|
|
1138
|
+
linkCanvaImage5: string;
|
|
1139
|
+
status: EStatusTaskCanva;
|
|
1140
|
+
note: string;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1103
1143
|
interface IManagerSheetGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1104
1144
|
name: string;
|
|
1105
1145
|
slug: string;
|
|
@@ -1460,28 +1500,22 @@ interface IManagerImageAI extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1460
1500
|
niches: IManagerWork[] | string[];
|
|
1461
1501
|
}
|
|
1462
1502
|
|
|
1463
|
-
interface
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
email: string;
|
|
1468
|
-
password: string;
|
|
1469
|
-
code2FA: string;
|
|
1470
|
-
status: EStatusAccountCanva;
|
|
1471
|
-
note: string;
|
|
1503
|
+
interface IManagerImageAIUserAttached extends IBaseModel, ITrackingModel<IUser> {
|
|
1504
|
+
typeSocial: ETypeSocial;
|
|
1505
|
+
accountSocialId: string;
|
|
1506
|
+
managerImageAI: string | IManagerImageAI;
|
|
1472
1507
|
}
|
|
1473
1508
|
|
|
1474
|
-
interface
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1509
|
+
interface IManagerImageAIItemStore extends IBaseModel, ITrackingModel<IUser> {
|
|
1510
|
+
file: IFile | string;
|
|
1511
|
+
managerImage: IManagerImageAI | string;
|
|
1512
|
+
typeFolderStore: EFolderImageAI;
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
interface IAccountEmailTag extends IBaseModel, ITrackingModel<IUser> {
|
|
1478
1516
|
email: string;
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
timeLastUsed: Date;
|
|
1482
|
-
lastUserUsed: string | IUser;
|
|
1483
|
-
status: EStatusAccountDrive;
|
|
1484
|
-
note: string;
|
|
1517
|
+
typeTag: EEmailTagType | string;
|
|
1518
|
+
model: EAIModelContent | EAIModelImage | EAIModelVoice;
|
|
1485
1519
|
}
|
|
1486
1520
|
|
|
1487
1521
|
interface IProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1510,6 +1544,127 @@ interface IProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1510
1544
|
note: string;
|
|
1511
1545
|
}
|
|
1512
1546
|
|
|
1547
|
+
interface IAccountEmailProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
1548
|
+
accountEmail: string | IAccountEmail;
|
|
1549
|
+
proxy: string | IProxy;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
interface IAccountEmailTaskWork extends IBaseModel, ITrackingModel<IUser> {
|
|
1553
|
+
accountEmail: string;
|
|
1554
|
+
idea: string | IManagerWork;
|
|
1555
|
+
niches: string[] | IManagerWork[];
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
interface IAccountAIVoiceTag extends IBaseModel, ITrackingModel<IUser> {
|
|
1559
|
+
name: string;
|
|
1560
|
+
color: string;
|
|
1561
|
+
}
|
|
1562
|
+
|
|
1563
|
+
interface IAccountAIVoiceChannel extends IBaseModel, ITrackingModel<IUser> {
|
|
1564
|
+
model: EAIModelVoice;
|
|
1565
|
+
name: string;
|
|
1566
|
+
url: string;
|
|
1567
|
+
color: string;
|
|
1568
|
+
status: EStatusChannel;
|
|
1569
|
+
note: string;
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
interface IAccountAIVoiceGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1573
|
+
name: string;
|
|
1574
|
+
slug: string;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
interface IAccountAIVoiceInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
1578
|
+
model: EAIModelVoice;
|
|
1579
|
+
provider: string;
|
|
1580
|
+
versionModel: EAIVersionVoice;
|
|
1581
|
+
emailAccount: string | IAccountEmail;
|
|
1582
|
+
password: string;
|
|
1583
|
+
code2FA: string;
|
|
1584
|
+
status: EStatusAccountAI;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
interface IAccountAIVoice extends IBaseModel, ITrackingModel<IUser> {
|
|
1588
|
+
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
1589
|
+
ideaManagerWork: string | IManagerWork;
|
|
1590
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
1591
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
1592
|
+
tags: string[] | IAccountAIVoiceTag[];
|
|
1593
|
+
membersAssigned: string[] | IUser[];
|
|
1594
|
+
listAccountInfoChannels: Array<{
|
|
1595
|
+
accountInfo: IAccountAIVoiceInfo | string;
|
|
1596
|
+
listChannels: IAccountAIVoiceChannel[] | string[];
|
|
1597
|
+
}>;
|
|
1598
|
+
status: EStatusActive;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
interface IAccountAIImageTag extends IBaseModel, ITrackingModel<IUser> {
|
|
1602
|
+
name: string;
|
|
1603
|
+
color: string;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
interface IAccountAIImageChannel extends IBaseModel, ITrackingModel<IUser> {
|
|
1607
|
+
model: EAIModelImage;
|
|
1608
|
+
name: string;
|
|
1609
|
+
url: string;
|
|
1610
|
+
color: string;
|
|
1611
|
+
status: EStatusChannel;
|
|
1612
|
+
note: string;
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
interface IAccountAIImageGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1616
|
+
name: string;
|
|
1617
|
+
slug: string;
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
interface IAccountAIImageInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
1621
|
+
model: EAIModelImage;
|
|
1622
|
+
provider: string;
|
|
1623
|
+
versionModel: EAIVersionImage;
|
|
1624
|
+
emailAccount: string | IAccountEmail;
|
|
1625
|
+
password: string;
|
|
1626
|
+
code2FA: string;
|
|
1627
|
+
status: EStatusAccountAI;
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
interface IAccountAIImage extends IBaseModel, ITrackingModel<IUser> {
|
|
1631
|
+
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
1632
|
+
ideaManagerWork: string | IManagerWork;
|
|
1633
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
1634
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
1635
|
+
tags: string[] | IAccountAIImageTag[];
|
|
1636
|
+
membersAssigned: string[] | IUser[];
|
|
1637
|
+
listAccountInfoChannels: Array<{
|
|
1638
|
+
accountInfo: IAccountAIImageInfo | string;
|
|
1639
|
+
listChannels: IAccountAIImageChannel[] | string[];
|
|
1640
|
+
}>;
|
|
1641
|
+
status: EStatusActive;
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
interface IAccountCanva extends IBaseModel, ITrackingUserAction, ITrackingModel<IUser> {
|
|
1645
|
+
sheetImport: string | ISheetImport;
|
|
1646
|
+
sheetUrl: string;
|
|
1647
|
+
sheetName: string;
|
|
1648
|
+
email: string;
|
|
1649
|
+
password: string;
|
|
1650
|
+
code2FA: string;
|
|
1651
|
+
status: EStatusAccountCanva;
|
|
1652
|
+
note: string;
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
interface IAccountDrive extends IBaseModel, ITrackingModel<IUser> {
|
|
1656
|
+
sheetImport: string | ISheetImport;
|
|
1657
|
+
sheetUrl: string;
|
|
1658
|
+
sheetName: string;
|
|
1659
|
+
email: string;
|
|
1660
|
+
password: string;
|
|
1661
|
+
code2FA: string;
|
|
1662
|
+
timeLastUsed: Date;
|
|
1663
|
+
lastUserUsed: string | IUser;
|
|
1664
|
+
status: EStatusAccountDrive;
|
|
1665
|
+
note: string;
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1513
1668
|
interface IAccountVPSGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1514
1669
|
name: string;
|
|
1515
1670
|
slug: string;
|
|
@@ -1570,6 +1725,15 @@ interface IAccountCHPlayICloud extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1570
1725
|
note: string;
|
|
1571
1726
|
}
|
|
1572
1727
|
|
|
1728
|
+
interface IThreadsHistoryGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
interface IThreadsHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
interface IThreadsHistoryChangeCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1573
1737
|
interface IPC extends IBaseModel, ITrackingModel<IUser> {
|
|
1574
1738
|
pc_name: string;
|
|
1575
1739
|
pc_description: string;
|
|
@@ -1593,13 +1757,38 @@ interface IDevice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1593
1757
|
note: string;
|
|
1594
1758
|
}
|
|
1595
1759
|
|
|
1596
|
-
interface
|
|
1597
|
-
|
|
1598
|
-
|
|
1760
|
+
interface IDeviceSettingForAccount extends IBaseModel, ITrackingModel<IUser> {
|
|
1761
|
+
deviceKey: string;
|
|
1762
|
+
device: string | IDevice;
|
|
1763
|
+
typeSocial: ETypeSocial;
|
|
1764
|
+
accountSocialId: string;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
interface IDeviceSettingForCHPlay extends IBaseModel, ITrackingModel<IUser> {
|
|
1768
|
+
deviceKey: string;
|
|
1769
|
+
device: string | IDevice;
|
|
1770
|
+
accountCHPlayICloud: IAccountCHPlayICloud | string;
|
|
1599
1771
|
}
|
|
1600
1772
|
|
|
1601
|
-
interface
|
|
1602
|
-
|
|
1773
|
+
interface IDeviceSettingForProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
1774
|
+
deviceKey: string;
|
|
1775
|
+
device: string | IDevice;
|
|
1776
|
+
proxy: IProxy | string;
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
interface IDeviceSettingForVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
1780
|
+
deviceKey: string;
|
|
1781
|
+
device: string | IDevice;
|
|
1782
|
+
accountVPN: string | IAccountVPN;
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
interface IThreadsAccountGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1786
|
+
name: string;
|
|
1787
|
+
slug: string;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
interface IThreadsAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
1791
|
+
group: IThreadsAccountGroup | string;
|
|
1603
1792
|
typeSocial: ETypeSocial;
|
|
1604
1793
|
sheetImport: string | ISheetImport;
|
|
1605
1794
|
sheetUrl: string;
|
|
@@ -1654,35 +1843,10 @@ interface IAccount extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1654
1843
|
note: string;
|
|
1655
1844
|
}
|
|
1656
1845
|
|
|
1657
|
-
interface
|
|
1658
|
-
|
|
1659
|
-
device: string | IDevice;
|
|
1846
|
+
interface IThreadsAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
1847
|
+
group: IThreadsAccountGroup | string;
|
|
1660
1848
|
typeSocial: ETypeSocial;
|
|
1661
|
-
|
|
1662
|
-
}
|
|
1663
|
-
|
|
1664
|
-
interface IDeviceSettingForCHPlay extends IBaseModel, ITrackingModel<IUser> {
|
|
1665
|
-
deviceKey: string;
|
|
1666
|
-
device: string | IDevice;
|
|
1667
|
-
accountCHPlayICloud: IAccountCHPlayICloud | string;
|
|
1668
|
-
}
|
|
1669
|
-
|
|
1670
|
-
interface IDeviceSettingForProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
1671
|
-
deviceKey: string;
|
|
1672
|
-
device: string | IDevice;
|
|
1673
|
-
proxy: IProxy | string;
|
|
1674
|
-
}
|
|
1675
|
-
|
|
1676
|
-
interface IDeviceSettingForVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
1677
|
-
deviceKey: string;
|
|
1678
|
-
device: string | IDevice;
|
|
1679
|
-
accountVPN: string | IAccountVPN;
|
|
1680
|
-
}
|
|
1681
|
-
|
|
1682
|
-
interface IAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
1683
|
-
group: IAccountsGroup | string;
|
|
1684
|
-
typeSocial: ETypeSocial;
|
|
1685
|
-
accountSocialSync: IAccount;
|
|
1849
|
+
accountSocialSync: IThreadsAccountRun;
|
|
1686
1850
|
timeImport: Date;
|
|
1687
1851
|
statusImport: string;
|
|
1688
1852
|
sheetImport: string | ISheetImport;
|
|
@@ -1744,15 +1908,6 @@ interface IAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1744
1908
|
noteConnectDevice: string;
|
|
1745
1909
|
}
|
|
1746
1910
|
|
|
1747
|
-
interface IThreadsHistoryGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
|
-
interface IThreadsHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
1751
|
-
}
|
|
1752
|
-
|
|
1753
|
-
interface IThreadsHistoryChangeCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
1754
|
-
}
|
|
1755
|
-
|
|
1756
1911
|
interface IInstagramHistoryGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1757
1912
|
}
|
|
1758
1913
|
|
|
@@ -1762,119 +1917,130 @@ interface IInstagramHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1762
1917
|
interface IInstagramHistoryChangeCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
1763
1918
|
}
|
|
1764
1919
|
|
|
1765
|
-
interface
|
|
1766
|
-
accountSocialRaw: string | IAccountRaw;
|
|
1767
|
-
managerImageAI: string | IManagerImageAI;
|
|
1768
|
-
typeSocial: ETypeSocial;
|
|
1769
|
-
}
|
|
1770
|
-
|
|
1771
|
-
interface IManagerImageAIItemStore extends IBaseModel, ITrackingModel<IUser> {
|
|
1772
|
-
file: IFile | string;
|
|
1773
|
-
managerImage: IManagerImageAI | string;
|
|
1774
|
-
typeFolderStore: EFolderImageAI;
|
|
1775
|
-
}
|
|
1776
|
-
|
|
1777
|
-
interface IAccountEmailTag extends IBaseModel, ITrackingModel<IUser> {
|
|
1778
|
-
email: string;
|
|
1779
|
-
typeTag: EEmailTagType | string;
|
|
1780
|
-
model: EAIModelContent | EAIModelImage | EAIModelVoice;
|
|
1781
|
-
}
|
|
1782
|
-
|
|
1783
|
-
interface IAccountEmailProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
1784
|
-
accountEmail: string | IAccountEmail;
|
|
1785
|
-
proxy: string | IProxy;
|
|
1786
|
-
}
|
|
1787
|
-
|
|
1788
|
-
interface IAccountEmailTaskWork extends IBaseModel, ITrackingModel<IUser> {
|
|
1789
|
-
accountEmail: string;
|
|
1790
|
-
idea: string | IManagerWork;
|
|
1791
|
-
niches: string[] | IManagerWork[];
|
|
1792
|
-
}
|
|
1793
|
-
|
|
1794
|
-
interface IAccountAIVoiceTag extends IBaseModel, ITrackingModel<IUser> {
|
|
1795
|
-
name: string;
|
|
1796
|
-
color: string;
|
|
1797
|
-
}
|
|
1798
|
-
|
|
1799
|
-
interface IAccountAIVoiceChannel extends IBaseModel, ITrackingModel<IUser> {
|
|
1800
|
-
model: EAIModelVoice;
|
|
1801
|
-
name: string;
|
|
1802
|
-
url: string;
|
|
1803
|
-
color: string;
|
|
1804
|
-
status: EStatusChannel;
|
|
1805
|
-
note: string;
|
|
1806
|
-
}
|
|
1807
|
-
|
|
1808
|
-
interface IAccountAIVoiceGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1920
|
+
interface IInstagramAccountGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1809
1921
|
name: string;
|
|
1810
1922
|
slug: string;
|
|
1811
1923
|
}
|
|
1812
1924
|
|
|
1813
|
-
interface
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1925
|
+
interface IInstagramAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
1926
|
+
group: IInstagramAccountGroup | string;
|
|
1927
|
+
typeSocial: ETypeSocial;
|
|
1928
|
+
sheetImport: string | ISheetImport;
|
|
1929
|
+
sheetUrl: string;
|
|
1930
|
+
sheetName: string;
|
|
1931
|
+
accountID: string;
|
|
1932
|
+
accountDeviceType: string;
|
|
1933
|
+
accountDeviceName: string;
|
|
1934
|
+
idea: string | IManagerWork;
|
|
1935
|
+
niche: string | IManagerWork;
|
|
1936
|
+
pc: IPC | string;
|
|
1937
|
+
deviceKey: string;
|
|
1938
|
+
device: IDevice | string;
|
|
1939
|
+
statusRun: EStatusAccountSocialRun;
|
|
1940
|
+
statusConnectDevice: EStatusConnectDevice;
|
|
1941
|
+
noteConnectDevice: string;
|
|
1942
|
+
currentActiveTime: Date;
|
|
1943
|
+
lastActiveTime: Date;
|
|
1944
|
+
promptAvatar: string;
|
|
1945
|
+
avatar: string | IFile;
|
|
1946
|
+
statusChangeAvatar: EStatusChangeInfo;
|
|
1947
|
+
promptCover: string;
|
|
1948
|
+
cover: string | IFile;
|
|
1949
|
+
statusChangeCover: EStatusChangeInfo;
|
|
1950
|
+
bio: string;
|
|
1951
|
+
statusChangeBio: EStatusChangeInfo;
|
|
1952
|
+
links: string[];
|
|
1953
|
+
typeAccountSetting: ETypeAccountInstagramSetting;
|
|
1954
|
+
statusAccountSetting: EStatusAccountSocialSetting;
|
|
1955
|
+
oldUsername: string;
|
|
1956
|
+
newUsername: string;
|
|
1957
|
+
statusChangeUsername: EStatusChangeInfo;
|
|
1958
|
+
oldFullname: string;
|
|
1959
|
+
newFullname: string;
|
|
1960
|
+
statusChangeFullname: EStatusChangeInfo;
|
|
1961
|
+
oldEmail: string;
|
|
1962
|
+
newEmail: string;
|
|
1963
|
+
statusChangeEmail: EStatusChangeInfo;
|
|
1964
|
+
oldCode2FA: string;
|
|
1965
|
+
newCode2FA: string;
|
|
1966
|
+
statusChange2fa: EStatusChangeInfo;
|
|
1967
|
+
oldPassword: string;
|
|
1968
|
+
newPassword: string;
|
|
1969
|
+
statusChangePassword: EStatusChangeInfo;
|
|
1970
|
+
statusLogin: EStatusLoginAccountSocial;
|
|
1971
|
+
email: string;
|
|
1972
|
+
emailPassword: string;
|
|
1973
|
+
email2FA: string;
|
|
1974
|
+
emailReceiver: string;
|
|
1975
|
+
statusLoginEmail: EStatusLoginAccountSocial;
|
|
1976
|
+
nameAppClone: string;
|
|
1977
|
+
packageApp: string;
|
|
1848
1978
|
note: string;
|
|
1849
1979
|
}
|
|
1850
1980
|
|
|
1851
|
-
interface
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1981
|
+
interface IInstagramAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
1982
|
+
group: IInstagramAccountGroup | string;
|
|
1983
|
+
typeSocial: ETypeSocial;
|
|
1984
|
+
accountSocialSync: IInstagramAccountRun;
|
|
1985
|
+
timeImport: Date;
|
|
1986
|
+
statusImport: string;
|
|
1987
|
+
sheetImport: string | ISheetImport;
|
|
1988
|
+
sheetUrl: string;
|
|
1989
|
+
sheetName: string;
|
|
1990
|
+
accountID: string;
|
|
1991
|
+
statusSyncAccount: EStatusSyncAccountSocial;
|
|
1992
|
+
timeSyncAccount: Date;
|
|
1993
|
+
accountDeviceType: string;
|
|
1994
|
+
accountDeviceName: string;
|
|
1995
|
+
idea: string | IManagerWork;
|
|
1996
|
+
niche: string | IManagerWork;
|
|
1997
|
+
pc: IPC | string;
|
|
1998
|
+
deviceKey: string;
|
|
1999
|
+
device: IDevice | string;
|
|
2000
|
+
statusLogin: EStatusLoginAccountSocial;
|
|
2001
|
+
timeLogin: Date;
|
|
2002
|
+
promptAvatar: string;
|
|
2003
|
+
avatar: string | IFile;
|
|
2004
|
+
statusChangeAvatar: EStatusChangeInfo;
|
|
2005
|
+
timeChangeAvatar: Date;
|
|
2006
|
+
promptCover: string;
|
|
2007
|
+
cover: string | IFile;
|
|
2008
|
+
statusChangeCover: EStatusChangeInfo;
|
|
2009
|
+
timeChangeCover: Date;
|
|
2010
|
+
oldUsername: string;
|
|
2011
|
+
newUsername: string;
|
|
2012
|
+
statusChangeUsername: EStatusChangeInfo;
|
|
2013
|
+
timeChangeUserName: Date;
|
|
2014
|
+
oldFullname: string;
|
|
2015
|
+
newFullname: string;
|
|
2016
|
+
statusChangeFullname: EStatusChangeInfo;
|
|
2017
|
+
timeChangeFullname: Date;
|
|
2018
|
+
oldEmail: string;
|
|
2019
|
+
newEmail: string;
|
|
2020
|
+
statusChangeEmail: EStatusChangeInfo;
|
|
2021
|
+
timeChangeEmail: Date;
|
|
2022
|
+
oldCode2FA: string;
|
|
2023
|
+
newCode2FA: string;
|
|
2024
|
+
statusChange2fa: EStatusChangeInfo;
|
|
2025
|
+
timeChange2FA: Date;
|
|
2026
|
+
oldPassword: string;
|
|
2027
|
+
newPassword: string;
|
|
2028
|
+
statusChangePassword: EStatusChangeInfo;
|
|
2029
|
+
timeChangePassword: Date;
|
|
2030
|
+
email: string;
|
|
2031
|
+
emailPassword: string;
|
|
2032
|
+
email2FA: string;
|
|
2033
|
+
emailReceiver: string;
|
|
2034
|
+
statusLoginEmail: EStatusLoginAccountSocial;
|
|
2035
|
+
timeLoginEmail: Date;
|
|
2036
|
+
totalLinkBio: string[];
|
|
2037
|
+
statusChangeBio: string;
|
|
2038
|
+
timeChangeBio: Date;
|
|
2039
|
+
typeAccountSetting: ETypeAccountInstagramSetting;
|
|
2040
|
+
statusAccountSetting: EStatusAccountSocialSetting;
|
|
2041
|
+
timeChangeAccountSetting: Date;
|
|
2042
|
+
statusConnectDevice: EStatusConnectDevice;
|
|
2043
|
+
noteConnectDevice: string;
|
|
1878
2044
|
}
|
|
1879
2045
|
|
|
1880
2046
|
interface ISheetsTool extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1901,7 +2067,7 @@ interface ITaskThreadsPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1901
2067
|
device: string | IDevice;
|
|
1902
2068
|
idea: string | IManagerWork;
|
|
1903
2069
|
niche: string | IManagerWork;
|
|
1904
|
-
account:
|
|
2070
|
+
account: IThreadsAccountRun | string;
|
|
1905
2071
|
sheetTool: ISheetsTool | string;
|
|
1906
2072
|
status: EStatusTaskToolSocials;
|
|
1907
2073
|
note: string;
|
|
@@ -1930,7 +2096,7 @@ interface ITaskThreadsFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1930
2096
|
device: string | IDevice;
|
|
1931
2097
|
idea: string | IManagerWork;
|
|
1932
2098
|
niche: string | IManagerWork;
|
|
1933
|
-
account:
|
|
2099
|
+
account: IThreadsAccountRun | string;
|
|
1934
2100
|
sheetTool: ISheetsTool | string;
|
|
1935
2101
|
status: EStatusTaskToolSocials;
|
|
1936
2102
|
note: string;
|
|
@@ -1952,7 +2118,7 @@ interface ITaskThreadsReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1952
2118
|
device: string | IDevice;
|
|
1953
2119
|
idea: string | IManagerWork;
|
|
1954
2120
|
niche: string | IManagerWork;
|
|
1955
|
-
account:
|
|
2121
|
+
account: IThreadsAccountRun | string;
|
|
1956
2122
|
sheetTool: ISheetsTool | string;
|
|
1957
2123
|
status: EStatusTaskToolSocials;
|
|
1958
2124
|
note: string;
|
|
@@ -1986,7 +2152,7 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1986
2152
|
device: string | IDevice;
|
|
1987
2153
|
idea: string | IManagerWork;
|
|
1988
2154
|
niche: string | IManagerWork;
|
|
1989
|
-
account:
|
|
2155
|
+
account: IInstagramAccountRun | string;
|
|
1990
2156
|
sheetTool: ISheetsTool | string;
|
|
1991
2157
|
status: EStatusTaskToolSocials;
|
|
1992
2158
|
note: string;
|
|
@@ -2011,7 +2177,7 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2011
2177
|
device: string | IDevice;
|
|
2012
2178
|
idea: string | IManagerWork;
|
|
2013
2179
|
niche: string | IManagerWork;
|
|
2014
|
-
account:
|
|
2180
|
+
account: IInstagramAccountRun | string;
|
|
2015
2181
|
sheetTool: ISheetsTool | string;
|
|
2016
2182
|
status: EStatusTaskToolSocials;
|
|
2017
2183
|
note: string;
|
|
@@ -2051,7 +2217,7 @@ interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2051
2217
|
device: string | IDevice;
|
|
2052
2218
|
idea: string | IManagerWork;
|
|
2053
2219
|
niche: string | IManagerWork;
|
|
2054
|
-
account:
|
|
2220
|
+
account: IInstagramAccountRun | string;
|
|
2055
2221
|
sheetTool: ISheetsTool | string;
|
|
2056
2222
|
status: EStatusTaskToolSocials;
|
|
2057
2223
|
note: string;
|
|
@@ -2073,7 +2239,7 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2073
2239
|
device: string | IDevice;
|
|
2074
2240
|
idea: string | IManagerWork;
|
|
2075
2241
|
niche: string | IManagerWork;
|
|
2076
|
-
account:
|
|
2242
|
+
account: IInstagramAccountRun | string;
|
|
2077
2243
|
sheetTool: ISheetsTool | string;
|
|
2078
2244
|
status: EStatusTaskToolSocials;
|
|
2079
2245
|
note: string;
|
|
@@ -2124,7 +2290,7 @@ interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2124
2290
|
device: string | IDevice;
|
|
2125
2291
|
idea: string | IManagerWork;
|
|
2126
2292
|
niche: string | IManagerWork;
|
|
2127
|
-
account:
|
|
2293
|
+
account: IInstagramAccountRun | string;
|
|
2128
2294
|
sheetTool: ISheetsTool | string;
|
|
2129
2295
|
status: EStatusTaskToolSocials;
|
|
2130
2296
|
note: string;
|
|
@@ -2151,7 +2317,7 @@ interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2151
2317
|
device: string | IDevice;
|
|
2152
2318
|
idea: string | IManagerWork;
|
|
2153
2319
|
niche: string | IManagerWork;
|
|
2154
|
-
account:
|
|
2320
|
+
account: IInstagramAccountRun | string;
|
|
2155
2321
|
sheetTool: ISheetsTool | string;
|
|
2156
2322
|
status: EStatusTaskToolSocials;
|
|
2157
2323
|
note: string;
|
|
@@ -2178,9 +2344,9 @@ type TaskTypeThreads = 'Post' | 'ReplyComment' | 'Follow';
|
|
|
2178
2344
|
interface ITaskToolMonitor extends IBaseModel, ITrackingModel<IUser> {
|
|
2179
2345
|
deviceKey: string;
|
|
2180
2346
|
typeSocial: ETypeSocial;
|
|
2347
|
+
accountSocialId: string;
|
|
2181
2348
|
taskType: TaskTypeInstagram | TaskTypeThreads;
|
|
2182
2349
|
taskId: string;
|
|
2183
|
-
account: string | IAccount;
|
|
2184
2350
|
sheetTool: string | ISheetsTool;
|
|
2185
2351
|
timeExecute: Date;
|
|
2186
2352
|
keyTimeSetting: string;
|
|
@@ -2241,7 +2407,8 @@ interface ITaskAIImageVoiceCanva extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2241
2407
|
sheetName: string;
|
|
2242
2408
|
rowID: string;
|
|
2243
2409
|
row: number;
|
|
2244
|
-
|
|
2410
|
+
typeSocial: ETypeSocial;
|
|
2411
|
+
accountSocialId: string;
|
|
2245
2412
|
typeRatioImage: ETypeRatioImage;
|
|
2246
2413
|
channelImage: string | IAccountAIImageChannel;
|
|
2247
2414
|
accountAIImageInfo: string | IAccountAIImageInfo;
|
|
@@ -2339,7 +2506,6 @@ interface IVoiceSettingDelay extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2339
2506
|
vsd_timeDelay: number;
|
|
2340
2507
|
}
|
|
2341
2508
|
|
|
2342
|
-
type index$5_IAccount = IAccount;
|
|
2343
2509
|
type index$5_IAccountAIContent = IAccountAIContent;
|
|
2344
2510
|
type index$5_IAccountAIContentChannel = IAccountAIContentChannel;
|
|
2345
2511
|
type index$5_IAccountAIContentGroup = IAccountAIContentGroup;
|
|
@@ -2362,16 +2528,17 @@ type index$5_IAccountEmail = IAccountEmail;
|
|
|
2362
2528
|
type index$5_IAccountEmailProxy = IAccountEmailProxy;
|
|
2363
2529
|
type index$5_IAccountEmailTag = IAccountEmailTag;
|
|
2364
2530
|
type index$5_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
2365
|
-
type index$5_IAccountRaw = IAccountRaw;
|
|
2366
2531
|
type index$5_IAccountVPN = IAccountVPN;
|
|
2367
2532
|
type index$5_IAccountVPS = IAccountVPS;
|
|
2368
2533
|
type index$5_IAccountVPSGroup = IAccountVPSGroup;
|
|
2369
|
-
type index$5_IAccountsGroup = IAccountsGroup;
|
|
2370
2534
|
type index$5_IDevice = IDevice;
|
|
2371
2535
|
type index$5_IDeviceSettingForAccount = IDeviceSettingForAccount;
|
|
2372
2536
|
type index$5_IDeviceSettingForCHPlay = IDeviceSettingForCHPlay;
|
|
2373
2537
|
type index$5_IDeviceSettingForProxy = IDeviceSettingForProxy;
|
|
2374
2538
|
type index$5_IDeviceSettingForVPN = IDeviceSettingForVPN;
|
|
2539
|
+
type index$5_IInstagramAccountGroup = IInstagramAccountGroup;
|
|
2540
|
+
type index$5_IInstagramAccountRaw = IInstagramAccountRaw;
|
|
2541
|
+
type index$5_IInstagramAccountRun = IInstagramAccountRun;
|
|
2375
2542
|
type index$5_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
|
|
2376
2543
|
type index$5_IInstagramHistoryChangeCreate = IInstagramHistoryChangeCreate;
|
|
2377
2544
|
type index$5_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
|
@@ -2386,6 +2553,9 @@ type index$5_IManagerSheetGroup = IManagerSheetGroup;
|
|
|
2386
2553
|
type index$5_IPC = IPC;
|
|
2387
2554
|
type index$5_IProxy = IProxy;
|
|
2388
2555
|
type index$5_ISheetsTool = ISheetsTool;
|
|
2556
|
+
type index$5_IThreadsAccountGroup = IThreadsAccountGroup;
|
|
2557
|
+
type index$5_IThreadsAccountRaw = IThreadsAccountRaw;
|
|
2558
|
+
type index$5_IThreadsAccountRun = IThreadsAccountRun;
|
|
2389
2559
|
type index$5_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
|
|
2390
2560
|
type index$5_IThreadsHistoryChangeCreate = IThreadsHistoryChangeCreate;
|
|
2391
2561
|
type index$5_IThreadsHistoryGroup = IThreadsHistoryGroup;
|
|
@@ -2394,46 +2564,7 @@ type index$5_IVoiceLanguage = IVoiceLanguage;
|
|
|
2394
2564
|
type index$5_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
2395
2565
|
type index$5_IVoiceStores = IVoiceStores;
|
|
2396
2566
|
declare namespace index$5 {
|
|
2397
|
-
export { type index$
|
|
2398
|
-
}
|
|
2399
|
-
|
|
2400
|
-
interface IHistoryTaskCanva extends IBaseModel, ITrackingModel<IUser> {
|
|
2401
|
-
sheetID: string;
|
|
2402
|
-
sheetUrl: string;
|
|
2403
|
-
sheetName: string;
|
|
2404
|
-
rowID: string;
|
|
2405
|
-
row: number;
|
|
2406
|
-
accountSocial: string | IAccount;
|
|
2407
|
-
typePost: string;
|
|
2408
|
-
titlePool: string;
|
|
2409
|
-
pool1: string;
|
|
2410
|
-
pool2: string;
|
|
2411
|
-
pool3: string;
|
|
2412
|
-
textFirstPage2: string;
|
|
2413
|
-
textSecondPage2: string;
|
|
2414
|
-
textPage6: string;
|
|
2415
|
-
linkAddHistory: string;
|
|
2416
|
-
nicheLinkCategory: string;
|
|
2417
|
-
styleName: string;
|
|
2418
|
-
backgroundForPage3: string;
|
|
2419
|
-
backgroundForPage4: string;
|
|
2420
|
-
backgroundForPage5: string;
|
|
2421
|
-
backgroundForPage6: string;
|
|
2422
|
-
effectAudioThumbnail: string;
|
|
2423
|
-
effectAudioPage345: string;
|
|
2424
|
-
bgRemoveBackground345: string;
|
|
2425
|
-
fontText1: string;
|
|
2426
|
-
fontText2: string;
|
|
2427
|
-
linkCanvaScript: string;
|
|
2428
|
-
linkCanvaVideo: string;
|
|
2429
|
-
linkCanvaImageThumb: string;
|
|
2430
|
-
linkCanvaImage1: string;
|
|
2431
|
-
linkCanvaImage2: string;
|
|
2432
|
-
linkCanvaImage3: string;
|
|
2433
|
-
linkCanvaImage4: string;
|
|
2434
|
-
linkCanvaImage5: string;
|
|
2435
|
-
status: EStatusTaskCanva;
|
|
2436
|
-
note: string;
|
|
2567
|
+
export { type index$5_IAccountAIContent as IAccountAIContent, type index$5_IAccountAIContentChannel as IAccountAIContentChannel, type index$5_IAccountAIContentGroup as IAccountAIContentGroup, type index$5_IAccountAIContentInfo as IAccountAIContentInfo, type index$5_IAccountAIContentTag as IAccountAIContentTag, type index$5_IAccountAIImage as IAccountAIImage, type index$5_IAccountAIImageChannel as IAccountAIImageChannel, type index$5_IAccountAIImageGroup as IAccountAIImageGroup, type index$5_IAccountAIImageInfo as IAccountAIImageInfo, type index$5_IAccountAIImageTag as IAccountAIImageTag, type index$5_IAccountAIVoice as IAccountAIVoice, type index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$5_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$5_IAccountCanva as IAccountCanva, type index$5_IAccountDrive as IAccountDrive, type index$5_IAccountEmail as IAccountEmail, type index$5_IAccountEmailProxy as IAccountEmailProxy, type index$5_IAccountEmailTag as IAccountEmailTag, type index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$5_IAccountVPN as IAccountVPN, type index$5_IAccountVPS as IAccountVPS, type index$5_IAccountVPSGroup as IAccountVPSGroup, type index$5_IDevice as IDevice, type index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$5_IDeviceSettingForCHPlay as IDeviceSettingForCHPlay, type index$5_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$5_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$5_IInstagramAccountGroup as IInstagramAccountGroup, type index$5_IInstagramAccountRaw as IInstagramAccountRaw, type index$5_IInstagramAccountRun as IInstagramAccountRun, type index$5_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$5_IInstagramHistoryChangeCreate as IInstagramHistoryChangeCreate, type index$5_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$5_IManagerImageAI as IManagerImageAI, type index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$5_IManagerSheet as IManagerSheet, type index$5_IManagerSheetChildren as IManagerSheetChildren, type index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$5_IManagerSheetGroup as IManagerSheetGroup, type index$5_IPC as IPC, type index$5_IProxy as IProxy, type index$5_ISheetsTool as ISheetsTool, type index$5_IThreadsAccountGroup as IThreadsAccountGroup, type index$5_IThreadsAccountRaw as IThreadsAccountRaw, type index$5_IThreadsAccountRun as IThreadsAccountRun, type index$5_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$5_IThreadsHistoryChangeCreate as IThreadsHistoryChangeCreate, type index$5_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$5_IVoiceGenerated as IVoiceGenerated, type index$5_IVoiceLanguage as IVoiceLanguage, type index$5_IVoiceSettingDelay as IVoiceSettingDelay, type index$5_IVoiceStores as IVoiceStores, index$6 as TaskBrowsers, index$7 as TaskPhones };
|
|
2437
2568
|
}
|
|
2438
2569
|
|
|
2439
2570
|
interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -2442,7 +2573,8 @@ interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2442
2573
|
sheetName: string;
|
|
2443
2574
|
rowID: string;
|
|
2444
2575
|
row: number;
|
|
2445
|
-
|
|
2576
|
+
typeSocial: ETypeSocial;
|
|
2577
|
+
accountSocialId: string;
|
|
2446
2578
|
typeRatioImage: ETypeRatioImage;
|
|
2447
2579
|
channelImage: string | IAccountAIImageChannel;
|
|
2448
2580
|
accountEmailImage: string | IAccountEmail;
|
|
@@ -2470,7 +2602,8 @@ interface IHistoryTaskAIVoice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2470
2602
|
sheetName: string;
|
|
2471
2603
|
rowID: string;
|
|
2472
2604
|
row: number;
|
|
2473
|
-
|
|
2605
|
+
typeSocial: ETypeSocial;
|
|
2606
|
+
accountSocialId: string;
|
|
2474
2607
|
channelVoice: string | IAccountAIVoiceChannel;
|
|
2475
2608
|
accountEmailVoice: string | IAccountEmail;
|
|
2476
2609
|
accountAIVoiceInfo: string | IAccountAIVoiceInfo;
|
|
@@ -2509,7 +2642,7 @@ interface IThreadsHistoryPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2509
2642
|
niche: string | IManagerWork;
|
|
2510
2643
|
pc: string | IPC;
|
|
2511
2644
|
device: IDevice | string;
|
|
2512
|
-
account:
|
|
2645
|
+
account: IThreadsAccountRun | string;
|
|
2513
2646
|
url: string;
|
|
2514
2647
|
photosUrl: string[];
|
|
2515
2648
|
videosUrl: string[];
|
|
@@ -2532,7 +2665,7 @@ interface IThreadsHistoryInteractFollow extends IBaseModel, ITrackingModel<IUser
|
|
|
2532
2665
|
niche: string | IManagerWork;
|
|
2533
2666
|
pc: string | IPC;
|
|
2534
2667
|
device: IDevice | string;
|
|
2535
|
-
account:
|
|
2668
|
+
account: IThreadsAccountRun | string;
|
|
2536
2669
|
follower: number;
|
|
2537
2670
|
following: number;
|
|
2538
2671
|
status: EStatusExecuteCommon;
|
|
@@ -2546,7 +2679,7 @@ interface IThreadsHistoryInteractReplyComment extends IBaseModel, ITrackingModel
|
|
|
2546
2679
|
niche: string | IManagerWork;
|
|
2547
2680
|
pc: string | IPC;
|
|
2548
2681
|
device: IDevice | string;
|
|
2549
|
-
account:
|
|
2682
|
+
account: IThreadsAccountRun | string;
|
|
2550
2683
|
content: string;
|
|
2551
2684
|
linkPost: string;
|
|
2552
2685
|
userLink: string;
|
|
@@ -2561,7 +2694,7 @@ interface IThreadsSettingPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2561
2694
|
niche: string | IManagerWork;
|
|
2562
2695
|
pc: string | IPC;
|
|
2563
2696
|
device: IDevice | string;
|
|
2564
|
-
account:
|
|
2697
|
+
account: IThreadsAccountRun | string;
|
|
2565
2698
|
listRunTimes: Array<{
|
|
2566
2699
|
typePost: string;
|
|
2567
2700
|
listTimes: Array<string>;
|
|
@@ -2579,7 +2712,7 @@ interface IThreadsSettingInteractFollow extends IBaseModel, ITrackingModel<IUser
|
|
|
2579
2712
|
idea: string | IManagerWork;
|
|
2580
2713
|
niche: string | IManagerWork;
|
|
2581
2714
|
device: IDevice | string;
|
|
2582
|
-
account:
|
|
2715
|
+
account: IThreadsAccountRun | string;
|
|
2583
2716
|
listRunTimes: Array<Array<string>>;
|
|
2584
2717
|
dayOfWeeks: Array<string>;
|
|
2585
2718
|
timeExecuteForOperationFrom: number;
|
|
@@ -2622,7 +2755,7 @@ interface IThreadsSettingInteractReplyComment extends IBaseModel, ITrackingModel
|
|
|
2622
2755
|
idea: string | IManagerWork;
|
|
2623
2756
|
niche: string | IManagerWork;
|
|
2624
2757
|
device: IDevice | string;
|
|
2625
|
-
account:
|
|
2758
|
+
account: IThreadsAccountRun | string;
|
|
2626
2759
|
dayOfWeeks: Array<string>;
|
|
2627
2760
|
listRunTimes: Array<Array<string>>;
|
|
2628
2761
|
timeExecuteForOperationFrom: number;
|
|
@@ -2654,7 +2787,7 @@ interface IInstagramHistoryPostHighLight extends IBaseModel, ITrackingTimeScript
|
|
|
2654
2787
|
idea: string | IManagerWork;
|
|
2655
2788
|
niche: string | IManagerWork;
|
|
2656
2789
|
device: IDevice | string;
|
|
2657
|
-
account:
|
|
2790
|
+
account: IInstagramAccountRun | string;
|
|
2658
2791
|
status: EStatusExecuteCommon;
|
|
2659
2792
|
statusDetail: string;
|
|
2660
2793
|
}
|
|
@@ -2677,7 +2810,7 @@ interface IInstagramHistoryPostNew extends IBaseModel, ITrackingTimeScript, ITra
|
|
|
2677
2810
|
idea: string | IManagerWork;
|
|
2678
2811
|
niche: string | IManagerWork;
|
|
2679
2812
|
device: IDevice | string;
|
|
2680
|
-
account:
|
|
2813
|
+
account: IInstagramAccountRun | string;
|
|
2681
2814
|
status: EStatusExecuteCommon;
|
|
2682
2815
|
statusDetail: string;
|
|
2683
2816
|
}
|
|
@@ -2700,7 +2833,7 @@ interface IInstagramHistoryPostSquare extends IBaseModel, ITrackingTimeScript, I
|
|
|
2700
2833
|
idea: string | IManagerWork;
|
|
2701
2834
|
niche: string | IManagerWork;
|
|
2702
2835
|
device: IDevice | string;
|
|
2703
|
-
account:
|
|
2836
|
+
account: IInstagramAccountRun | string;
|
|
2704
2837
|
status: EStatusExecuteCommon;
|
|
2705
2838
|
statusDetail: string;
|
|
2706
2839
|
}
|
|
@@ -2725,7 +2858,7 @@ interface IInstagramHistoryPostReel extends IBaseModel, ITrackingTimeScript, ITr
|
|
|
2725
2858
|
idea: string | IManagerWork;
|
|
2726
2859
|
niche: string | IManagerWork;
|
|
2727
2860
|
device: IDevice | string;
|
|
2728
|
-
account:
|
|
2861
|
+
account: IInstagramAccountRun | string;
|
|
2729
2862
|
status: EStatusExecuteCommon;
|
|
2730
2863
|
statusDetail: string;
|
|
2731
2864
|
}
|
|
@@ -2744,7 +2877,7 @@ interface IInstagramHistoryPostStory extends IBaseModel, ITrackingTimeScript, IT
|
|
|
2744
2877
|
idea: string | IManagerWork;
|
|
2745
2878
|
niche: string | IManagerWork;
|
|
2746
2879
|
device: IDevice | string;
|
|
2747
|
-
account:
|
|
2880
|
+
account: IInstagramAccountRun | string;
|
|
2748
2881
|
status: EStatusExecuteCommon;
|
|
2749
2882
|
statusDetail: string;
|
|
2750
2883
|
}
|
|
@@ -2754,7 +2887,7 @@ interface IInstagramSettingInteractExplore extends IBaseModel, ITrackingModel<IU
|
|
|
2754
2887
|
idea: string | IManagerWork;
|
|
2755
2888
|
niche: string | IManagerWork;
|
|
2756
2889
|
device: IDevice | string;
|
|
2757
|
-
account:
|
|
2890
|
+
account: IInstagramAccountRun | string;
|
|
2758
2891
|
dayOfWeeks: Array<string>;
|
|
2759
2892
|
listRunTimes: Array<Array<string>>;
|
|
2760
2893
|
maxViewPerDay: number;
|
|
@@ -2778,7 +2911,7 @@ interface IInstagramSettingInteractFollow extends IBaseModel, ITrackingModel<IUs
|
|
|
2778
2911
|
idea: string | IManagerWork;
|
|
2779
2912
|
niche: string | IManagerWork;
|
|
2780
2913
|
device: IDevice | string;
|
|
2781
|
-
account:
|
|
2914
|
+
account: IInstagramAccountRun | string;
|
|
2782
2915
|
listRunTimes: Array<Array<string>>;
|
|
2783
2916
|
dayOfWeeks: Array<string>;
|
|
2784
2917
|
timeExecuteForOperationFrom: number;
|
|
@@ -2821,7 +2954,7 @@ interface IInstagramSettingInteractReel extends IBaseModel, ITrackingModel<IUser
|
|
|
2821
2954
|
idea: string | IManagerWork;
|
|
2822
2955
|
niche: string | IManagerWork;
|
|
2823
2956
|
device: IDevice | string;
|
|
2824
|
-
account:
|
|
2957
|
+
account: IInstagramAccountRun | string;
|
|
2825
2958
|
dayOfWeeks: Array<string>;
|
|
2826
2959
|
listRunTimes: Array<Array<string>>;
|
|
2827
2960
|
limitViewPerDayFrom: number;
|
|
@@ -2844,7 +2977,7 @@ interface IInstagramSettingInteractReplyComment extends IBaseModel, ITrackingMod
|
|
|
2844
2977
|
idea: string | IManagerWork;
|
|
2845
2978
|
niche: string | IManagerWork;
|
|
2846
2979
|
device: IDevice | string;
|
|
2847
|
-
account:
|
|
2980
|
+
account: IInstagramAccountRun | string;
|
|
2848
2981
|
dayOfWeeks: Array<string>;
|
|
2849
2982
|
listRunTimes: Array<Array<string>>;
|
|
2850
2983
|
timeExecuteForOperationFrom: number;
|
|
@@ -2871,7 +3004,7 @@ interface IInstagramSettingInteractReplyMessage extends IBaseModel, ITrackingMod
|
|
|
2871
3004
|
idea: string | IManagerWork;
|
|
2872
3005
|
niche: string | IManagerWork;
|
|
2873
3006
|
device: IDevice | string;
|
|
2874
|
-
account:
|
|
3007
|
+
account: IInstagramAccountRun | string;
|
|
2875
3008
|
listRunTimes: Array<Array<string>>;
|
|
2876
3009
|
dayOfWeeks: Array<string>;
|
|
2877
3010
|
timeExecuteForOperationFrom: number;
|
|
@@ -2893,7 +3026,7 @@ interface IInstagramSettingInteractStory extends IBaseModel, ITrackingModel<IUse
|
|
|
2893
3026
|
idea: string | IManagerWork;
|
|
2894
3027
|
niche: string | IManagerWork;
|
|
2895
3028
|
device: IDevice | string;
|
|
2896
|
-
account:
|
|
3029
|
+
account: IInstagramAccountRun | string;
|
|
2897
3030
|
dayOfWeeks: Array<string>;
|
|
2898
3031
|
listRunTimes: Array<Array<string>>;
|
|
2899
3032
|
timeExecuteForOperationFrom: number;
|
|
@@ -2926,7 +3059,7 @@ interface IInstagramSettingInteractUnFollow extends IBaseModel, ITrackingModel<I
|
|
|
2926
3059
|
idea: string | IManagerWork;
|
|
2927
3060
|
niche: string | IManagerWork;
|
|
2928
3061
|
device: IDevice | string;
|
|
2929
|
-
account:
|
|
3062
|
+
account: IInstagramAccountRun | string;
|
|
2930
3063
|
dayOfWeeks: Array<string>;
|
|
2931
3064
|
listRunTimes: Array<Array<string>>;
|
|
2932
3065
|
timeExecuteForOperationFrom: number;
|
|
@@ -2952,7 +3085,7 @@ interface IInstagramSettingPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2952
3085
|
idea: string | IManagerWork;
|
|
2953
3086
|
niche: string | IManagerWork;
|
|
2954
3087
|
device: IDevice | string;
|
|
2955
|
-
account:
|
|
3088
|
+
account: IInstagramAccountRun | string;
|
|
2956
3089
|
listRunTimes: Array<{
|
|
2957
3090
|
typePost: string;
|
|
2958
3091
|
listTimes: Array<string>;
|
|
@@ -2973,7 +3106,7 @@ interface IInstagramHistoryInteractReplyComment extends IBaseModel, ITrackingTim
|
|
|
2973
3106
|
idea: string | IManagerWork;
|
|
2974
3107
|
niche: string | IManagerWork;
|
|
2975
3108
|
device: IDevice | string;
|
|
2976
|
-
account:
|
|
3109
|
+
account: IInstagramAccountRun | string;
|
|
2977
3110
|
pc: string | IPC;
|
|
2978
3111
|
status: EStatusExecuteCommon;
|
|
2979
3112
|
statusDetail: string;
|
|
@@ -2983,7 +3116,7 @@ interface IInstagramHistoryInteractReel extends IBaseModel, ITrackingTimeScript,
|
|
|
2983
3116
|
idea: string | IManagerWork;
|
|
2984
3117
|
niche: string | IManagerWork;
|
|
2985
3118
|
device: IDevice | string;
|
|
2986
|
-
account:
|
|
3119
|
+
account: IInstagramAccountRun | string;
|
|
2987
3120
|
numberLike: number;
|
|
2988
3121
|
minutesExecute: number;
|
|
2989
3122
|
isLike: boolean;
|
|
@@ -2996,7 +3129,7 @@ interface IInstagramHistoryInteractStory extends IBaseModel, ITrackingTimeScript
|
|
|
2996
3129
|
idea: string | IManagerWork;
|
|
2997
3130
|
niche: string | IManagerWork;
|
|
2998
3131
|
device: IDevice | string;
|
|
2999
|
-
account:
|
|
3132
|
+
account: IInstagramAccountRun | string;
|
|
3000
3133
|
numberLike: number;
|
|
3001
3134
|
minutesExecute: number;
|
|
3002
3135
|
numberUsersSentMess: number;
|
|
@@ -3015,7 +3148,7 @@ interface IInstagramHistoryInteractExplore extends IBaseModel, ITrackingTimeScri
|
|
|
3015
3148
|
idea: string | IManagerWork;
|
|
3016
3149
|
niche: string | IManagerWork;
|
|
3017
3150
|
device: IDevice | string;
|
|
3018
|
-
account:
|
|
3151
|
+
account: IInstagramAccountRun | string;
|
|
3019
3152
|
pc: string | IPC;
|
|
3020
3153
|
status: EStatusExecuteCommon;
|
|
3021
3154
|
statusDetail: string;
|
|
@@ -3031,7 +3164,7 @@ interface IInstagramHistoryInteractReplyMessage extends IBaseModel, ITrackingTim
|
|
|
3031
3164
|
idea: string | IManagerWork;
|
|
3032
3165
|
niche: string | IManagerWork;
|
|
3033
3166
|
device: IDevice | string;
|
|
3034
|
-
account:
|
|
3167
|
+
account: IInstagramAccountRun | string;
|
|
3035
3168
|
pc: string | IPC;
|
|
3036
3169
|
status: EStatusExecuteCommon;
|
|
3037
3170
|
statusDetail: string;
|
|
@@ -3041,7 +3174,7 @@ interface IInstagramHistoryInteractFollow extends IBaseModel, ITrackingTimeScrip
|
|
|
3041
3174
|
idea: string | IManagerWork;
|
|
3042
3175
|
niche: string | IManagerWork;
|
|
3043
3176
|
device: IDevice | string;
|
|
3044
|
-
account:
|
|
3177
|
+
account: IInstagramAccountRun | string;
|
|
3045
3178
|
pc: string | IPC;
|
|
3046
3179
|
status: EStatusExecuteCommon;
|
|
3047
3180
|
statusDetail: string;
|
|
@@ -3083,7 +3216,6 @@ declare namespace index$3 {
|
|
|
3083
3216
|
export type { index$3_IIdea as IIdea, index$3_IInstagramHistoryInteractExplore as IInstagramHistoryInteractExplore, index$3_IInstagramHistoryInteractFollow as IInstagramHistoryInteractFollow, index$3_IInstagramHistoryInteractReel as IInstagramHistoryInteractReel, index$3_IInstagramHistoryInteractReplyComment as IInstagramHistoryInteractReplyComment, index$3_IInstagramHistoryInteractReplyMessage as IInstagramHistoryInteractReplyMessage, index$3_IInstagramHistoryInteractStory as IInstagramHistoryInteractStory, index$3_IInstagramHistoryPostHighLight as IInstagramHistoryPostHighLight, index$3_IInstagramHistoryPostNew as IInstagramHistoryPostNew, index$3_IInstagramHistoryPostReel as IInstagramHistoryPostReel, index$3_IInstagramHistoryPostSquare as IInstagramHistoryPostSquare, index$3_IInstagramHistoryPostStory as IInstagramHistoryPostStory, index$3_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, index$3_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, index$3_IInstagramSettingInteractReel as IInstagramSettingInteractReel, index$3_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, index$3_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, index$3_IInstagramSettingInteractStory as IInstagramSettingInteractStory, index$3_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, index$3_IInstagramSettingPost as IInstagramSettingPost, index$3_IInteractSentMessageDetail as IInteractSentMessageDetail, index$3_INiche as INiche, index$3_IThreadsHistoryInteractFollow as IThreadsHistoryInteractFollow, index$3_IThreadsHistoryInteractReplyComment as IThreadsHistoryInteractReplyComment, index$3_IThreadsHistoryPost as IThreadsHistoryPost, index$3_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, index$3_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, index$3_IThreadsSettingPost as IThreadsSettingPost };
|
|
3084
3217
|
}
|
|
3085
3218
|
|
|
3086
|
-
type index$2_IAccount = IAccount;
|
|
3087
3219
|
type index$2_IAccountAIContent = IAccountAIContent;
|
|
3088
3220
|
type index$2_IAccountAIContentChannel = IAccountAIContentChannel;
|
|
3089
3221
|
type index$2_IAccountAIContentGroup = IAccountAIContentGroup;
|
|
@@ -3106,11 +3238,9 @@ type index$2_IAccountEmail = IAccountEmail;
|
|
|
3106
3238
|
type index$2_IAccountEmailProxy = IAccountEmailProxy;
|
|
3107
3239
|
type index$2_IAccountEmailTag = IAccountEmailTag;
|
|
3108
3240
|
type index$2_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
3109
|
-
type index$2_IAccountRaw = IAccountRaw;
|
|
3110
3241
|
type index$2_IAccountVPN = IAccountVPN;
|
|
3111
3242
|
type index$2_IAccountVPS = IAccountVPS;
|
|
3112
3243
|
type index$2_IAccountVPSGroup = IAccountVPSGroup;
|
|
3113
|
-
type index$2_IAccountsGroup = IAccountsGroup;
|
|
3114
3244
|
type index$2_IAuthLogin = IAuthLogin;
|
|
3115
3245
|
type index$2_IAuthResetPassword = IAuthResetPassword;
|
|
3116
3246
|
type index$2_IBaseModel = IBaseModel;
|
|
@@ -3131,6 +3261,9 @@ type index$2_IHistoryTaskAIImage = IHistoryTaskAIImage;
|
|
|
3131
3261
|
type index$2_IHistoryTaskAIVoice = IHistoryTaskAIVoice;
|
|
3132
3262
|
type index$2_IHistoryTaskCanva = IHistoryTaskCanva;
|
|
3133
3263
|
type index$2_IIdea = IIdea;
|
|
3264
|
+
type index$2_IInstagramAccountGroup = IInstagramAccountGroup;
|
|
3265
|
+
type index$2_IInstagramAccountRaw = IInstagramAccountRaw;
|
|
3266
|
+
type index$2_IInstagramAccountRun = IInstagramAccountRun;
|
|
3134
3267
|
type index$2_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
|
|
3135
3268
|
type index$2_IInstagramHistoryChangeCreate = IInstagramHistoryChangeCreate;
|
|
3136
3269
|
type index$2_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
|
@@ -3195,6 +3328,9 @@ type index$2_ITaskJobsGroup = ITaskJobsGroup;
|
|
|
3195
3328
|
type index$2_ITeam = ITeam;
|
|
3196
3329
|
type index$2_ITeamMember = ITeamMember;
|
|
3197
3330
|
type index$2_ITeamRole = ITeamRole;
|
|
3331
|
+
type index$2_IThreadsAccountGroup = IThreadsAccountGroup;
|
|
3332
|
+
type index$2_IThreadsAccountRaw = IThreadsAccountRaw;
|
|
3333
|
+
type index$2_IThreadsAccountRun = IThreadsAccountRun;
|
|
3198
3334
|
type index$2_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
|
|
3199
3335
|
type index$2_IThreadsHistoryChangeCreate = IThreadsHistoryChangeCreate;
|
|
3200
3336
|
type index$2_IThreadsHistoryGroup = IThreadsHistoryGroup;
|
|
@@ -3215,7 +3351,7 @@ type index$2_IVoiceLanguage = IVoiceLanguage;
|
|
|
3215
3351
|
type index$2_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
3216
3352
|
type index$2_IVoiceStores = IVoiceStores;
|
|
3217
3353
|
declare namespace index$2 {
|
|
3218
|
-
export { index$b as Auth, index$c as Common, index$4 as History, type index$
|
|
3354
|
+
export { index$b as Auth, index$c as Common, index$4 as History, type index$2_IAccountAIContent as IAccountAIContent, type index$2_IAccountAIContentChannel as IAccountAIContentChannel, type index$2_IAccountAIContentGroup as IAccountAIContentGroup, type index$2_IAccountAIContentInfo as IAccountAIContentInfo, type index$2_IAccountAIContentTag as IAccountAIContentTag, type index$2_IAccountAIImage as IAccountAIImage, type index$2_IAccountAIImageChannel as IAccountAIImageChannel, type index$2_IAccountAIImageGroup as IAccountAIImageGroup, type index$2_IAccountAIImageInfo as IAccountAIImageInfo, type index$2_IAccountAIImageTag as IAccountAIImageTag, type index$2_IAccountAIVoice as IAccountAIVoice, type index$2_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$2_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$2_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$2_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$2_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$2_IAccountCanva as IAccountCanva, type index$2_IAccountDrive as IAccountDrive, type index$2_IAccountEmail as IAccountEmail, type index$2_IAccountEmailProxy as IAccountEmailProxy, type index$2_IAccountEmailTag as IAccountEmailTag, type index$2_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$2_IAccountVPN as IAccountVPN, type index$2_IAccountVPS as IAccountVPS, type index$2_IAccountVPSGroup as IAccountVPSGroup, type index$2_IAuthLogin as IAuthLogin, type index$2_IAuthResetPassword as IAuthResetPassword, type index$2_IBaseModel as IBaseModel, type index$2_IBlog as IBlog, type index$2_IBlogCategory as IBlogCategory, type index$2_IBlogPermission as IBlogPermission, type index$2_IDepartment as IDepartment, type index$2_IDepartmentRole as IDepartmentRole, type index$2_IDevice as IDevice, type index$2_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$2_IDeviceSettingForCHPlay as IDeviceSettingForCHPlay, type index$2_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$2_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$2_IDomain as IDomain, type index$2_IFile as IFile, type index$2_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$2_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$2_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$2_IHistoryTaskCanva as IHistoryTaskCanva, type index$2_IIdea as IIdea, type index$2_IInstagramAccountGroup as IInstagramAccountGroup, type index$2_IInstagramAccountRaw as IInstagramAccountRaw, type index$2_IInstagramAccountRun as IInstagramAccountRun, type index$2_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$2_IInstagramHistoryChangeCreate as IInstagramHistoryChangeCreate, type index$2_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$2_IInstagramHistoryInteractExplore as IInstagramHistoryInteractExplore, type index$2_IInstagramHistoryInteractFollow as IInstagramHistoryInteractFollow, type index$2_IInstagramHistoryInteractReel as IInstagramHistoryInteractReel, type index$2_IInstagramHistoryInteractReplyComment as IInstagramHistoryInteractReplyComment, type index$2_IInstagramHistoryInteractReplyMessage as IInstagramHistoryInteractReplyMessage, type index$2_IInstagramHistoryInteractStory as IInstagramHistoryInteractStory, type index$2_IInstagramHistoryPostHighLight as IInstagramHistoryPostHighLight, type index$2_IInstagramHistoryPostNew as IInstagramHistoryPostNew, type index$2_IInstagramHistoryPostReel as IInstagramHistoryPostReel, type index$2_IInstagramHistoryPostSquare as IInstagramHistoryPostSquare, type index$2_IInstagramHistoryPostStory as IInstagramHistoryPostStory, type index$2_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$2_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$2_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$2_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$2_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$2_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$2_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$2_IInstagramSettingPost as IInstagramSettingPost, type index$2_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$2_ILark as ILark, type index$2_ILarkTeam as ILarkTeam, type index$2_IManagerImageAI as IManagerImageAI, type index$2_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$2_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$2_IManagerSheet as IManagerSheet, type index$2_IManagerSheetChildren as IManagerSheetChildren, type index$2_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$2_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$2_IManagerSheetGroup as IManagerSheetGroup, type index$2_IManagerWork as IManagerWork, type index$2_IManagerWorkPin as IManagerWorkPin, type index$2_INiche as INiche, type index$2_IOtpConfirm as IOtpConfirm, type index$2_IOtpCreateSession as IOtpCreateSession, type index$2_IOtpSend as IOtpSend, type index$2_IPC as IPC, type index$2_IProxy as IProxy, type index$2_IRole as IRole, type index$2_IRoleFeature as IRoleFeature, type index$2_ISheetImport as ISheetImport, type index$2_ISheetWork as ISheetWork, type index$2_ISheetWorkManager as ISheetWorkManager, type index$2_ISheetWorkPin as ISheetWorkPin, type index$2_ISheetWorksCategory as ISheetWorksCategory, type index$2_ISheetsTool as ISheetsTool, type index$2_ITag as ITag, type index$2_ITaskJob as ITaskJob, type index$2_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$2_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$2_ITaskJobCheckList as ITaskJobCheckList, type index$2_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$2_ITaskJobDiscuss as ITaskJobDiscuss, type index$2_ITaskJobLabel as ITaskJobLabel, type index$2_ITaskJobPermission as ITaskJobPermission, type index$2_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$2_ITaskJobUserPermission as ITaskJobUserPermission, type index$2_ITaskJobsGroup as ITaskJobsGroup, type index$2_ITeam as ITeam, type index$2_ITeamMember as ITeamMember, type index$2_ITeamRole as ITeamRole, type index$2_IThreadsAccountGroup as IThreadsAccountGroup, type index$2_IThreadsAccountRaw as IThreadsAccountRaw, type index$2_IThreadsAccountRun as IThreadsAccountRun, type index$2_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$2_IThreadsHistoryChangeCreate as IThreadsHistoryChangeCreate, type index$2_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$2_IThreadsHistoryInteractFollow as IThreadsHistoryInteractFollow, type index$2_IThreadsHistoryInteractReplyComment as IThreadsHistoryInteractReplyComment, type index$2_IThreadsHistoryPost as IThreadsHistoryPost, type index$2_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$2_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$2_IThreadsSettingPost as IThreadsSettingPost, type index$2_IToken as IToken, type index$2_ITrackingModel as ITrackingModel, type index$2_ITrackingTimeScript as ITrackingTimeScript, type index$2_ITrackingUserAction as ITrackingUserAction, type index$2_IUser as IUser, type index$2_IUserRole as IUserRole, type index$2_IVoiceGenerated as IVoiceGenerated, type index$2_IVoiceLanguage as IVoiceLanguage, type index$2_IVoiceSettingDelay as IVoiceSettingDelay, type index$2_IVoiceStores as IVoiceStores, index$3 as Socials, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, index$a as Web };
|
|
3219
3355
|
}
|
|
3220
3356
|
|
|
3221
3357
|
interface IDataUser {
|
|
@@ -3748,15 +3884,6 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
3748
3884
|
};
|
|
3749
3885
|
}
|
|
3750
3886
|
|
|
3751
|
-
interface IThreadsHistoryGroupDto extends IBaseDto {
|
|
3752
|
-
}
|
|
3753
|
-
|
|
3754
|
-
interface IThreadsHistoryAutoSyncDto extends IBaseDto {
|
|
3755
|
-
}
|
|
3756
|
-
|
|
3757
|
-
interface IThreadsHistoryChangeCreateDto extends IBaseDto {
|
|
3758
|
-
}
|
|
3759
|
-
|
|
3760
3887
|
interface IInstagramHistoryGroupDto extends IBaseDto {
|
|
3761
3888
|
}
|
|
3762
3889
|
|
|
@@ -3766,315 +3893,9 @@ interface IInstagramHistoryAutoSyncDto extends IBaseDto {
|
|
|
3766
3893
|
interface IInstagramHistoryChangeCreateDto extends IBaseDto {
|
|
3767
3894
|
}
|
|
3768
3895
|
|
|
3769
|
-
interface
|
|
3770
|
-
type: ETypeManagerWorkType;
|
|
3771
|
-
pcInfo: {
|
|
3772
|
-
name: string;
|
|
3773
|
-
department: string;
|
|
3774
|
-
leader: string;
|
|
3775
|
-
member: string;
|
|
3776
|
-
};
|
|
3777
|
-
deviceInfo: {
|
|
3778
|
-
key: string;
|
|
3779
|
-
name: string;
|
|
3780
|
-
type: ETypeDeviceOS;
|
|
3781
|
-
typeAppClone: string;
|
|
3782
|
-
nameAppClone: string;
|
|
3783
|
-
nameAppCloneSocial: string;
|
|
3784
|
-
};
|
|
3785
|
-
chPlayInfo: {
|
|
3786
|
-
id: string;
|
|
3787
|
-
email: string;
|
|
3788
|
-
password: string;
|
|
3789
|
-
code2FA: string;
|
|
3790
|
-
emailRecover: string;
|
|
3791
|
-
status: string;
|
|
3792
|
-
};
|
|
3793
|
-
proxyInfo: {
|
|
3794
|
-
id: string;
|
|
3795
|
-
type: ETypeProxy;
|
|
3796
|
-
proxyStr: string;
|
|
3797
|
-
status: string;
|
|
3798
|
-
numberRunDevice: string;
|
|
3799
|
-
};
|
|
3800
|
-
vpnInfo: {
|
|
3801
|
-
id: string;
|
|
3802
|
-
email: string;
|
|
3803
|
-
password: string;
|
|
3804
|
-
code2FA: string;
|
|
3805
|
-
emailRecover: string;
|
|
3806
|
-
type: ETypeAccountVPN;
|
|
3807
|
-
status: string;
|
|
3808
|
-
};
|
|
3809
|
-
totalPosts: number;
|
|
3810
|
-
totalPostFollower: number;
|
|
3811
|
-
totalPostFollowing: number;
|
|
3812
|
-
}
|
|
3813
|
-
interface FilterAccountDto extends IBaseDto, IAccount {
|
|
3814
|
-
deviceType: ETypeDeviceOS;
|
|
3815
|
-
deviceConnectStatus: string;
|
|
3816
|
-
pcAssignment: string;
|
|
3817
|
-
proxyType: ETypeProxy;
|
|
3818
|
-
proxyStatus: string;
|
|
3819
|
-
teamMember: string;
|
|
3820
|
-
vpnType: string;
|
|
3821
|
-
vpnStatus: string;
|
|
3822
|
-
chPlayStatus: string;
|
|
3823
|
-
campaignIdea: string;
|
|
3824
|
-
nicheCategory: string;
|
|
3825
|
-
accountType: string;
|
|
3826
|
-
accountGroup: string;
|
|
3827
|
-
departmentName: string;
|
|
3828
|
-
leaderTeam: string;
|
|
3829
|
-
memberRunDeviceAndRunPC: string;
|
|
3830
|
-
accountIDRange: [number, number];
|
|
3831
|
-
runStatus: string;
|
|
3832
|
-
loginSocialStatus: string;
|
|
3833
|
-
emailLoginStatus: string;
|
|
3834
|
-
createdBy: string;
|
|
3835
|
-
updatedBy: string;
|
|
3836
|
-
accountSettingStatus: string;
|
|
3837
|
-
usernameChangeStatus: string;
|
|
3838
|
-
passwordChangeStatus: string;
|
|
3839
|
-
twoFactorAuthChangeStatus: string;
|
|
3840
|
-
emailChangeStatus: string;
|
|
3841
|
-
runActiveDateRange: [Date, Date];
|
|
3842
|
-
createdDateRange: [Date, Date];
|
|
3843
|
-
updatedDateRange: [Date, Date];
|
|
3844
|
-
}
|
|
3845
|
-
interface FindOverViewAccountDto {
|
|
3846
|
-
totalAccounts: number;
|
|
3847
|
-
totalDevices: number;
|
|
3848
|
-
totalPC: number;
|
|
3849
|
-
totalLeader: number;
|
|
3850
|
-
totalMembers: number;
|
|
3851
|
-
totalAccountGroups: number;
|
|
3852
|
-
totalFileSheetName: number;
|
|
3853
|
-
totalUrlSheetPost: number;
|
|
3854
|
-
totalIdea: number;
|
|
3855
|
-
totalNiche: number;
|
|
3856
|
-
totalDeviceAndroid: number;
|
|
3857
|
-
totalDeviceIOS: number;
|
|
3858
|
-
totalAccountsActive: number;
|
|
3859
|
-
totalAccountsInactive: number;
|
|
3860
|
-
totalAccountsBlocked: number;
|
|
3861
|
-
totalEmailLoginActive: number;
|
|
3862
|
-
totalDeviceConnected: number;
|
|
3863
|
-
totalDeviceError: number;
|
|
3864
|
-
totalPosts: number;
|
|
3865
|
-
totalFollowers: number;
|
|
3866
|
-
totalFollowings: number;
|
|
3867
|
-
totalDepartments: number;
|
|
3868
|
-
}
|
|
3869
|
-
|
|
3870
|
-
interface FindAccountRawDto extends IBaseDto, IAccountRaw {
|
|
3871
|
-
deviceInfo: {
|
|
3872
|
-
key: string;
|
|
3873
|
-
name: string;
|
|
3874
|
-
type: ETypeDeviceOS;
|
|
3875
|
-
typeAppClone: string;
|
|
3876
|
-
nameAppClone: string;
|
|
3877
|
-
nameAppCloneSocial: string;
|
|
3878
|
-
};
|
|
3879
|
-
assignInfo: {
|
|
3880
|
-
department: {
|
|
3881
|
-
id: string;
|
|
3882
|
-
name: string;
|
|
3883
|
-
};
|
|
3884
|
-
leader: {
|
|
3885
|
-
id: string;
|
|
3886
|
-
name: string;
|
|
3887
|
-
};
|
|
3888
|
-
member: {
|
|
3889
|
-
id: string;
|
|
3890
|
-
name: string;
|
|
3891
|
-
};
|
|
3892
|
-
timeUpdate: Date;
|
|
3893
|
-
};
|
|
3894
|
-
type: ETypeManagerWorkType;
|
|
3895
|
-
folderImage: {
|
|
3896
|
-
folderName: string;
|
|
3897
|
-
status: string;
|
|
3898
|
-
time: Date;
|
|
3899
|
-
};
|
|
3900
|
-
}
|
|
3901
|
-
interface AutoFillOverviewAccountRawDto {
|
|
3902
|
-
idea: {
|
|
3903
|
-
colName: string;
|
|
3904
|
-
colSymbol: string;
|
|
3905
|
-
listValsOnCol: string[];
|
|
3906
|
-
};
|
|
3907
|
-
niche: {
|
|
3908
|
-
colName: string;
|
|
3909
|
-
colSymbol: string;
|
|
3910
|
-
listValsOnCol: string[];
|
|
3911
|
-
};
|
|
3912
|
-
accountID: {
|
|
3913
|
-
colName: string;
|
|
3914
|
-
colSymbol: string;
|
|
3915
|
-
listValsOnCol: string[];
|
|
3916
|
-
};
|
|
3917
|
-
oldUsername: {
|
|
3918
|
-
colName: string;
|
|
3919
|
-
colSymbol: string;
|
|
3920
|
-
listValsOnCol: string[];
|
|
3921
|
-
};
|
|
3922
|
-
}
|
|
3923
|
-
interface FilterAccountRawDto extends IBaseDto, IAccountRaw {
|
|
3924
|
-
accountGroup: string;
|
|
3925
|
-
accountType: string;
|
|
3926
|
-
idea: string;
|
|
3927
|
-
niche: string;
|
|
3928
|
-
createdBy: string;
|
|
3929
|
-
updatedBy: string;
|
|
3930
|
-
fileNameSheetImport: string;
|
|
3931
|
-
accountIDRange: [number, number];
|
|
3932
|
-
loginSocialStatus: string;
|
|
3933
|
-
loginEmailStatus: string;
|
|
3934
|
-
accountSettingStatus: string;
|
|
3935
|
-
statusAutoSyncAccount: string;
|
|
3936
|
-
deviceBrand: string;
|
|
3937
|
-
usernameChangeStatus: string;
|
|
3938
|
-
fullNameChangeStatus: string;
|
|
3939
|
-
passwordChangeStatus: string;
|
|
3940
|
-
twoFactorAuthChangeStatus: string;
|
|
3941
|
-
emailChangeStatus: string;
|
|
3942
|
-
avatarStatus: string;
|
|
3943
|
-
coverStatus: string;
|
|
3944
|
-
bioStatus: string;
|
|
3945
|
-
linksStatus: string;
|
|
3946
|
-
hasAvatar: string;
|
|
3947
|
-
hasCover: string;
|
|
3948
|
-
hasBio: string;
|
|
3949
|
-
hasLinks: string;
|
|
3950
|
-
departmentToAssign: string;
|
|
3951
|
-
leaderTeamToAssign: string;
|
|
3952
|
-
memberToAssign: string;
|
|
3953
|
-
assignmentStatus: string;
|
|
3954
|
-
statusCreateFolder: string;
|
|
3955
|
-
}
|
|
3956
|
-
interface FindOverViewAccountRowDto {
|
|
3957
|
-
totalAccounts: number;
|
|
3958
|
-
totalIdeas: number;
|
|
3959
|
-
totalNiches: number;
|
|
3960
|
-
totalTypes: {
|
|
3961
|
-
total: number;
|
|
3962
|
-
TM: number;
|
|
3963
|
-
NTM: number;
|
|
3964
|
-
};
|
|
3965
|
-
totalAccountGroups: number;
|
|
3966
|
-
totalAccountSync: {
|
|
3967
|
-
total: number;
|
|
3968
|
-
done: number;
|
|
3969
|
-
failed: number;
|
|
3970
|
-
};
|
|
3971
|
-
totalStatusCreateFolder: {
|
|
3972
|
-
total: number;
|
|
3973
|
-
done: number;
|
|
3974
|
-
pending: number;
|
|
3975
|
-
failed: number;
|
|
3976
|
-
};
|
|
3977
|
-
totalAccountSetting: {
|
|
3978
|
-
total: number;
|
|
3979
|
-
done: number;
|
|
3980
|
-
error: number;
|
|
3981
|
-
unknown: number;
|
|
3982
|
-
};
|
|
3983
|
-
totalLoginEmail: {
|
|
3984
|
-
total: number;
|
|
3985
|
-
active: number;
|
|
3986
|
-
inactive: number;
|
|
3987
|
-
error: number;
|
|
3988
|
-
};
|
|
3989
|
-
accountsWithAvatar: {
|
|
3990
|
-
total: number;
|
|
3991
|
-
done: number;
|
|
3992
|
-
pending: number;
|
|
3993
|
-
failed: number;
|
|
3994
|
-
};
|
|
3995
|
-
accountsWithCover: {
|
|
3996
|
-
total: number;
|
|
3997
|
-
done: number;
|
|
3998
|
-
pending: number;
|
|
3999
|
-
failed: number;
|
|
4000
|
-
};
|
|
4001
|
-
accountsWithBio: {
|
|
4002
|
-
total: number;
|
|
4003
|
-
done: number;
|
|
4004
|
-
pending: number;
|
|
4005
|
-
failed: number;
|
|
4006
|
-
};
|
|
4007
|
-
accountsWithLinks: {
|
|
4008
|
-
total: number;
|
|
4009
|
-
done: number;
|
|
4010
|
-
pending: number;
|
|
4011
|
-
failed: number;
|
|
4012
|
-
};
|
|
4013
|
-
usernameChanged: {
|
|
4014
|
-
total: number;
|
|
4015
|
-
done: number;
|
|
4016
|
-
pending: number;
|
|
4017
|
-
failed: number;
|
|
4018
|
-
};
|
|
4019
|
-
passwordChanged: {
|
|
4020
|
-
total: number;
|
|
4021
|
-
done: number;
|
|
4022
|
-
pending: number;
|
|
4023
|
-
failed: number;
|
|
4024
|
-
};
|
|
4025
|
-
twoFactorAuthChanged: {
|
|
4026
|
-
total: number;
|
|
4027
|
-
done: number;
|
|
4028
|
-
pending: number;
|
|
4029
|
-
failed: number;
|
|
4030
|
-
};
|
|
4031
|
-
emailChanged: {
|
|
4032
|
-
total: number;
|
|
4033
|
-
done: number;
|
|
4034
|
-
pending: number;
|
|
4035
|
-
failed: number;
|
|
4036
|
-
};
|
|
4037
|
-
}
|
|
4038
|
-
interface AutoFillAccountRawDto {
|
|
4039
|
-
idea: {
|
|
4040
|
-
id: string;
|
|
4041
|
-
name: string;
|
|
4042
|
-
};
|
|
4043
|
-
niche: {
|
|
4044
|
-
id: string;
|
|
4045
|
-
name: string;
|
|
4046
|
-
};
|
|
4047
|
-
accountId: {
|
|
4048
|
-
id: string;
|
|
4049
|
-
val: string;
|
|
4050
|
-
};
|
|
4051
|
-
oldUsername: {
|
|
4052
|
-
id: string;
|
|
4053
|
-
name: string;
|
|
4054
|
-
};
|
|
4055
|
-
newUsername: string;
|
|
4056
|
-
newFullname: string;
|
|
4057
|
-
timeExecuteChangeInfo: Date;
|
|
4058
|
-
newBio: string;
|
|
4059
|
-
timeExecuteBio: Date;
|
|
4060
|
-
newPassword: string;
|
|
4061
|
-
timeExecutePassword: Date;
|
|
4062
|
-
new2FA: string;
|
|
4063
|
-
isTurnOn2FA: boolean;
|
|
4064
|
-
timeExecute2FA: Date;
|
|
4065
|
-
newEmail: string;
|
|
4066
|
-
timeExecuteEmail: Date;
|
|
4067
|
-
newLinks: string[];
|
|
4068
|
-
timeExecuteLinks: Date;
|
|
4069
|
-
newAvatar: string;
|
|
4070
|
-
timeExecuteAvatar: Date;
|
|
4071
|
-
newCover: string;
|
|
4072
|
-
timeExecuteCover: Date;
|
|
4073
|
-
}
|
|
4074
|
-
|
|
4075
|
-
interface FindAccountsGroupDto extends IBaseDto, IAccountsGroup {
|
|
3896
|
+
interface FindThreadsAccountGroupDto extends IBaseDto, IThreadsAccountGroup {
|
|
4076
3897
|
}
|
|
4077
|
-
interface
|
|
3898
|
+
interface FilterThreadsAccountGroupDto extends IBaseDto, IThreadsAccountGroup {
|
|
4078
3899
|
}
|
|
4079
3900
|
|
|
4080
3901
|
interface FindDeviceDto extends IBaseDto, IDevice {
|
|
@@ -4203,8 +4024,6 @@ interface FindDepartmentDto extends IBaseDto, IDepartment {
|
|
|
4203
4024
|
interface FilterDepartmentDto extends IBaseDto, IDepartment {
|
|
4204
4025
|
}
|
|
4205
4026
|
|
|
4206
|
-
type index_AutoFillAccountRawDto = AutoFillAccountRawDto;
|
|
4207
|
-
type index_AutoFillOverviewAccountRawDto = AutoFillOverviewAccountRawDto;
|
|
4208
4027
|
type index_ExportDto = ExportDto;
|
|
4209
4028
|
type index_FilterAccountAIContentDto = FilterAccountAIContentDto;
|
|
4210
4029
|
type index_FilterAccountAIImageDto = FilterAccountAIImageDto;
|
|
@@ -4212,12 +4031,9 @@ type index_FilterAccountAIVoiceDto = FilterAccountAIVoiceDto;
|
|
|
4212
4031
|
type index_FilterAccountCHPlayICloudDto = FilterAccountCHPlayICloudDto;
|
|
4213
4032
|
type index_FilterAccountCanvaDto = FilterAccountCanvaDto;
|
|
4214
4033
|
type index_FilterAccountDriveDto = FilterAccountDriveDto;
|
|
4215
|
-
type index_FilterAccountDto = FilterAccountDto;
|
|
4216
|
-
type index_FilterAccountRawDto = FilterAccountRawDto;
|
|
4217
4034
|
type index_FilterAccountVPNDto = FilterAccountVPNDto;
|
|
4218
4035
|
type index_FilterAccountVPSDto = FilterAccountVPSDto;
|
|
4219
4036
|
type index_FilterAccountVPSGroupDto = FilterAccountVPSGroupDto;
|
|
4220
|
-
type index_FilterAccountsGroupDto = FilterAccountsGroupDto;
|
|
4221
4037
|
type index_FilterBaseDto = FilterBaseDto;
|
|
4222
4038
|
type index_FilterBlogCategoryDto = FilterBlogCategoryDto;
|
|
4223
4039
|
type index_FilterBlogDto = FilterBlogDto;
|
|
@@ -4272,6 +4088,7 @@ type index_FilterTaskThreadsPostDto = FilterTaskThreadsPostDto;
|
|
|
4272
4088
|
type index_FilterTaskThreadsReplyCommentDto = FilterTaskThreadsReplyCommentDto;
|
|
4273
4089
|
type index_FilterTaskToolMonitorDto = FilterTaskToolMonitorDto;
|
|
4274
4090
|
type index_FilterTeamDto = FilterTeamDto;
|
|
4091
|
+
type index_FilterThreadsAccountGroupDto = FilterThreadsAccountGroupDto;
|
|
4275
4092
|
type index_FilterThreadsHistoryInteractFollowDto = FilterThreadsHistoryInteractFollowDto;
|
|
4276
4093
|
type index_FilterThreadsHistoryInteractReplyCommentDto = FilterThreadsHistoryInteractReplyCommentDto;
|
|
4277
4094
|
type index_FilterThreadsHistoryPostDto = FilterThreadsHistoryPostDto;
|
|
@@ -4285,12 +4102,9 @@ type index_FindAccountAIVoiceDto = FindAccountAIVoiceDto;
|
|
|
4285
4102
|
type index_FindAccountCHPlayICloudDto = FindAccountCHPlayICloudDto;
|
|
4286
4103
|
type index_FindAccountCanvaDto = FindAccountCanvaDto;
|
|
4287
4104
|
type index_FindAccountDriveDto = FindAccountDriveDto;
|
|
4288
|
-
type index_FindAccountDto = FindAccountDto;
|
|
4289
|
-
type index_FindAccountRawDto = FindAccountRawDto;
|
|
4290
4105
|
type index_FindAccountVPNDto = FindAccountVPNDto;
|
|
4291
4106
|
type index_FindAccountVPSDto = FindAccountVPSDto;
|
|
4292
4107
|
type index_FindAccountVPSGroupDto = FindAccountVPSGroupDto;
|
|
4293
|
-
type index_FindAccountsGroupDto = FindAccountsGroupDto;
|
|
4294
4108
|
type index_FindBlogCategoryDto = FindBlogCategoryDto;
|
|
4295
4109
|
type index_FindBlogDto = FindBlogDto;
|
|
4296
4110
|
type index_FindDepartmentDto = FindDepartmentDto;
|
|
@@ -4326,8 +4140,6 @@ type index_FindInstagramSettingUnFollowDto = FindInstagramSettingUnFollowDto;
|
|
|
4326
4140
|
type index_FindLarkDto = FindLarkDto;
|
|
4327
4141
|
type index_FindManagerSheetDto = FindManagerSheetDto;
|
|
4328
4142
|
type index_FindManagerWorkDto = FindManagerWorkDto;
|
|
4329
|
-
type index_FindOverViewAccountDto = FindOverViewAccountDto;
|
|
4330
|
-
type index_FindOverViewAccountRowDto = FindOverViewAccountRowDto;
|
|
4331
4143
|
type index_FindOverviewAccountCHPlayICloudDto = FindOverviewAccountCHPlayICloudDto;
|
|
4332
4144
|
type index_FindOverviewAccountCanvaDto = FindOverviewAccountCanvaDto;
|
|
4333
4145
|
type index_FindOverviewAccountDriveDto = FindOverviewAccountDriveDto;
|
|
@@ -4352,6 +4164,7 @@ type index_FindTaskThreadsPostDto = FindTaskThreadsPostDto;
|
|
|
4352
4164
|
type index_FindTaskThreadsReplyCommentDto = FindTaskThreadsReplyCommentDto;
|
|
4353
4165
|
type index_FindTaskToolMonitorDto = FindTaskToolMonitorDto;
|
|
4354
4166
|
type index_FindTeamDto = FindTeamDto;
|
|
4167
|
+
type index_FindThreadsAccountGroupDto = FindThreadsAccountGroupDto;
|
|
4355
4168
|
type index_FindThreadsHistoryInteractFollowDto = FindThreadsHistoryInteractFollowDto;
|
|
4356
4169
|
type index_FindThreadsHistoryInteractReplyCommentDto = FindThreadsHistoryInteractReplyCommentDto;
|
|
4357
4170
|
type index_FindThreadsHistoryPostDto = FindThreadsHistoryPostDto;
|
|
@@ -4364,13 +4177,10 @@ type index_IBaseSheetImportDto = IBaseSheetImportDto;
|
|
|
4364
4177
|
type index_IInstagramHistoryAutoSyncDto = IInstagramHistoryAutoSyncDto;
|
|
4365
4178
|
type index_IInstagramHistoryChangeCreateDto = IInstagramHistoryChangeCreateDto;
|
|
4366
4179
|
type index_IInstagramHistoryGroupDto = IInstagramHistoryGroupDto;
|
|
4367
|
-
type index_IThreadsHistoryAutoSyncDto = IThreadsHistoryAutoSyncDto;
|
|
4368
|
-
type index_IThreadsHistoryChangeCreateDto = IThreadsHistoryChangeCreateDto;
|
|
4369
|
-
type index_IThreadsHistoryGroupDto = IThreadsHistoryGroupDto;
|
|
4370
4180
|
type index_ImportDto = ImportDto;
|
|
4371
4181
|
type index_OverviewUserDto = OverviewUserDto;
|
|
4372
4182
|
declare namespace index {
|
|
4373
|
-
export type { index_AutoFillAccountRawDto as AutoFillAccountRawDto, index_AutoFillOverviewAccountRawDto as AutoFillOverviewAccountRawDto, index_ExportDto as ExportDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountDto as FilterAccountDto, index_FilterAccountRawDto as FilterAccountRawDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterAccountsGroupDto as FilterAccountsGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterIAccountAIContentInfoDto as FilterIAccountAIContentInfoDto, index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, index_FilterIAccountEmailDto as FilterIAccountEmailDto, index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, index_FilterInstagramHistoryInteractExploreDto as FilterInstagramHistoryInteractExploreDto, index_FilterInstagramHistoryInteractFollowDto as FilterInstagramHistoryInteractFollowDto, index_FilterInstagramHistoryInteractReelDto as FilterInstagramHistoryInteractReelDto, index_FilterInstagramHistoryInteractReplyCommentDto as FilterInstagramHistoryInteractReplyCommentDto, index_FilterInstagramHistoryInteractReplyMessageDto as FilterInstagramHistoryInteractReplyMessageDto, index_FilterInstagramHistoryInteractStoryDto as FilterInstagramHistoryInteractStoryDto, index_FilterInstagramHistoryPostHighLightDto as FilterInstagramHistoryPostHighLightDto, index_FilterInstagramHistoryPostNewDto as FilterInstagramHistoryPostNewDto, index_FilterInstagramHistoryPostReelDto as FilterInstagramHistoryPostReelDto, index_FilterInstagramHistoryPostStoryDto as FilterInstagramHistoryPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index_FilterInstagramSettingStoryDto as FilterInstagramSettingStoryDto, index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, index_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageVoiceCanvaDto as FilterTaskAIImageVoiceCanvaDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsHistoryInteractFollowDto as FilterThreadsHistoryInteractFollowDto, index_FilterThreadsHistoryInteractReplyCommentDto as FilterThreadsHistoryInteractReplyCommentDto, index_FilterThreadsHistoryPostDto as FilterThreadsHistoryPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountDto as FindAccountDto, index_FindAccountRawDto as FindAccountRawDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindAccountsGroupDto as FindAccountsGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindIAccountAIContentInfoDto as FindIAccountAIContentInfoDto, index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, index_FindIAccountEmailDto as FindIAccountEmailDto, index_FindIManagerImageAIDto as FindIManagerImageAIDto, index_FindInstagramHistoryInteractExploreDto as FindInstagramHistoryInteractExploreDto, index_FindInstagramHistoryInteractFollowDto as FindInstagramHistoryInteractFollowDto, index_FindInstagramHistoryInteractReelDto as FindInstagramHistoryInteractReelDto, index_FindInstagramHistoryInteractReplyCommentDto as FindInstagramHistoryInteractReplyCommentDto, index_FindInstagramHistoryInteractReplyMessageDto as FindInstagramHistoryInteractReplyMessageDto, index_FindInstagramHistoryInteractStoryDto as FindInstagramHistoryInteractStoryDto, index_FindInstagramHistoryPostHighLightDto as FindInstagramHistoryPostHighLightDto, index_FindInstagramHistoryPostNewDto as FindInstagramHistoryPostNewDto, index_FindInstagramHistoryPostReelDto as FindInstagramHistoryPostReelDto, index_FindInstagramHistoryPostStoryDto as FindInstagramHistoryPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, index_FindLarkDto as FindLarkDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewAccountDto as FindOverViewAccountDto, index_FindOverViewAccountRowDto as FindOverViewAccountRowDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageVoiceCanvaDto as FindTaskAIImageVoiceCanvaDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsHistoryInteractFollowDto as FindThreadsHistoryInteractFollowDto, index_FindThreadsHistoryInteractReplyCommentDto as FindThreadsHistoryInteractReplyCommentDto, index_FindThreadsHistoryPostDto as FindThreadsHistoryPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseDto as IBaseDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IInstagramHistoryAutoSyncDto as IInstagramHistoryAutoSyncDto, index_IInstagramHistoryChangeCreateDto as IInstagramHistoryChangeCreateDto, index_IInstagramHistoryGroupDto as IInstagramHistoryGroupDto, index_IThreadsHistoryAutoSyncDto as IThreadsHistoryAutoSyncDto, index_IThreadsHistoryChangeCreateDto as IThreadsHistoryChangeCreateDto, index_IThreadsHistoryGroupDto as IThreadsHistoryGroupDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto };
|
|
4183
|
+
export type { index_ExportDto as ExportDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterIAccountAIContentInfoDto as FilterIAccountAIContentInfoDto, index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, index_FilterIAccountEmailDto as FilterIAccountEmailDto, index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, index_FilterInstagramHistoryInteractExploreDto as FilterInstagramHistoryInteractExploreDto, index_FilterInstagramHistoryInteractFollowDto as FilterInstagramHistoryInteractFollowDto, index_FilterInstagramHistoryInteractReelDto as FilterInstagramHistoryInteractReelDto, index_FilterInstagramHistoryInteractReplyCommentDto as FilterInstagramHistoryInteractReplyCommentDto, index_FilterInstagramHistoryInteractReplyMessageDto as FilterInstagramHistoryInteractReplyMessageDto, index_FilterInstagramHistoryInteractStoryDto as FilterInstagramHistoryInteractStoryDto, index_FilterInstagramHistoryPostHighLightDto as FilterInstagramHistoryPostHighLightDto, index_FilterInstagramHistoryPostNewDto as FilterInstagramHistoryPostNewDto, index_FilterInstagramHistoryPostReelDto as FilterInstagramHistoryPostReelDto, index_FilterInstagramHistoryPostStoryDto as FilterInstagramHistoryPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index_FilterInstagramSettingStoryDto as FilterInstagramSettingStoryDto, index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, index_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageVoiceCanvaDto as FilterTaskAIImageVoiceCanvaDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountGroupDto as FilterThreadsAccountGroupDto, index_FilterThreadsHistoryInteractFollowDto as FilterThreadsHistoryInteractFollowDto, index_FilterThreadsHistoryInteractReplyCommentDto as FilterThreadsHistoryInteractReplyCommentDto, index_FilterThreadsHistoryPostDto as FilterThreadsHistoryPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindIAccountAIContentInfoDto as FindIAccountAIContentInfoDto, index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, index_FindIAccountEmailDto as FindIAccountEmailDto, index_FindIManagerImageAIDto as FindIManagerImageAIDto, index_FindInstagramHistoryInteractExploreDto as FindInstagramHistoryInteractExploreDto, index_FindInstagramHistoryInteractFollowDto as FindInstagramHistoryInteractFollowDto, index_FindInstagramHistoryInteractReelDto as FindInstagramHistoryInteractReelDto, index_FindInstagramHistoryInteractReplyCommentDto as FindInstagramHistoryInteractReplyCommentDto, index_FindInstagramHistoryInteractReplyMessageDto as FindInstagramHistoryInteractReplyMessageDto, index_FindInstagramHistoryInteractStoryDto as FindInstagramHistoryInteractStoryDto, index_FindInstagramHistoryPostHighLightDto as FindInstagramHistoryPostHighLightDto, index_FindInstagramHistoryPostNewDto as FindInstagramHistoryPostNewDto, index_FindInstagramHistoryPostReelDto as FindInstagramHistoryPostReelDto, index_FindInstagramHistoryPostStoryDto as FindInstagramHistoryPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, index_FindLarkDto as FindLarkDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageVoiceCanvaDto as FindTaskAIImageVoiceCanvaDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountGroupDto as FindThreadsAccountGroupDto, index_FindThreadsHistoryInteractFollowDto as FindThreadsHistoryInteractFollowDto, index_FindThreadsHistoryInteractReplyCommentDto as FindThreadsHistoryInteractReplyCommentDto, index_FindThreadsHistoryPostDto as FindThreadsHistoryPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseDto as IBaseDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IInstagramHistoryAutoSyncDto as IInstagramHistoryAutoSyncDto, index_IInstagramHistoryChangeCreateDto as IInstagramHistoryChangeCreateDto, index_IInstagramHistoryGroupDto as IInstagramHistoryGroupDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto };
|
|
4374
4184
|
}
|
|
4375
4185
|
|
|
4376
|
-
export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums,
|
|
4186
|
+
export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type ExportDto, type FilterAccountAIContentDto, type FilterAccountAIImageDto, type FilterAccountAIVoiceDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterIAccountAIContentInfoDto, type FilterIAccountAIImageInfoDto, type FilterIAccountAIVoiceInfoDto, type FilterIAccountEmailDto, type FilterIManagerImageAIDto, type FilterInstagramHistoryInteractExploreDto, type FilterInstagramHistoryInteractFollowDto, type FilterInstagramHistoryInteractReelDto, type FilterInstagramHistoryInteractReplyCommentDto, type FilterInstagramHistoryInteractReplyMessageDto, type FilterInstagramHistoryInteractStoryDto, type FilterInstagramHistoryPostHighLightDto, type FilterInstagramHistoryPostNewDto, type FilterInstagramHistoryPostReelDto, type FilterInstagramHistoryPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingStoryDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountGroupDto, type FilterThreadsHistoryInteractFollowDto, type FilterThreadsHistoryInteractReplyCommentDto, type FilterThreadsHistoryPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentDto, type FindAccountAIImageDto, type FindAccountAIVoiceDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindIAccountAIContentInfoDto, type FindIAccountAIImageInfoDto, type FindIAccountAIVoiceInfoDto, type FindIAccountEmailDto, type FindIManagerImageAIDto, type FindInstagramHistoryInteractExploreDto, type FindInstagramHistoryInteractFollowDto, type FindInstagramHistoryInteractReelDto, type FindInstagramHistoryInteractReplyCommentDto, type FindInstagramHistoryInteractReplyMessageDto, type FindInstagramHistoryInteractStoryDto, type FindInstagramHistoryPostHighLightDto, type FindInstagramHistoryPostNewDto, type FindInstagramHistoryPostReelDto, type FindInstagramHistoryPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingPostDto, type FindInstagramSettingReplyCommentDto, type FindInstagramSettingReplyMessageDto, type FindInstagramSettingStoryDto, type FindInstagramSettingUnFollowDto, type FindLarkDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewProxyDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageVoiceCanvaDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountGroupDto, type FindThreadsHistoryInteractFollowDto, type FindThreadsHistoryInteractReplyCommentDto, type FindThreadsHistoryPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingPostDto, type FindUserDto, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseDto, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentRole, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlay, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountGroup, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncDto, type IInstagramHistoryChangeCreate, type IInstagramHistoryChangeCreateDto, type IInstagramHistoryGroup, type IInstagramHistoryGroupDto, type IInstagramHistoryInteractExplore, type IInstagramHistoryInteractFollow, type IInstagramHistoryInteractReel, type IInstagramHistoryInteractReplyComment, type IInstagramHistoryInteractReplyMessage, type IInstagramHistoryInteractStory, type IInstagramHistoryPostHighLight, type IInstagramHistoryPostNew, type IInstagramHistoryPostReel, type IInstagramHistoryPostSquare, type IInstagramHistoryPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type IInteractSentMessageDetail, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManagerWorkPin, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorkPin, type ISheetWorksCategory, type ISheetsTool, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountGroup, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoSync, type IThreadsHistoryChangeCreate, type IThreadsHistoryGroup, type IThreadsHistoryInteractFollow, type IThreadsHistoryInteractReplyComment, type IThreadsHistoryPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportDto, type OverviewUserDto, index$3 as Socials, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, index$a as Web };
|