automation-lib 5.0.212 → 5.0.214
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 +75 -58
- package/dist/index.d.ts +75 -58
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1725,15 +1725,6 @@ interface IAccountCHPlayICloud extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1725
1725
|
note: string;
|
|
1726
1726
|
}
|
|
1727
1727
|
|
|
1728
|
-
interface IThreadsReportAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
interface IThreadsReportChangeCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
1732
|
-
}
|
|
1733
|
-
|
|
1734
|
-
interface IThreadsReportGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1735
|
-
}
|
|
1736
|
-
|
|
1737
1728
|
interface IPC extends IBaseModel, ITrackingModel<IUser> {
|
|
1738
1729
|
pc_name: string;
|
|
1739
1730
|
pc_description: string;
|
|
@@ -1782,13 +1773,36 @@ interface IDeviceSettingForVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1782
1773
|
accountVPN: string | IAccountVPN;
|
|
1783
1774
|
}
|
|
1784
1775
|
|
|
1776
|
+
interface IAccountSocialBase {
|
|
1777
|
+
typeSocial: ETypeSocial;
|
|
1778
|
+
sheetImport: string | ISheetImport;
|
|
1779
|
+
sheetUrl: string;
|
|
1780
|
+
sheetName: string;
|
|
1781
|
+
accountID: string;
|
|
1782
|
+
accountDeviceType: string;
|
|
1783
|
+
accountDeviceName: string;
|
|
1784
|
+
idea: string | IManagerWork;
|
|
1785
|
+
niche: string | IManagerWork;
|
|
1786
|
+
pc: IPC | string;
|
|
1787
|
+
deviceKey: string;
|
|
1788
|
+
device: IDevice | string;
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
interface IThreadsHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
interface IThreadsHistoryChangeCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
interface IThreadsHistoryGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1785
1800
|
interface IThreadsAccountGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1786
1801
|
name: string;
|
|
1787
1802
|
slug: string;
|
|
1788
1803
|
}
|
|
1789
1804
|
|
|
1790
|
-
interface IThreadsAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
1791
|
-
group: IThreadsAccountGroup | string;
|
|
1805
|
+
interface IThreadsAccountRun extends IBaseModel, IAccountSocialBase, ITrackingModel<IUser> {
|
|
1792
1806
|
typeSocial: ETypeSocial;
|
|
1793
1807
|
sheetImport: string | ISheetImport;
|
|
1794
1808
|
sheetUrl: string;
|
|
@@ -1801,6 +1815,7 @@ interface IThreadsAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1801
1815
|
pc: IPC | string;
|
|
1802
1816
|
deviceKey: string;
|
|
1803
1817
|
device: IDevice | string;
|
|
1818
|
+
group: IThreadsAccountGroup | string;
|
|
1804
1819
|
statusRun: EStatusAccountSocialRun;
|
|
1805
1820
|
statusConnectDevice: EStatusConnectDevice;
|
|
1806
1821
|
noteConnectDevice: string;
|
|
@@ -1843,18 +1858,12 @@ interface IThreadsAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1843
1858
|
note: string;
|
|
1844
1859
|
}
|
|
1845
1860
|
|
|
1846
|
-
interface IThreadsAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
1847
|
-
group: IThreadsAccountGroup | string;
|
|
1861
|
+
interface IThreadsAccountRaw extends IBaseModel, IAccountSocialBase, ITrackingModel<IUser> {
|
|
1848
1862
|
typeSocial: ETypeSocial;
|
|
1849
|
-
accountSocialSync: IThreadsAccountRun;
|
|
1850
|
-
timeImport: Date;
|
|
1851
|
-
statusImport: string;
|
|
1852
1863
|
sheetImport: string | ISheetImport;
|
|
1853
1864
|
sheetUrl: string;
|
|
1854
1865
|
sheetName: string;
|
|
1855
1866
|
accountID: string;
|
|
1856
|
-
statusSyncAccount: EStatusSyncAccountSocial;
|
|
1857
|
-
timeSyncAccount: Date;
|
|
1858
1867
|
accountDeviceType: string;
|
|
1859
1868
|
accountDeviceName: string;
|
|
1860
1869
|
idea: string | IManagerWork;
|
|
@@ -1862,6 +1871,12 @@ interface IThreadsAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1862
1871
|
pc: IPC | string;
|
|
1863
1872
|
deviceKey: string;
|
|
1864
1873
|
device: IDevice | string;
|
|
1874
|
+
group: IThreadsAccountGroup | string;
|
|
1875
|
+
timeImport: Date;
|
|
1876
|
+
statusImport: string;
|
|
1877
|
+
statusSyncAccount: EStatusSyncAccountSocial;
|
|
1878
|
+
timeSyncAccount: Date;
|
|
1879
|
+
accountSocialSync: IThreadsAccountRun;
|
|
1865
1880
|
statusLogin: EStatusLoginAccountSocial;
|
|
1866
1881
|
timeLogin: Date;
|
|
1867
1882
|
promptAvatar: string;
|
|
@@ -1908,13 +1923,13 @@ interface IThreadsAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1908
1923
|
noteConnectDevice: string;
|
|
1909
1924
|
}
|
|
1910
1925
|
|
|
1911
|
-
interface
|
|
1926
|
+
interface IInstagramHistoryGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1912
1927
|
}
|
|
1913
1928
|
|
|
1914
|
-
interface
|
|
1929
|
+
interface IInstagramHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
1915
1930
|
}
|
|
1916
1931
|
|
|
1917
|
-
interface
|
|
1932
|
+
interface IInstagramHistoryChangeCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
1918
1933
|
}
|
|
1919
1934
|
|
|
1920
1935
|
interface IInstagramAccountGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1922,8 +1937,7 @@ interface IInstagramAccountGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1922
1937
|
slug: string;
|
|
1923
1938
|
}
|
|
1924
1939
|
|
|
1925
|
-
interface IInstagramAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
1926
|
-
group: IInstagramAccountGroup | string;
|
|
1940
|
+
interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITrackingModel<IUser> {
|
|
1927
1941
|
typeSocial: ETypeSocial;
|
|
1928
1942
|
sheetImport: string | ISheetImport;
|
|
1929
1943
|
sheetUrl: string;
|
|
@@ -1936,6 +1950,7 @@ interface IInstagramAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1936
1950
|
pc: IPC | string;
|
|
1937
1951
|
deviceKey: string;
|
|
1938
1952
|
device: IDevice | string;
|
|
1953
|
+
group: IInstagramAccountGroup | string;
|
|
1939
1954
|
statusRun: EStatusAccountSocialRun;
|
|
1940
1955
|
statusConnectDevice: EStatusConnectDevice;
|
|
1941
1956
|
noteConnectDevice: string;
|
|
@@ -1978,18 +1993,12 @@ interface IInstagramAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1978
1993
|
note: string;
|
|
1979
1994
|
}
|
|
1980
1995
|
|
|
1981
|
-
interface IInstagramAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
1982
|
-
group: IInstagramAccountGroup | string;
|
|
1996
|
+
interface IInstagramAccountRaw extends IBaseModel, IAccountSocialBase, ITrackingModel<IUser> {
|
|
1983
1997
|
typeSocial: ETypeSocial;
|
|
1984
|
-
accountSocialSync: IInstagramAccountRun;
|
|
1985
|
-
timeImport: Date;
|
|
1986
|
-
statusImport: string;
|
|
1987
1998
|
sheetImport: string | ISheetImport;
|
|
1988
1999
|
sheetUrl: string;
|
|
1989
2000
|
sheetName: string;
|
|
1990
2001
|
accountID: string;
|
|
1991
|
-
statusSyncAccount: EStatusSyncAccountSocial;
|
|
1992
|
-
timeSyncAccount: Date;
|
|
1993
2002
|
accountDeviceType: string;
|
|
1994
2003
|
accountDeviceName: string;
|
|
1995
2004
|
idea: string | IManagerWork;
|
|
@@ -1997,6 +2006,12 @@ interface IInstagramAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1997
2006
|
pc: IPC | string;
|
|
1998
2007
|
deviceKey: string;
|
|
1999
2008
|
device: IDevice | string;
|
|
2009
|
+
group: IInstagramAccountGroup | string;
|
|
2010
|
+
timeImport: Date;
|
|
2011
|
+
statusImport: string;
|
|
2012
|
+
statusSyncAccount: EStatusSyncAccountSocial;
|
|
2013
|
+
timeSyncAccount: Date;
|
|
2014
|
+
accountSocialSync: IInstagramAccountRun;
|
|
2000
2015
|
statusLogin: EStatusLoginAccountSocial;
|
|
2001
2016
|
timeLogin: Date;
|
|
2002
2017
|
promptAvatar: string;
|
|
@@ -2528,6 +2543,7 @@ type index$5_IAccountEmail = IAccountEmail;
|
|
|
2528
2543
|
type index$5_IAccountEmailProxy = IAccountEmailProxy;
|
|
2529
2544
|
type index$5_IAccountEmailTag = IAccountEmailTag;
|
|
2530
2545
|
type index$5_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
2546
|
+
type index$5_IAccountSocialBase = IAccountSocialBase;
|
|
2531
2547
|
type index$5_IAccountVPN = IAccountVPN;
|
|
2532
2548
|
type index$5_IAccountVPS = IAccountVPS;
|
|
2533
2549
|
type index$5_IAccountVPSGroup = IAccountVPSGroup;
|
|
@@ -2539,9 +2555,9 @@ type index$5_IDeviceSettingForVPN = IDeviceSettingForVPN;
|
|
|
2539
2555
|
type index$5_IInstagramAccountGroup = IInstagramAccountGroup;
|
|
2540
2556
|
type index$5_IInstagramAccountRaw = IInstagramAccountRaw;
|
|
2541
2557
|
type index$5_IInstagramAccountRun = IInstagramAccountRun;
|
|
2542
|
-
type index$
|
|
2543
|
-
type index$
|
|
2544
|
-
type index$
|
|
2558
|
+
type index$5_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
|
|
2559
|
+
type index$5_IInstagramHistoryChangeCreate = IInstagramHistoryChangeCreate;
|
|
2560
|
+
type index$5_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
|
2545
2561
|
type index$5_IManagerImageAI = IManagerImageAI;
|
|
2546
2562
|
type index$5_IManagerImageAIItemStore = IManagerImageAIItemStore;
|
|
2547
2563
|
type index$5_IManagerImageAIUserAttached = IManagerImageAIUserAttached;
|
|
@@ -2556,15 +2572,15 @@ type index$5_ISheetsTool = ISheetsTool;
|
|
|
2556
2572
|
type index$5_IThreadsAccountGroup = IThreadsAccountGroup;
|
|
2557
2573
|
type index$5_IThreadsAccountRaw = IThreadsAccountRaw;
|
|
2558
2574
|
type index$5_IThreadsAccountRun = IThreadsAccountRun;
|
|
2559
|
-
type index$
|
|
2560
|
-
type index$
|
|
2561
|
-
type index$
|
|
2575
|
+
type index$5_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
|
|
2576
|
+
type index$5_IThreadsHistoryChangeCreate = IThreadsHistoryChangeCreate;
|
|
2577
|
+
type index$5_IThreadsHistoryGroup = IThreadsHistoryGroup;
|
|
2562
2578
|
type index$5_IVoiceGenerated = IVoiceGenerated;
|
|
2563
2579
|
type index$5_IVoiceLanguage = IVoiceLanguage;
|
|
2564
2580
|
type index$5_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
2565
2581
|
type index$5_IVoiceStores = IVoiceStores;
|
|
2566
2582
|
declare namespace index$5 {
|
|
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$
|
|
2583
|
+
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_IAccountSocialBase as IAccountSocialBase, 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 };
|
|
2568
2584
|
}
|
|
2569
2585
|
|
|
2570
2586
|
interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -3233,6 +3249,7 @@ type index$2_IAccountEmail = IAccountEmail;
|
|
|
3233
3249
|
type index$2_IAccountEmailProxy = IAccountEmailProxy;
|
|
3234
3250
|
type index$2_IAccountEmailTag = IAccountEmailTag;
|
|
3235
3251
|
type index$2_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
3252
|
+
type index$2_IAccountSocialBase = IAccountSocialBase;
|
|
3236
3253
|
type index$2_IAccountVPN = IAccountVPN;
|
|
3237
3254
|
type index$2_IAccountVPS = IAccountVPS;
|
|
3238
3255
|
type index$2_IAccountVPSGroup = IAccountVPSGroup;
|
|
@@ -3259,9 +3276,9 @@ type index$2_IIdea = IIdea;
|
|
|
3259
3276
|
type index$2_IInstagramAccountGroup = IInstagramAccountGroup;
|
|
3260
3277
|
type index$2_IInstagramAccountRaw = IInstagramAccountRaw;
|
|
3261
3278
|
type index$2_IInstagramAccountRun = IInstagramAccountRun;
|
|
3262
|
-
type index$
|
|
3263
|
-
type index$
|
|
3264
|
-
type index$
|
|
3279
|
+
type index$2_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
|
|
3280
|
+
type index$2_IInstagramHistoryChangeCreate = IInstagramHistoryChangeCreate;
|
|
3281
|
+
type index$2_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
|
3265
3282
|
type index$2_IInstagramReportInteractExplore = IInstagramReportInteractExplore;
|
|
3266
3283
|
type index$2_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
|
|
3267
3284
|
type index$2_IInstagramReportInteractReel = IInstagramReportInteractReel;
|
|
@@ -3325,9 +3342,9 @@ type index$2_ITeamRole = ITeamRole;
|
|
|
3325
3342
|
type index$2_IThreadsAccountGroup = IThreadsAccountGroup;
|
|
3326
3343
|
type index$2_IThreadsAccountRaw = IThreadsAccountRaw;
|
|
3327
3344
|
type index$2_IThreadsAccountRun = IThreadsAccountRun;
|
|
3328
|
-
type index$
|
|
3329
|
-
type index$
|
|
3330
|
-
type index$
|
|
3345
|
+
type index$2_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
|
|
3346
|
+
type index$2_IThreadsHistoryChangeCreate = IThreadsHistoryChangeCreate;
|
|
3347
|
+
type index$2_IThreadsHistoryGroup = IThreadsHistoryGroup;
|
|
3331
3348
|
type index$2_IThreadsReportInteractFollow = IThreadsReportInteractFollow;
|
|
3332
3349
|
type index$2_IThreadsReportInteractReplyComment = IThreadsReportInteractReplyComment;
|
|
3333
3350
|
type index$2_IThreadsReportPost = IThreadsReportPost;
|
|
@@ -3345,7 +3362,7 @@ type index$2_IVoiceLanguage = IVoiceLanguage;
|
|
|
3345
3362
|
type index$2_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
3346
3363
|
type index$2_IVoiceStores = IVoiceStores;
|
|
3347
3364
|
declare namespace index$2 {
|
|
3348
|
-
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$
|
|
3365
|
+
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_IAccountSocialBase as IAccountSocialBase, 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_IInstagramReportInteractExplore as IInstagramReportInteractExplore, type index$2_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$2_IInstagramReportInteractReel as IInstagramReportInteractReel, type index$2_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$2_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$2_IInstagramReportInteractStory as IInstagramReportInteractStory, type index$2_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$2_IInstagramReportPostNew as IInstagramReportPostNew, type index$2_IInstagramReportPostReel as IInstagramReportPostReel, type index$2_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$2_IInstagramReportPostStory as IInstagramReportPostStory, 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_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_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$2_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$2_IThreadsReportPost as IThreadsReportPost, 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 };
|
|
3349
3366
|
}
|
|
3350
3367
|
|
|
3351
3368
|
interface IDataUser {
|
|
@@ -3878,19 +3895,19 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
3878
3895
|
};
|
|
3879
3896
|
}
|
|
3880
3897
|
|
|
3881
|
-
interface
|
|
3898
|
+
interface FindInstagramHistoryGroupDto extends IBaseDto, IInstagramHistoryGroup {
|
|
3882
3899
|
}
|
|
3883
|
-
interface
|
|
3900
|
+
interface FilterInstagramHistoryGroupDto extends IBaseDto, IInstagramHistoryGroup {
|
|
3884
3901
|
}
|
|
3885
3902
|
|
|
3886
|
-
interface
|
|
3903
|
+
interface FindInstagramHistoryAutoSyncDto extends IBaseDto, IInstagramHistoryAutoSync {
|
|
3887
3904
|
}
|
|
3888
|
-
interface
|
|
3905
|
+
interface FilterInstagramHistoryAutoSyncDto extends IBaseDto, IInstagramHistoryAutoSync {
|
|
3889
3906
|
}
|
|
3890
3907
|
|
|
3891
|
-
interface
|
|
3908
|
+
interface FindInstagramHistoryChangeCreateDto extends IBaseDto, IInstagramHistoryChangeCreate {
|
|
3892
3909
|
}
|
|
3893
|
-
interface
|
|
3910
|
+
interface FilterInstagramHistoryChangeCreateDto extends IBaseDto, IInstagramHistoryChangeCreate {
|
|
3894
3911
|
}
|
|
3895
3912
|
|
|
3896
3913
|
interface FindThreadsAccountGroupDto extends IBaseDto, IThreadsAccountGroup {
|
|
@@ -4048,9 +4065,9 @@ type index_FilterIAccountAIImageInfoDto = FilterIAccountAIImageInfoDto;
|
|
|
4048
4065
|
type index_FilterIAccountAIVoiceInfoDto = FilterIAccountAIVoiceInfoDto;
|
|
4049
4066
|
type index_FilterIAccountEmailDto = FilterIAccountEmailDto;
|
|
4050
4067
|
type index_FilterIManagerImageAIDto = FilterIManagerImageAIDto;
|
|
4051
|
-
type
|
|
4052
|
-
type
|
|
4053
|
-
type
|
|
4068
|
+
type index_FilterInstagramHistoryAutoSyncDto = FilterInstagramHistoryAutoSyncDto;
|
|
4069
|
+
type index_FilterInstagramHistoryChangeCreateDto = FilterInstagramHistoryChangeCreateDto;
|
|
4070
|
+
type index_FilterInstagramHistoryGroupDto = FilterInstagramHistoryGroupDto;
|
|
4054
4071
|
type index_FilterInstagramReportInteractExploreDto = FilterInstagramReportInteractExploreDto;
|
|
4055
4072
|
type index_FilterInstagramReportInteractFollowDto = FilterInstagramReportInteractFollowDto;
|
|
4056
4073
|
type index_FilterInstagramReportInteractReelDto = FilterInstagramReportInteractReelDto;
|
|
@@ -4122,9 +4139,9 @@ type index_FindIAccountAIImageInfoDto = FindIAccountAIImageInfoDto;
|
|
|
4122
4139
|
type index_FindIAccountAIVoiceInfoDto = FindIAccountAIVoiceInfoDto;
|
|
4123
4140
|
type index_FindIAccountEmailDto = FindIAccountEmailDto;
|
|
4124
4141
|
type index_FindIManagerImageAIDto = FindIManagerImageAIDto;
|
|
4125
|
-
type
|
|
4126
|
-
type
|
|
4127
|
-
type
|
|
4142
|
+
type index_FindInstagramHistoryAutoSyncDto = FindInstagramHistoryAutoSyncDto;
|
|
4143
|
+
type index_FindInstagramHistoryChangeCreateDto = FindInstagramHistoryChangeCreateDto;
|
|
4144
|
+
type index_FindInstagramHistoryGroupDto = FindInstagramHistoryGroupDto;
|
|
4128
4145
|
type index_FindInstagramReportInteractExploreDto = FindInstagramReportInteractExploreDto;
|
|
4129
4146
|
type index_FindInstagramReportInteractFollowDto = FindInstagramReportInteractFollowDto;
|
|
4130
4147
|
type index_FindInstagramReportInteractReelDto = FindInstagramReportInteractReelDto;
|
|
@@ -4183,7 +4200,7 @@ type index_IBaseSheetImportDto = IBaseSheetImportDto;
|
|
|
4183
4200
|
type index_ImportDto = ImportDto;
|
|
4184
4201
|
type index_OverviewUserDto = OverviewUserDto;
|
|
4185
4202
|
declare namespace index {
|
|
4186
|
-
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_FilterInstagramReportAutoSyncDto as FilterInstagramReportAutoSyncDto, index_FilterInstagramReportChangeCreateDto as FilterInstagramReportChangeCreateDto, index_FilterInstagramReportGroupDto as FilterInstagramReportGroupDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, 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_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, 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_FindInstagramReportAutoSyncDto as FindInstagramReportAutoSyncDto, index_FindInstagramReportChangeCreateDto as FindInstagramReportChangeCreateDto, index_FindInstagramReportGroupDto as FindInstagramReportGroupDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, 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_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, 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_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto };
|
|
4203
|
+
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_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeCreateDto as FilterInstagramHistoryChangeCreateDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, 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_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, 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_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeCreateDto as FindInstagramHistoryChangeCreateDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, 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_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, 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_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto };
|
|
4187
4204
|
}
|
|
4188
4205
|
|
|
4189
|
-
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
|
|
4206
|
+
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 FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostStoryDto, 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 FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportPostDto, 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 FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostStoryDto, 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 FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportPostDto, 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 IAccountSocialBase, 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 IInstagramHistoryChangeCreate, type IInstagramHistoryGroup, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, 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 IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportPost, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -1725,15 +1725,6 @@ interface IAccountCHPlayICloud extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1725
1725
|
note: string;
|
|
1726
1726
|
}
|
|
1727
1727
|
|
|
1728
|
-
interface IThreadsReportAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
interface IThreadsReportChangeCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
1732
|
-
}
|
|
1733
|
-
|
|
1734
|
-
interface IThreadsReportGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1735
|
-
}
|
|
1736
|
-
|
|
1737
1728
|
interface IPC extends IBaseModel, ITrackingModel<IUser> {
|
|
1738
1729
|
pc_name: string;
|
|
1739
1730
|
pc_description: string;
|
|
@@ -1782,13 +1773,36 @@ interface IDeviceSettingForVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1782
1773
|
accountVPN: string | IAccountVPN;
|
|
1783
1774
|
}
|
|
1784
1775
|
|
|
1776
|
+
interface IAccountSocialBase {
|
|
1777
|
+
typeSocial: ETypeSocial;
|
|
1778
|
+
sheetImport: string | ISheetImport;
|
|
1779
|
+
sheetUrl: string;
|
|
1780
|
+
sheetName: string;
|
|
1781
|
+
accountID: string;
|
|
1782
|
+
accountDeviceType: string;
|
|
1783
|
+
accountDeviceName: string;
|
|
1784
|
+
idea: string | IManagerWork;
|
|
1785
|
+
niche: string | IManagerWork;
|
|
1786
|
+
pc: IPC | string;
|
|
1787
|
+
deviceKey: string;
|
|
1788
|
+
device: IDevice | string;
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
interface IThreadsHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
interface IThreadsHistoryChangeCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
interface IThreadsHistoryGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1785
1800
|
interface IThreadsAccountGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1786
1801
|
name: string;
|
|
1787
1802
|
slug: string;
|
|
1788
1803
|
}
|
|
1789
1804
|
|
|
1790
|
-
interface IThreadsAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
1791
|
-
group: IThreadsAccountGroup | string;
|
|
1805
|
+
interface IThreadsAccountRun extends IBaseModel, IAccountSocialBase, ITrackingModel<IUser> {
|
|
1792
1806
|
typeSocial: ETypeSocial;
|
|
1793
1807
|
sheetImport: string | ISheetImport;
|
|
1794
1808
|
sheetUrl: string;
|
|
@@ -1801,6 +1815,7 @@ interface IThreadsAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1801
1815
|
pc: IPC | string;
|
|
1802
1816
|
deviceKey: string;
|
|
1803
1817
|
device: IDevice | string;
|
|
1818
|
+
group: IThreadsAccountGroup | string;
|
|
1804
1819
|
statusRun: EStatusAccountSocialRun;
|
|
1805
1820
|
statusConnectDevice: EStatusConnectDevice;
|
|
1806
1821
|
noteConnectDevice: string;
|
|
@@ -1843,18 +1858,12 @@ interface IThreadsAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1843
1858
|
note: string;
|
|
1844
1859
|
}
|
|
1845
1860
|
|
|
1846
|
-
interface IThreadsAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
1847
|
-
group: IThreadsAccountGroup | string;
|
|
1861
|
+
interface IThreadsAccountRaw extends IBaseModel, IAccountSocialBase, ITrackingModel<IUser> {
|
|
1848
1862
|
typeSocial: ETypeSocial;
|
|
1849
|
-
accountSocialSync: IThreadsAccountRun;
|
|
1850
|
-
timeImport: Date;
|
|
1851
|
-
statusImport: string;
|
|
1852
1863
|
sheetImport: string | ISheetImport;
|
|
1853
1864
|
sheetUrl: string;
|
|
1854
1865
|
sheetName: string;
|
|
1855
1866
|
accountID: string;
|
|
1856
|
-
statusSyncAccount: EStatusSyncAccountSocial;
|
|
1857
|
-
timeSyncAccount: Date;
|
|
1858
1867
|
accountDeviceType: string;
|
|
1859
1868
|
accountDeviceName: string;
|
|
1860
1869
|
idea: string | IManagerWork;
|
|
@@ -1862,6 +1871,12 @@ interface IThreadsAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1862
1871
|
pc: IPC | string;
|
|
1863
1872
|
deviceKey: string;
|
|
1864
1873
|
device: IDevice | string;
|
|
1874
|
+
group: IThreadsAccountGroup | string;
|
|
1875
|
+
timeImport: Date;
|
|
1876
|
+
statusImport: string;
|
|
1877
|
+
statusSyncAccount: EStatusSyncAccountSocial;
|
|
1878
|
+
timeSyncAccount: Date;
|
|
1879
|
+
accountSocialSync: IThreadsAccountRun;
|
|
1865
1880
|
statusLogin: EStatusLoginAccountSocial;
|
|
1866
1881
|
timeLogin: Date;
|
|
1867
1882
|
promptAvatar: string;
|
|
@@ -1908,13 +1923,13 @@ interface IThreadsAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1908
1923
|
noteConnectDevice: string;
|
|
1909
1924
|
}
|
|
1910
1925
|
|
|
1911
|
-
interface
|
|
1926
|
+
interface IInstagramHistoryGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1912
1927
|
}
|
|
1913
1928
|
|
|
1914
|
-
interface
|
|
1929
|
+
interface IInstagramHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
1915
1930
|
}
|
|
1916
1931
|
|
|
1917
|
-
interface
|
|
1932
|
+
interface IInstagramHistoryChangeCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
1918
1933
|
}
|
|
1919
1934
|
|
|
1920
1935
|
interface IInstagramAccountGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1922,8 +1937,7 @@ interface IInstagramAccountGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1922
1937
|
slug: string;
|
|
1923
1938
|
}
|
|
1924
1939
|
|
|
1925
|
-
interface IInstagramAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
1926
|
-
group: IInstagramAccountGroup | string;
|
|
1940
|
+
interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITrackingModel<IUser> {
|
|
1927
1941
|
typeSocial: ETypeSocial;
|
|
1928
1942
|
sheetImport: string | ISheetImport;
|
|
1929
1943
|
sheetUrl: string;
|
|
@@ -1936,6 +1950,7 @@ interface IInstagramAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1936
1950
|
pc: IPC | string;
|
|
1937
1951
|
deviceKey: string;
|
|
1938
1952
|
device: IDevice | string;
|
|
1953
|
+
group: IInstagramAccountGroup | string;
|
|
1939
1954
|
statusRun: EStatusAccountSocialRun;
|
|
1940
1955
|
statusConnectDevice: EStatusConnectDevice;
|
|
1941
1956
|
noteConnectDevice: string;
|
|
@@ -1978,18 +1993,12 @@ interface IInstagramAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1978
1993
|
note: string;
|
|
1979
1994
|
}
|
|
1980
1995
|
|
|
1981
|
-
interface IInstagramAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
1982
|
-
group: IInstagramAccountGroup | string;
|
|
1996
|
+
interface IInstagramAccountRaw extends IBaseModel, IAccountSocialBase, ITrackingModel<IUser> {
|
|
1983
1997
|
typeSocial: ETypeSocial;
|
|
1984
|
-
accountSocialSync: IInstagramAccountRun;
|
|
1985
|
-
timeImport: Date;
|
|
1986
|
-
statusImport: string;
|
|
1987
1998
|
sheetImport: string | ISheetImport;
|
|
1988
1999
|
sheetUrl: string;
|
|
1989
2000
|
sheetName: string;
|
|
1990
2001
|
accountID: string;
|
|
1991
|
-
statusSyncAccount: EStatusSyncAccountSocial;
|
|
1992
|
-
timeSyncAccount: Date;
|
|
1993
2002
|
accountDeviceType: string;
|
|
1994
2003
|
accountDeviceName: string;
|
|
1995
2004
|
idea: string | IManagerWork;
|
|
@@ -1997,6 +2006,12 @@ interface IInstagramAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1997
2006
|
pc: IPC | string;
|
|
1998
2007
|
deviceKey: string;
|
|
1999
2008
|
device: IDevice | string;
|
|
2009
|
+
group: IInstagramAccountGroup | string;
|
|
2010
|
+
timeImport: Date;
|
|
2011
|
+
statusImport: string;
|
|
2012
|
+
statusSyncAccount: EStatusSyncAccountSocial;
|
|
2013
|
+
timeSyncAccount: Date;
|
|
2014
|
+
accountSocialSync: IInstagramAccountRun;
|
|
2000
2015
|
statusLogin: EStatusLoginAccountSocial;
|
|
2001
2016
|
timeLogin: Date;
|
|
2002
2017
|
promptAvatar: string;
|
|
@@ -2528,6 +2543,7 @@ type index$5_IAccountEmail = IAccountEmail;
|
|
|
2528
2543
|
type index$5_IAccountEmailProxy = IAccountEmailProxy;
|
|
2529
2544
|
type index$5_IAccountEmailTag = IAccountEmailTag;
|
|
2530
2545
|
type index$5_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
2546
|
+
type index$5_IAccountSocialBase = IAccountSocialBase;
|
|
2531
2547
|
type index$5_IAccountVPN = IAccountVPN;
|
|
2532
2548
|
type index$5_IAccountVPS = IAccountVPS;
|
|
2533
2549
|
type index$5_IAccountVPSGroup = IAccountVPSGroup;
|
|
@@ -2539,9 +2555,9 @@ type index$5_IDeviceSettingForVPN = IDeviceSettingForVPN;
|
|
|
2539
2555
|
type index$5_IInstagramAccountGroup = IInstagramAccountGroup;
|
|
2540
2556
|
type index$5_IInstagramAccountRaw = IInstagramAccountRaw;
|
|
2541
2557
|
type index$5_IInstagramAccountRun = IInstagramAccountRun;
|
|
2542
|
-
type index$
|
|
2543
|
-
type index$
|
|
2544
|
-
type index$
|
|
2558
|
+
type index$5_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
|
|
2559
|
+
type index$5_IInstagramHistoryChangeCreate = IInstagramHistoryChangeCreate;
|
|
2560
|
+
type index$5_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
|
2545
2561
|
type index$5_IManagerImageAI = IManagerImageAI;
|
|
2546
2562
|
type index$5_IManagerImageAIItemStore = IManagerImageAIItemStore;
|
|
2547
2563
|
type index$5_IManagerImageAIUserAttached = IManagerImageAIUserAttached;
|
|
@@ -2556,15 +2572,15 @@ type index$5_ISheetsTool = ISheetsTool;
|
|
|
2556
2572
|
type index$5_IThreadsAccountGroup = IThreadsAccountGroup;
|
|
2557
2573
|
type index$5_IThreadsAccountRaw = IThreadsAccountRaw;
|
|
2558
2574
|
type index$5_IThreadsAccountRun = IThreadsAccountRun;
|
|
2559
|
-
type index$
|
|
2560
|
-
type index$
|
|
2561
|
-
type index$
|
|
2575
|
+
type index$5_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
|
|
2576
|
+
type index$5_IThreadsHistoryChangeCreate = IThreadsHistoryChangeCreate;
|
|
2577
|
+
type index$5_IThreadsHistoryGroup = IThreadsHistoryGroup;
|
|
2562
2578
|
type index$5_IVoiceGenerated = IVoiceGenerated;
|
|
2563
2579
|
type index$5_IVoiceLanguage = IVoiceLanguage;
|
|
2564
2580
|
type index$5_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
2565
2581
|
type index$5_IVoiceStores = IVoiceStores;
|
|
2566
2582
|
declare namespace index$5 {
|
|
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$
|
|
2583
|
+
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_IAccountSocialBase as IAccountSocialBase, 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 };
|
|
2568
2584
|
}
|
|
2569
2585
|
|
|
2570
2586
|
interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -3233,6 +3249,7 @@ type index$2_IAccountEmail = IAccountEmail;
|
|
|
3233
3249
|
type index$2_IAccountEmailProxy = IAccountEmailProxy;
|
|
3234
3250
|
type index$2_IAccountEmailTag = IAccountEmailTag;
|
|
3235
3251
|
type index$2_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
3252
|
+
type index$2_IAccountSocialBase = IAccountSocialBase;
|
|
3236
3253
|
type index$2_IAccountVPN = IAccountVPN;
|
|
3237
3254
|
type index$2_IAccountVPS = IAccountVPS;
|
|
3238
3255
|
type index$2_IAccountVPSGroup = IAccountVPSGroup;
|
|
@@ -3259,9 +3276,9 @@ type index$2_IIdea = IIdea;
|
|
|
3259
3276
|
type index$2_IInstagramAccountGroup = IInstagramAccountGroup;
|
|
3260
3277
|
type index$2_IInstagramAccountRaw = IInstagramAccountRaw;
|
|
3261
3278
|
type index$2_IInstagramAccountRun = IInstagramAccountRun;
|
|
3262
|
-
type index$
|
|
3263
|
-
type index$
|
|
3264
|
-
type index$
|
|
3279
|
+
type index$2_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
|
|
3280
|
+
type index$2_IInstagramHistoryChangeCreate = IInstagramHistoryChangeCreate;
|
|
3281
|
+
type index$2_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
|
3265
3282
|
type index$2_IInstagramReportInteractExplore = IInstagramReportInteractExplore;
|
|
3266
3283
|
type index$2_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
|
|
3267
3284
|
type index$2_IInstagramReportInteractReel = IInstagramReportInteractReel;
|
|
@@ -3325,9 +3342,9 @@ type index$2_ITeamRole = ITeamRole;
|
|
|
3325
3342
|
type index$2_IThreadsAccountGroup = IThreadsAccountGroup;
|
|
3326
3343
|
type index$2_IThreadsAccountRaw = IThreadsAccountRaw;
|
|
3327
3344
|
type index$2_IThreadsAccountRun = IThreadsAccountRun;
|
|
3328
|
-
type index$
|
|
3329
|
-
type index$
|
|
3330
|
-
type index$
|
|
3345
|
+
type index$2_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
|
|
3346
|
+
type index$2_IThreadsHistoryChangeCreate = IThreadsHistoryChangeCreate;
|
|
3347
|
+
type index$2_IThreadsHistoryGroup = IThreadsHistoryGroup;
|
|
3331
3348
|
type index$2_IThreadsReportInteractFollow = IThreadsReportInteractFollow;
|
|
3332
3349
|
type index$2_IThreadsReportInteractReplyComment = IThreadsReportInteractReplyComment;
|
|
3333
3350
|
type index$2_IThreadsReportPost = IThreadsReportPost;
|
|
@@ -3345,7 +3362,7 @@ type index$2_IVoiceLanguage = IVoiceLanguage;
|
|
|
3345
3362
|
type index$2_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
3346
3363
|
type index$2_IVoiceStores = IVoiceStores;
|
|
3347
3364
|
declare namespace index$2 {
|
|
3348
|
-
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$
|
|
3365
|
+
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_IAccountSocialBase as IAccountSocialBase, 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_IInstagramReportInteractExplore as IInstagramReportInteractExplore, type index$2_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$2_IInstagramReportInteractReel as IInstagramReportInteractReel, type index$2_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$2_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$2_IInstagramReportInteractStory as IInstagramReportInteractStory, type index$2_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$2_IInstagramReportPostNew as IInstagramReportPostNew, type index$2_IInstagramReportPostReel as IInstagramReportPostReel, type index$2_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$2_IInstagramReportPostStory as IInstagramReportPostStory, 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_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_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$2_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$2_IThreadsReportPost as IThreadsReportPost, 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 };
|
|
3349
3366
|
}
|
|
3350
3367
|
|
|
3351
3368
|
interface IDataUser {
|
|
@@ -3878,19 +3895,19 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
3878
3895
|
};
|
|
3879
3896
|
}
|
|
3880
3897
|
|
|
3881
|
-
interface
|
|
3898
|
+
interface FindInstagramHistoryGroupDto extends IBaseDto, IInstagramHistoryGroup {
|
|
3882
3899
|
}
|
|
3883
|
-
interface
|
|
3900
|
+
interface FilterInstagramHistoryGroupDto extends IBaseDto, IInstagramHistoryGroup {
|
|
3884
3901
|
}
|
|
3885
3902
|
|
|
3886
|
-
interface
|
|
3903
|
+
interface FindInstagramHistoryAutoSyncDto extends IBaseDto, IInstagramHistoryAutoSync {
|
|
3887
3904
|
}
|
|
3888
|
-
interface
|
|
3905
|
+
interface FilterInstagramHistoryAutoSyncDto extends IBaseDto, IInstagramHistoryAutoSync {
|
|
3889
3906
|
}
|
|
3890
3907
|
|
|
3891
|
-
interface
|
|
3908
|
+
interface FindInstagramHistoryChangeCreateDto extends IBaseDto, IInstagramHistoryChangeCreate {
|
|
3892
3909
|
}
|
|
3893
|
-
interface
|
|
3910
|
+
interface FilterInstagramHistoryChangeCreateDto extends IBaseDto, IInstagramHistoryChangeCreate {
|
|
3894
3911
|
}
|
|
3895
3912
|
|
|
3896
3913
|
interface FindThreadsAccountGroupDto extends IBaseDto, IThreadsAccountGroup {
|
|
@@ -4048,9 +4065,9 @@ type index_FilterIAccountAIImageInfoDto = FilterIAccountAIImageInfoDto;
|
|
|
4048
4065
|
type index_FilterIAccountAIVoiceInfoDto = FilterIAccountAIVoiceInfoDto;
|
|
4049
4066
|
type index_FilterIAccountEmailDto = FilterIAccountEmailDto;
|
|
4050
4067
|
type index_FilterIManagerImageAIDto = FilterIManagerImageAIDto;
|
|
4051
|
-
type
|
|
4052
|
-
type
|
|
4053
|
-
type
|
|
4068
|
+
type index_FilterInstagramHistoryAutoSyncDto = FilterInstagramHistoryAutoSyncDto;
|
|
4069
|
+
type index_FilterInstagramHistoryChangeCreateDto = FilterInstagramHistoryChangeCreateDto;
|
|
4070
|
+
type index_FilterInstagramHistoryGroupDto = FilterInstagramHistoryGroupDto;
|
|
4054
4071
|
type index_FilterInstagramReportInteractExploreDto = FilterInstagramReportInteractExploreDto;
|
|
4055
4072
|
type index_FilterInstagramReportInteractFollowDto = FilterInstagramReportInteractFollowDto;
|
|
4056
4073
|
type index_FilterInstagramReportInteractReelDto = FilterInstagramReportInteractReelDto;
|
|
@@ -4122,9 +4139,9 @@ type index_FindIAccountAIImageInfoDto = FindIAccountAIImageInfoDto;
|
|
|
4122
4139
|
type index_FindIAccountAIVoiceInfoDto = FindIAccountAIVoiceInfoDto;
|
|
4123
4140
|
type index_FindIAccountEmailDto = FindIAccountEmailDto;
|
|
4124
4141
|
type index_FindIManagerImageAIDto = FindIManagerImageAIDto;
|
|
4125
|
-
type
|
|
4126
|
-
type
|
|
4127
|
-
type
|
|
4142
|
+
type index_FindInstagramHistoryAutoSyncDto = FindInstagramHistoryAutoSyncDto;
|
|
4143
|
+
type index_FindInstagramHistoryChangeCreateDto = FindInstagramHistoryChangeCreateDto;
|
|
4144
|
+
type index_FindInstagramHistoryGroupDto = FindInstagramHistoryGroupDto;
|
|
4128
4145
|
type index_FindInstagramReportInteractExploreDto = FindInstagramReportInteractExploreDto;
|
|
4129
4146
|
type index_FindInstagramReportInteractFollowDto = FindInstagramReportInteractFollowDto;
|
|
4130
4147
|
type index_FindInstagramReportInteractReelDto = FindInstagramReportInteractReelDto;
|
|
@@ -4183,7 +4200,7 @@ type index_IBaseSheetImportDto = IBaseSheetImportDto;
|
|
|
4183
4200
|
type index_ImportDto = ImportDto;
|
|
4184
4201
|
type index_OverviewUserDto = OverviewUserDto;
|
|
4185
4202
|
declare namespace index {
|
|
4186
|
-
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_FilterInstagramReportAutoSyncDto as FilterInstagramReportAutoSyncDto, index_FilterInstagramReportChangeCreateDto as FilterInstagramReportChangeCreateDto, index_FilterInstagramReportGroupDto as FilterInstagramReportGroupDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, 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_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, 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_FindInstagramReportAutoSyncDto as FindInstagramReportAutoSyncDto, index_FindInstagramReportChangeCreateDto as FindInstagramReportChangeCreateDto, index_FindInstagramReportGroupDto as FindInstagramReportGroupDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, 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_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, 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_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto };
|
|
4203
|
+
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_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeCreateDto as FilterInstagramHistoryChangeCreateDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, 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_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, 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_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeCreateDto as FindInstagramHistoryChangeCreateDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, 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_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, 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_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto };
|
|
4187
4204
|
}
|
|
4188
4205
|
|
|
4189
|
-
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
|
|
4206
|
+
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 FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostStoryDto, 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 FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportPostDto, 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 FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostStoryDto, 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 FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportPostDto, 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 IAccountSocialBase, 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 IInstagramHistoryChangeCreate, type IInstagramHistoryGroup, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, 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 IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportPost, 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 };
|