automation-lib 5.0.240 → 5.0.243
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 +275 -60
- package/dist/index.d.ts +275 -60
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1807,15 +1807,6 @@ interface IAccountSocialBase extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1807
1807
|
newPassword: string;
|
|
1808
1808
|
}
|
|
1809
1809
|
|
|
1810
|
-
interface IThreadsHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
1811
|
-
}
|
|
1812
|
-
|
|
1813
|
-
interface IThreadsHistoryChangeCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
1814
|
-
}
|
|
1815
|
-
|
|
1816
|
-
interface IThreadsHistoryGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1817
|
-
}
|
|
1818
|
-
|
|
1819
1810
|
interface IThreadsAccountGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1820
1811
|
name: string;
|
|
1821
1812
|
slug: string;
|
|
@@ -1944,13 +1935,110 @@ interface IThreadsAccountRaw extends IBaseModel, IAccountSocialBase, ITrackingMo
|
|
|
1944
1935
|
note: string;
|
|
1945
1936
|
}
|
|
1946
1937
|
|
|
1947
|
-
interface
|
|
1938
|
+
interface IThreadsHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
1939
|
+
accountId: string;
|
|
1940
|
+
accountUsername: string;
|
|
1941
|
+
accountEmail: string;
|
|
1942
|
+
statusSyncAccount?: EStatusAccountSocialSync;
|
|
1943
|
+
timeSyncAccount?: Date;
|
|
1944
|
+
accountSocialSync?: IThreadsAccountRun;
|
|
1945
|
+
email?: string;
|
|
1946
|
+
emailPassword?: string;
|
|
1947
|
+
email2FA?: string;
|
|
1948
|
+
emailRecover?: string;
|
|
1949
|
+
accountRaw: string | IThreadsAccountRaw;
|
|
1950
|
+
accountRun: string | IThreadsAccountRun;
|
|
1951
|
+
timeAction: Date;
|
|
1952
|
+
note: string;
|
|
1948
1953
|
}
|
|
1949
1954
|
|
|
1950
|
-
interface
|
|
1955
|
+
interface IThreadsHistoryCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
1956
|
+
accountID: string;
|
|
1957
|
+
accountUsername: string;
|
|
1958
|
+
accountEmail: string;
|
|
1959
|
+
typeSocial: ETypeSocial;
|
|
1960
|
+
sheetImport: string | ISheetImport;
|
|
1961
|
+
sheetUrl: string;
|
|
1962
|
+
sheetName: string;
|
|
1963
|
+
timeImport: Date;
|
|
1964
|
+
statusImport: EStatusAccountSocialImport;
|
|
1965
|
+
noteImport: string;
|
|
1966
|
+
accountDeviceType: string;
|
|
1967
|
+
accountDeviceName: string;
|
|
1968
|
+
idea: string | IManagerWork;
|
|
1969
|
+
niche: string | IManagerWork;
|
|
1970
|
+
pc: IPC | string;
|
|
1971
|
+
deviceKey: string;
|
|
1972
|
+
device: IDevice | string;
|
|
1973
|
+
group: IThreadsAccountGroup | string;
|
|
1974
|
+
originalEmail: string;
|
|
1975
|
+
originalEmailPassword: string;
|
|
1976
|
+
originalUsername: string;
|
|
1977
|
+
originalFullname: string;
|
|
1978
|
+
originalPassword: string;
|
|
1979
|
+
originalCode2FA: string;
|
|
1980
|
+
accountRaw: string | IThreadsAccountRaw;
|
|
1981
|
+
accountRun: string | IThreadsAccountRun;
|
|
1982
|
+
timeAction: Date;
|
|
1983
|
+
note: string;
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1986
|
+
interface IThreadsHistoryChange extends IBaseModel, ITrackingModel<IUser> {
|
|
1987
|
+
accountID: string;
|
|
1988
|
+
accountUsername: string;
|
|
1989
|
+
accountEmail: string;
|
|
1990
|
+
changeType: 'AVATAR' | 'COVER' | 'USERNAME' | 'FULLNAME' | 'EMAIL' | 'PASSWORD' | '2FA' | 'BIO' | 'ACCOUNT_SETTING';
|
|
1991
|
+
promptAvatar?: string;
|
|
1992
|
+
oldAvatar?: string | IFile;
|
|
1993
|
+
newAvatar?: string | IFile;
|
|
1994
|
+
statusChangeAvatar?: EStatusChangeInfo;
|
|
1995
|
+
timeChangeAvatar?: Date;
|
|
1996
|
+
promptCover?: string;
|
|
1997
|
+
oldCover?: string | IFile;
|
|
1998
|
+
newCover?: string | IFile;
|
|
1999
|
+
statusChangeCover?: EStatusChangeInfo;
|
|
2000
|
+
timeChangeCover?: Date;
|
|
2001
|
+
oldUsername?: string;
|
|
2002
|
+
newUsername?: string;
|
|
2003
|
+
statusChangeUsername?: EStatusChangeInfo;
|
|
2004
|
+
timeChangeUserName?: Date;
|
|
2005
|
+
oldFullname?: string;
|
|
2006
|
+
newFullname?: string;
|
|
2007
|
+
statusChangeFullname?: EStatusChangeInfo;
|
|
2008
|
+
timeChangeFullname?: Date;
|
|
2009
|
+
oldEmail?: string;
|
|
2010
|
+
newEmail?: string;
|
|
2011
|
+
statusChangeEmail?: EStatusChangeInfo;
|
|
2012
|
+
timeChangeEmail?: Date;
|
|
2013
|
+
oldCode2FA?: string;
|
|
2014
|
+
newCode2FA?: string;
|
|
2015
|
+
statusChange2fa?: EStatusChangeInfo;
|
|
2016
|
+
timeChange2FA?: Date;
|
|
2017
|
+
oldPassword?: string;
|
|
2018
|
+
newPassword?: string;
|
|
2019
|
+
statusChangePassword?: EStatusChangeInfo;
|
|
2020
|
+
timeChangePassword?: Date;
|
|
2021
|
+
oldBio?: string[];
|
|
2022
|
+
newBio?: string[];
|
|
2023
|
+
totalLinkBio?: string[];
|
|
2024
|
+
statusChangeBio?: string;
|
|
2025
|
+
timeChangeBio?: Date;
|
|
2026
|
+
accountRaw: string | IThreadsAccountRaw;
|
|
2027
|
+
accountRun: string | IThreadsAccountRun;
|
|
2028
|
+
timeAction: Date;
|
|
2029
|
+
note: string;
|
|
1951
2030
|
}
|
|
1952
2031
|
|
|
1953
|
-
interface
|
|
2032
|
+
interface IThreadsHistoryGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
2033
|
+
accountId: string;
|
|
2034
|
+
accountUsername: string;
|
|
2035
|
+
accountEmail: string;
|
|
2036
|
+
oldGroup: IThreadsAccountGroup | string;
|
|
2037
|
+
newGroup: IThreadsAccountGroup | string;
|
|
2038
|
+
accountRaw: string | IThreadsAccountRaw;
|
|
2039
|
+
accountRun: string | IThreadsAccountRun;
|
|
2040
|
+
timeAction: Date;
|
|
2041
|
+
note: string;
|
|
1954
2042
|
}
|
|
1955
2043
|
|
|
1956
2044
|
interface IInstagramAccountGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -2081,6 +2169,115 @@ interface IInstagramAccountRaw extends IBaseModel, IAccountSocialBase, ITracking
|
|
|
2081
2169
|
note: string;
|
|
2082
2170
|
}
|
|
2083
2171
|
|
|
2172
|
+
interface IInstagramHistoryGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
2173
|
+
accountId: string;
|
|
2174
|
+
accountUsername: string;
|
|
2175
|
+
accountEmail: string;
|
|
2176
|
+
oldGroup: IInstagramAccountGroup | string;
|
|
2177
|
+
newGroup: IInstagramAccountGroup | string;
|
|
2178
|
+
accountRaw: string | IInstagramAccountRaw;
|
|
2179
|
+
accountRun: string | IInstagramAccountRun;
|
|
2180
|
+
timeAction: Date;
|
|
2181
|
+
note: string;
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
interface IInstagramHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
2185
|
+
accountId: string;
|
|
2186
|
+
accountUsername: string;
|
|
2187
|
+
accountEmail: string;
|
|
2188
|
+
statusSyncAccount?: EStatusAccountSocialSync;
|
|
2189
|
+
timeSyncAccount?: Date;
|
|
2190
|
+
accountSocialSync?: IInstagramAccountRun;
|
|
2191
|
+
email?: string;
|
|
2192
|
+
emailPassword?: string;
|
|
2193
|
+
email2FA?: string;
|
|
2194
|
+
emailRecover?: string;
|
|
2195
|
+
accountRaw: string | IInstagramAccountRaw;
|
|
2196
|
+
accountRun: string | IInstagramAccountRun;
|
|
2197
|
+
timeAction: Date;
|
|
2198
|
+
note: string;
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
interface IInstagramHistoryCreate extends IBaseModel, ITrackingModel<IUser> {
|
|
2202
|
+
accountID: string;
|
|
2203
|
+
accountUsername: string;
|
|
2204
|
+
accountEmail: string;
|
|
2205
|
+
typeSocial: ETypeSocial;
|
|
2206
|
+
sheetImport: string | ISheetImport;
|
|
2207
|
+
sheetUrl: string;
|
|
2208
|
+
sheetName: string;
|
|
2209
|
+
timeImport: Date;
|
|
2210
|
+
statusImport: EStatusAccountSocialImport;
|
|
2211
|
+
noteImport: string;
|
|
2212
|
+
accountDeviceType: string;
|
|
2213
|
+
accountDeviceName: string;
|
|
2214
|
+
idea: string | IManagerWork;
|
|
2215
|
+
niche: string | IManagerWork;
|
|
2216
|
+
pc: IPC | string;
|
|
2217
|
+
deviceKey: string;
|
|
2218
|
+
device: IDevice | string;
|
|
2219
|
+
group: IInstagramAccountGroup | string;
|
|
2220
|
+
originalEmail: string;
|
|
2221
|
+
originalEmailPassword: string;
|
|
2222
|
+
originalUsername: string;
|
|
2223
|
+
originalFullname: string;
|
|
2224
|
+
originalPassword: string;
|
|
2225
|
+
originalCode2FA: string;
|
|
2226
|
+
accountRaw: string | IInstagramAccountRaw;
|
|
2227
|
+
accountRun: string | IInstagramAccountRun;
|
|
2228
|
+
timeAction: Date;
|
|
2229
|
+
note: string;
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
interface IInstagramHistoryChange extends IBaseModel, ITrackingModel<IUser> {
|
|
2233
|
+
accountID: string;
|
|
2234
|
+
accountUsername: string;
|
|
2235
|
+
accountEmail: string;
|
|
2236
|
+
changeType: 'AVATAR' | 'COVER' | 'USERNAME' | 'FULLNAME' | 'EMAIL' | 'PASSWORD' | '2FA' | 'BIO' | 'ACCOUNT_SETTING';
|
|
2237
|
+
promptAvatar?: string;
|
|
2238
|
+
oldAvatar?: string | IFile;
|
|
2239
|
+
newAvatar?: string | IFile;
|
|
2240
|
+
statusChangeAvatar?: EStatusChangeInfo;
|
|
2241
|
+
timeChangeAvatar?: Date;
|
|
2242
|
+
promptCover?: string;
|
|
2243
|
+
oldCover?: string | IFile;
|
|
2244
|
+
newCover?: string | IFile;
|
|
2245
|
+
statusChangeCover?: EStatusChangeInfo;
|
|
2246
|
+
timeChangeCover?: Date;
|
|
2247
|
+
oldUsername?: string;
|
|
2248
|
+
newUsername?: string;
|
|
2249
|
+
statusChangeUsername?: EStatusChangeInfo;
|
|
2250
|
+
timeChangeUserName?: Date;
|
|
2251
|
+
oldFullname?: string;
|
|
2252
|
+
newFullname?: string;
|
|
2253
|
+
statusChangeFullname?: EStatusChangeInfo;
|
|
2254
|
+
timeChangeFullname?: Date;
|
|
2255
|
+
oldEmail?: string;
|
|
2256
|
+
newEmail?: string;
|
|
2257
|
+
statusChangeEmail?: EStatusChangeInfo;
|
|
2258
|
+
timeChangeEmail?: Date;
|
|
2259
|
+
oldCode2FA?: string;
|
|
2260
|
+
newCode2FA?: string;
|
|
2261
|
+
statusChange2fa?: EStatusChangeInfo;
|
|
2262
|
+
timeChange2FA?: Date;
|
|
2263
|
+
oldPassword?: string;
|
|
2264
|
+
newPassword?: string;
|
|
2265
|
+
statusChangePassword?: EStatusChangeInfo;
|
|
2266
|
+
timeChangePassword?: Date;
|
|
2267
|
+
oldBio?: string[];
|
|
2268
|
+
newBio?: string[];
|
|
2269
|
+
totalLinkBio?: string[];
|
|
2270
|
+
statusChangeBio?: string;
|
|
2271
|
+
timeChangeBio?: Date;
|
|
2272
|
+
oldAccountSetting?: ETypeAccountInstagramSetting;
|
|
2273
|
+
newAccountSetting?: ETypeAccountInstagramSetting;
|
|
2274
|
+
statusAccountSetting?: EStatusAccountSocialSetting;
|
|
2275
|
+
accountRaw: string | IInstagramAccountRaw;
|
|
2276
|
+
accountRun: string | IInstagramAccountRun;
|
|
2277
|
+
timeAction: Date;
|
|
2278
|
+
note: string;
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2084
2281
|
interface ISheetsTool extends IBaseModel, ITrackingModel<IUser> {
|
|
2085
2282
|
sheet_typeSocial: ETypeSocial;
|
|
2086
2283
|
sheet_type: ESheetToolCommon | ESheetToolInstagram | ESheetToolThreads;
|
|
@@ -2579,7 +2776,8 @@ type index$5_IInstagramAccountGroup = IInstagramAccountGroup;
|
|
|
2579
2776
|
type index$5_IInstagramAccountRaw = IInstagramAccountRaw;
|
|
2580
2777
|
type index$5_IInstagramAccountRun = IInstagramAccountRun;
|
|
2581
2778
|
type index$5_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
|
|
2582
|
-
type index$
|
|
2779
|
+
type index$5_IInstagramHistoryChange = IInstagramHistoryChange;
|
|
2780
|
+
type index$5_IInstagramHistoryCreate = IInstagramHistoryCreate;
|
|
2583
2781
|
type index$5_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
|
2584
2782
|
type index$5_IManagerImageAI = IManagerImageAI;
|
|
2585
2783
|
type index$5_IManagerImageAIItemStore = IManagerImageAIItemStore;
|
|
@@ -2596,14 +2794,15 @@ type index$5_IThreadsAccountGroup = IThreadsAccountGroup;
|
|
|
2596
2794
|
type index$5_IThreadsAccountRaw = IThreadsAccountRaw;
|
|
2597
2795
|
type index$5_IThreadsAccountRun = IThreadsAccountRun;
|
|
2598
2796
|
type index$5_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
|
|
2599
|
-
type index$
|
|
2797
|
+
type index$5_IThreadsHistoryChange = IThreadsHistoryChange;
|
|
2798
|
+
type index$5_IThreadsHistoryCreate = IThreadsHistoryCreate;
|
|
2600
2799
|
type index$5_IThreadsHistoryGroup = IThreadsHistoryGroup;
|
|
2601
2800
|
type index$5_IVoiceGenerated = IVoiceGenerated;
|
|
2602
2801
|
type index$5_IVoiceLanguage = IVoiceLanguage;
|
|
2603
2802
|
type index$5_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
2604
2803
|
type index$5_IVoiceStores = IVoiceStores;
|
|
2605
2804
|
declare namespace index$5 {
|
|
2606
|
-
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$
|
|
2805
|
+
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_IInstagramHistoryChange as IInstagramHistoryChange, type index$5_IInstagramHistoryCreate as IInstagramHistoryCreate, 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_IThreadsHistoryChange as IThreadsHistoryChange, type index$5_IThreadsHistoryCreate as IThreadsHistoryCreate, 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 };
|
|
2607
2806
|
}
|
|
2608
2807
|
|
|
2609
2808
|
interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -3336,7 +3535,8 @@ type index$2_IInstagramAccountGroup = IInstagramAccountGroup;
|
|
|
3336
3535
|
type index$2_IInstagramAccountRaw = IInstagramAccountRaw;
|
|
3337
3536
|
type index$2_IInstagramAccountRun = IInstagramAccountRun;
|
|
3338
3537
|
type index$2_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
|
|
3339
|
-
type index$
|
|
3538
|
+
type index$2_IInstagramHistoryChange = IInstagramHistoryChange;
|
|
3539
|
+
type index$2_IInstagramHistoryCreate = IInstagramHistoryCreate;
|
|
3340
3540
|
type index$2_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
|
3341
3541
|
type index$2_IInstagramReportInteractExplore = IInstagramReportInteractExplore;
|
|
3342
3542
|
type index$2_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
|
|
@@ -3402,7 +3602,8 @@ type index$2_IThreadsAccountGroup = IThreadsAccountGroup;
|
|
|
3402
3602
|
type index$2_IThreadsAccountRaw = IThreadsAccountRaw;
|
|
3403
3603
|
type index$2_IThreadsAccountRun = IThreadsAccountRun;
|
|
3404
3604
|
type index$2_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
|
|
3405
|
-
type index$
|
|
3605
|
+
type index$2_IThreadsHistoryChange = IThreadsHistoryChange;
|
|
3606
|
+
type index$2_IThreadsHistoryCreate = IThreadsHistoryCreate;
|
|
3406
3607
|
type index$2_IThreadsHistoryGroup = IThreadsHistoryGroup;
|
|
3407
3608
|
type index$2_IThreadsReportInteractFollow = IThreadsReportInteractFollow;
|
|
3408
3609
|
type index$2_IThreadsReportInteractReplyComment = IThreadsReportInteractReplyComment;
|
|
@@ -3423,7 +3624,7 @@ type index$2_IVoiceLanguage = IVoiceLanguage;
|
|
|
3423
3624
|
type index$2_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
3424
3625
|
type index$2_IVoiceStores = IVoiceStores;
|
|
3425
3626
|
declare namespace index$2 {
|
|
3426
|
-
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$
|
|
3627
|
+
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_IInstagramHistoryChange as IInstagramHistoryChange, type index$2_IInstagramHistoryCreate as IInstagramHistoryCreate, 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_IThreadsHistoryChange as IThreadsHistoryChange, type index$2_IThreadsHistoryCreate as IThreadsHistoryCreate, type index$2_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$2_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$2_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$2_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$2_IThreadsReportPost as IThreadsReportPost, type index$2_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$2_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$2_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, 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 };
|
|
3427
3628
|
}
|
|
3428
3629
|
|
|
3429
3630
|
interface IDataUser {
|
|
@@ -3527,9 +3728,9 @@ interface ExportDto {
|
|
|
3527
3728
|
}
|
|
3528
3729
|
|
|
3529
3730
|
interface FilterBaseDto {
|
|
3731
|
+
department: string;
|
|
3530
3732
|
team: string;
|
|
3531
3733
|
leader: string;
|
|
3532
|
-
department: string;
|
|
3533
3734
|
createdBy: string;
|
|
3534
3735
|
updatedBy: string;
|
|
3535
3736
|
createdAt: [Date, Date];
|
|
@@ -3977,22 +4178,32 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
3977
4178
|
};
|
|
3978
4179
|
}
|
|
3979
4180
|
|
|
3980
|
-
interface
|
|
4181
|
+
interface FindThreadsHistoryGroupDto extends IBaseDto, IThreadsHistoryGroup {
|
|
3981
4182
|
}
|
|
3982
|
-
interface
|
|
4183
|
+
interface FilterThreadsHistoryGroupDto extends IFilterBaseDto, Omit<IThreadsHistoryGroup, TOmitFilterDto> {
|
|
3983
4184
|
}
|
|
3984
4185
|
|
|
3985
|
-
interface
|
|
4186
|
+
interface FindThreadsHistoryAutoSyncDto extends IBaseDto, IThreadsHistoryAutoSync {
|
|
3986
4187
|
}
|
|
3987
|
-
interface
|
|
4188
|
+
interface FilterThreadsHistoryAutoSyncDto extends IFilterBaseDto, Omit<IThreadsHistoryAutoSync, TOmitFilterDto> {
|
|
3988
4189
|
}
|
|
3989
4190
|
|
|
3990
|
-
interface
|
|
4191
|
+
interface FindThreadsHistoryCreateDto extends IBaseDto, IThreadsHistoryCreate {
|
|
3991
4192
|
}
|
|
3992
|
-
interface
|
|
4193
|
+
interface FilterThreadsHistoryCreateDto extends IFilterBaseDto, Omit<IThreadsHistoryCreate, TOmitFilterDto> {
|
|
3993
4194
|
}
|
|
3994
4195
|
|
|
3995
|
-
interface
|
|
4196
|
+
interface FindThreadsHistoryChangeDto extends IBaseDto, IThreadsHistoryChange {
|
|
4197
|
+
}
|
|
4198
|
+
interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, Omit<IThreadsHistoryChange, TOmitFilterDto> {
|
|
4199
|
+
}
|
|
4200
|
+
|
|
4201
|
+
interface FindThreadsAccountGroupDto extends IBaseDto, IThreadsAccountGroup {
|
|
4202
|
+
}
|
|
4203
|
+
interface FilterThreadsAccountGroupDto extends IFilterBaseDto, Omit<IThreadsAccountGroup, TOmitFilterDto> {
|
|
4204
|
+
}
|
|
4205
|
+
|
|
4206
|
+
interface FindThreadsAccountRawDto extends IBaseDto, IThreadsAccountRaw {
|
|
3996
4207
|
deviceInfo: {
|
|
3997
4208
|
key: string;
|
|
3998
4209
|
name: string;
|
|
@@ -4023,7 +4234,7 @@ interface IInstagramAccountRawDto extends IBaseDto, IInstagramAccountRaw {
|
|
|
4023
4234
|
time: Date;
|
|
4024
4235
|
};
|
|
4025
4236
|
}
|
|
4026
|
-
interface
|
|
4237
|
+
interface AutoFillOverviewThreadsAccountRawDto {
|
|
4027
4238
|
idea: {
|
|
4028
4239
|
colName: string;
|
|
4029
4240
|
colSymbol: string;
|
|
@@ -4045,7 +4256,7 @@ interface AutoFillOverviewInstagramAccountRawDto {
|
|
|
4045
4256
|
listValsOnCol: string[];
|
|
4046
4257
|
};
|
|
4047
4258
|
}
|
|
4048
|
-
interface
|
|
4259
|
+
interface FilterThreadsAccountRawDto extends IBaseDto, IThreadsAccountRaw {
|
|
4049
4260
|
accountGroup: string;
|
|
4050
4261
|
accountType: string;
|
|
4051
4262
|
idea: string;
|
|
@@ -4078,7 +4289,7 @@ interface FilterInstagramAccountRawDto extends IBaseDto, IInstagramAccountRaw {
|
|
|
4078
4289
|
assignmentStatus: string;
|
|
4079
4290
|
statusCreateFolder: string;
|
|
4080
4291
|
}
|
|
4081
|
-
interface
|
|
4292
|
+
interface FindOverViewThreadsAccountRowDto {
|
|
4082
4293
|
totalAccounts: number;
|
|
4083
4294
|
totalIdeas: number;
|
|
4084
4295
|
totalNiches: number;
|
|
@@ -4160,7 +4371,7 @@ interface FindOverViewInstagramAccountRawDto {
|
|
|
4160
4371
|
failed: number;
|
|
4161
4372
|
};
|
|
4162
4373
|
}
|
|
4163
|
-
interface
|
|
4374
|
+
interface AutoFillThreadsAccountRawDto {
|
|
4164
4375
|
idea: {
|
|
4165
4376
|
id: string;
|
|
4166
4377
|
name: string;
|
|
@@ -4197,7 +4408,7 @@ interface AutoFillInstagramAccountRawDto {
|
|
|
4197
4408
|
timeExecuteCover: Date;
|
|
4198
4409
|
}
|
|
4199
4410
|
|
|
4200
|
-
interface
|
|
4411
|
+
interface FindThreadsAccountRunDto extends IBaseDto, IThreadsAccountRun {
|
|
4201
4412
|
type: ETypeManagerWorkType;
|
|
4202
4413
|
pcInfo: {
|
|
4203
4414
|
name: string;
|
|
@@ -4241,7 +4452,7 @@ interface FindInstagramAccountRunDto extends IBaseDto, IInstagramAccountRun {
|
|
|
4241
4452
|
totalPostFollower: number;
|
|
4242
4453
|
totalPostFollowing: number;
|
|
4243
4454
|
}
|
|
4244
|
-
interface
|
|
4455
|
+
interface FilterThreadsAccountRunDto extends IBaseDto, IThreadsAccountRun {
|
|
4245
4456
|
deviceType: ETypeDeviceOS;
|
|
4246
4457
|
deviceConnectStatus: string;
|
|
4247
4458
|
pcAssignment: string;
|
|
@@ -4273,7 +4484,7 @@ interface FilterInstagramAccountRunDto extends IBaseDto, IInstagramAccountRun {
|
|
|
4273
4484
|
createdDateRange: [Date, Date];
|
|
4274
4485
|
updatedDateRange: [Date, Date];
|
|
4275
4486
|
}
|
|
4276
|
-
interface
|
|
4487
|
+
interface FindOverViewThreadsAccountDto {
|
|
4277
4488
|
totalAccounts: number;
|
|
4278
4489
|
totalDevices: number;
|
|
4279
4490
|
totalPC: number;
|
|
@@ -4298,32 +4509,27 @@ interface FindOverViewInstagramAccountRunDto {
|
|
|
4298
4509
|
totalDepartments: number;
|
|
4299
4510
|
}
|
|
4300
4511
|
|
|
4301
|
-
interface
|
|
4302
|
-
}
|
|
4303
|
-
interface FilterInstagramAccountGroupDto extends IFilterBaseDto, Omit<IInstagramAccountGroup, TOmitFilterDto> {
|
|
4304
|
-
}
|
|
4305
|
-
|
|
4306
|
-
interface FindThreadsHistoryGroupDto extends IBaseDto, IThreadsHistoryGroup {
|
|
4512
|
+
interface FindInstagramHistoryGroupDto extends IBaseDto, IInstagramHistoryGroup {
|
|
4307
4513
|
}
|
|
4308
|
-
interface
|
|
4514
|
+
interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, Omit<IInstagramHistoryGroup, TOmitFilterDto> {
|
|
4309
4515
|
}
|
|
4310
4516
|
|
|
4311
|
-
interface
|
|
4517
|
+
interface FindInstagramHistoryAutoSyncDto extends IBaseDto, IInstagramHistoryAutoSync {
|
|
4312
4518
|
}
|
|
4313
|
-
interface
|
|
4519
|
+
interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, Omit<IInstagramHistoryAutoSync, TOmitFilterDto> {
|
|
4314
4520
|
}
|
|
4315
4521
|
|
|
4316
|
-
interface
|
|
4522
|
+
interface FindInstagramHistoryCreateDto extends IBaseDto, IInstagramHistoryCreate {
|
|
4317
4523
|
}
|
|
4318
|
-
interface
|
|
4524
|
+
interface FilterInstagramHistoryCreateDto extends IFilterBaseDto, Omit<IInstagramHistoryCreate, TOmitFilterDto> {
|
|
4319
4525
|
}
|
|
4320
4526
|
|
|
4321
|
-
interface
|
|
4527
|
+
interface FindInstagramHistoryChangeDto extends IBaseDto, IInstagramHistoryChange {
|
|
4322
4528
|
}
|
|
4323
|
-
interface
|
|
4529
|
+
interface FilterInstagramHistoryChangeDto extends IFilterBaseDto, Omit<IInstagramHistoryChange, TOmitFilterDto> {
|
|
4324
4530
|
}
|
|
4325
4531
|
|
|
4326
|
-
interface
|
|
4532
|
+
interface IInstagramAccountRawDto extends IBaseDto, IInstagramAccountRaw {
|
|
4327
4533
|
deviceInfo: {
|
|
4328
4534
|
key: string;
|
|
4329
4535
|
name: string;
|
|
@@ -4354,7 +4560,7 @@ interface FindThreadsAccountRawDto extends IBaseDto, IThreadsAccountRaw {
|
|
|
4354
4560
|
time: Date;
|
|
4355
4561
|
};
|
|
4356
4562
|
}
|
|
4357
|
-
interface
|
|
4563
|
+
interface AutoFillOverviewInstagramAccountRawDto {
|
|
4358
4564
|
idea: {
|
|
4359
4565
|
colName: string;
|
|
4360
4566
|
colSymbol: string;
|
|
@@ -4376,7 +4582,7 @@ interface AutoFillOverviewThreadsAccountRawDto {
|
|
|
4376
4582
|
listValsOnCol: string[];
|
|
4377
4583
|
};
|
|
4378
4584
|
}
|
|
4379
|
-
interface
|
|
4585
|
+
interface FilterInstagramAccountRawDto extends IBaseDto, IInstagramAccountRaw {
|
|
4380
4586
|
accountGroup: string;
|
|
4381
4587
|
accountType: string;
|
|
4382
4588
|
idea: string;
|
|
@@ -4409,7 +4615,7 @@ interface FilterThreadsAccountRawDto extends IBaseDto, IThreadsAccountRaw {
|
|
|
4409
4615
|
assignmentStatus: string;
|
|
4410
4616
|
statusCreateFolder: string;
|
|
4411
4617
|
}
|
|
4412
|
-
interface
|
|
4618
|
+
interface FindOverViewInstagramAccountRawDto {
|
|
4413
4619
|
totalAccounts: number;
|
|
4414
4620
|
totalIdeas: number;
|
|
4415
4621
|
totalNiches: number;
|
|
@@ -4491,7 +4697,7 @@ interface FindOverViewThreadsAccountRowDto {
|
|
|
4491
4697
|
failed: number;
|
|
4492
4698
|
};
|
|
4493
4699
|
}
|
|
4494
|
-
interface
|
|
4700
|
+
interface AutoFillInstagramAccountRawDto {
|
|
4495
4701
|
idea: {
|
|
4496
4702
|
id: string;
|
|
4497
4703
|
name: string;
|
|
@@ -4528,7 +4734,7 @@ interface AutoFillThreadsAccountRawDto {
|
|
|
4528
4734
|
timeExecuteCover: Date;
|
|
4529
4735
|
}
|
|
4530
4736
|
|
|
4531
|
-
interface
|
|
4737
|
+
interface FindInstagramAccountRunDto extends IBaseDto, IInstagramAccountRun {
|
|
4532
4738
|
type: ETypeManagerWorkType;
|
|
4533
4739
|
pcInfo: {
|
|
4534
4740
|
name: string;
|
|
@@ -4572,7 +4778,7 @@ interface FindThreadsAccountRunDto extends IBaseDto, IThreadsAccountRun {
|
|
|
4572
4778
|
totalPostFollower: number;
|
|
4573
4779
|
totalPostFollowing: number;
|
|
4574
4780
|
}
|
|
4575
|
-
interface
|
|
4781
|
+
interface FilterInstagramAccountRunDto extends IBaseDto, IInstagramAccountRun {
|
|
4576
4782
|
deviceType: ETypeDeviceOS;
|
|
4577
4783
|
deviceConnectStatus: string;
|
|
4578
4784
|
pcAssignment: string;
|
|
@@ -4604,7 +4810,7 @@ interface FilterThreadsAccountRunDto extends IBaseDto, IThreadsAccountRun {
|
|
|
4604
4810
|
createdDateRange: [Date, Date];
|
|
4605
4811
|
updatedDateRange: [Date, Date];
|
|
4606
4812
|
}
|
|
4607
|
-
interface
|
|
4813
|
+
interface FindOverViewInstagramAccountRunDto {
|
|
4608
4814
|
totalAccounts: number;
|
|
4609
4815
|
totalDevices: number;
|
|
4610
4816
|
totalPC: number;
|
|
@@ -4629,6 +4835,11 @@ interface FindOverViewThreadsAccountDto {
|
|
|
4629
4835
|
totalDepartments: number;
|
|
4630
4836
|
}
|
|
4631
4837
|
|
|
4838
|
+
interface FindInstagramAccountGroupDto extends IBaseDto, IInstagramAccountGroup {
|
|
4839
|
+
}
|
|
4840
|
+
interface FilterInstagramAccountGroupDto extends IFilterBaseDto, Omit<IInstagramAccountGroup, TOmitFilterDto> {
|
|
4841
|
+
}
|
|
4842
|
+
|
|
4632
4843
|
interface FindDeviceDto extends IBaseDto, IDevice {
|
|
4633
4844
|
}
|
|
4634
4845
|
interface FilterDeviceDto extends IFilterBaseDto, Omit<IDevice, TOmitFilterDto> {
|
|
@@ -4787,7 +4998,8 @@ type index_FilterInstagramAccountGroupDto = FilterInstagramAccountGroupDto;
|
|
|
4787
4998
|
type index_FilterInstagramAccountRawDto = FilterInstagramAccountRawDto;
|
|
4788
4999
|
type index_FilterInstagramAccountRunDto = FilterInstagramAccountRunDto;
|
|
4789
5000
|
type index_FilterInstagramHistoryAutoSyncDto = FilterInstagramHistoryAutoSyncDto;
|
|
4790
|
-
type
|
|
5001
|
+
type index_FilterInstagramHistoryChangeDto = FilterInstagramHistoryChangeDto;
|
|
5002
|
+
type index_FilterInstagramHistoryCreateDto = FilterInstagramHistoryCreateDto;
|
|
4791
5003
|
type index_FilterInstagramHistoryGroupDto = FilterInstagramHistoryGroupDto;
|
|
4792
5004
|
type index_FilterInstagramReportInteractExploreDto = FilterInstagramReportInteractExploreDto;
|
|
4793
5005
|
type index_FilterInstagramReportInteractFollowDto = FilterInstagramReportInteractFollowDto;
|
|
@@ -4833,7 +5045,8 @@ type index_FilterThreadsAccountGroupDto = FilterThreadsAccountGroupDto;
|
|
|
4833
5045
|
type index_FilterThreadsAccountRawDto = FilterThreadsAccountRawDto;
|
|
4834
5046
|
type index_FilterThreadsAccountRunDto = FilterThreadsAccountRunDto;
|
|
4835
5047
|
type index_FilterThreadsHistoryAutoSyncDto = FilterThreadsHistoryAutoSyncDto;
|
|
4836
|
-
type
|
|
5048
|
+
type index_FilterThreadsHistoryChangeDto = FilterThreadsHistoryChangeDto;
|
|
5049
|
+
type index_FilterThreadsHistoryCreateDto = FilterThreadsHistoryCreateDto;
|
|
4837
5050
|
type index_FilterThreadsHistoryGroupDto = FilterThreadsHistoryGroupDto;
|
|
4838
5051
|
type index_FilterThreadsReportInteractFollowDto = FilterThreadsReportInteractFollowDto;
|
|
4839
5052
|
type index_FilterThreadsReportInteractReplyCommentDto = FilterThreadsReportInteractReplyCommentDto;
|
|
@@ -4868,7 +5081,8 @@ type index_FindIManagerImageAIDto = FindIManagerImageAIDto;
|
|
|
4868
5081
|
type index_FindInstagramAccountGroupDto = FindInstagramAccountGroupDto;
|
|
4869
5082
|
type index_FindInstagramAccountRunDto = FindInstagramAccountRunDto;
|
|
4870
5083
|
type index_FindInstagramHistoryAutoSyncDto = FindInstagramHistoryAutoSyncDto;
|
|
4871
|
-
type
|
|
5084
|
+
type index_FindInstagramHistoryChangeDto = FindInstagramHistoryChangeDto;
|
|
5085
|
+
type index_FindInstagramHistoryCreateDto = FindInstagramHistoryCreateDto;
|
|
4872
5086
|
type index_FindInstagramHistoryGroupDto = FindInstagramHistoryGroupDto;
|
|
4873
5087
|
type index_FindInstagramReportInteractExploreDto = FindInstagramReportInteractExploreDto;
|
|
4874
5088
|
type index_FindInstagramReportInteractFollowDto = FindInstagramReportInteractFollowDto;
|
|
@@ -4923,7 +5137,8 @@ type index_FindThreadsAccountGroupDto = FindThreadsAccountGroupDto;
|
|
|
4923
5137
|
type index_FindThreadsAccountRawDto = FindThreadsAccountRawDto;
|
|
4924
5138
|
type index_FindThreadsAccountRunDto = FindThreadsAccountRunDto;
|
|
4925
5139
|
type index_FindThreadsHistoryAutoSyncDto = FindThreadsHistoryAutoSyncDto;
|
|
4926
|
-
type
|
|
5140
|
+
type index_FindThreadsHistoryChangeDto = FindThreadsHistoryChangeDto;
|
|
5141
|
+
type index_FindThreadsHistoryCreateDto = FindThreadsHistoryCreateDto;
|
|
4927
5142
|
type index_FindThreadsHistoryGroupDto = FindThreadsHistoryGroupDto;
|
|
4928
5143
|
type index_FindThreadsReportInteractFollowDto = FindThreadsReportInteractFollowDto;
|
|
4929
5144
|
type index_FindThreadsReportInteractReplyCommentDto = FindThreadsReportInteractReplyCommentDto;
|
|
@@ -4940,7 +5155,7 @@ type index_ImportDto = ImportDto;
|
|
|
4940
5155
|
type index_OverviewUserDto = OverviewUserDto;
|
|
4941
5156
|
type index_TOmitFilterDto = TOmitFilterDto;
|
|
4942
5157
|
declare namespace index {
|
|
4943
|
-
export type { index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, 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_FilterInstagramAccountGroupDto as FilterInstagramAccountGroupDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, 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_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeCreateDto as FilterThreadsHistoryChangeCreateDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, 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_FindInstagramAccountGroupDto as FindInstagramAccountGroupDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, 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_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, 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_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeCreateDto as FindThreadsHistoryChangeCreateDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, 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_IFilterBaseDto as IFilterBaseDto, index_IInstagramAccountRawDto as IInstagramAccountRawDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto };
|
|
5158
|
+
export type { index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, 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_FilterInstagramAccountGroupDto as FilterInstagramAccountGroupDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeDto as FilterInstagramHistoryChangeDto, index_FilterInstagramHistoryCreateDto as FilterInstagramHistoryCreateDto, 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_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index_FilterThreadsHistoryCreateDto as FilterThreadsHistoryCreateDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, 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_FindInstagramAccountGroupDto as FindInstagramAccountGroupDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeDto as FindInstagramHistoryChangeDto, index_FindInstagramHistoryCreateDto as FindInstagramHistoryCreateDto, 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_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, 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_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index_FindThreadsHistoryCreateDto as FindThreadsHistoryCreateDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, 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_IFilterBaseDto as IFilterBaseDto, index_IInstagramAccountRawDto as IInstagramAccountRawDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto };
|
|
4944
5159
|
}
|
|
4945
5160
|
|
|
4946
|
-
export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, 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 FilterInstagramAccountGroupDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, 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 FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeCreateDto, type FilterThreadsHistoryGroupDto, 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 FindInstagramAccountGroupDto, type FindInstagramAccountRunDto, 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 FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, 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 FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeCreateDto, type FindThreadsHistoryGroupDto, 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 IFilterBaseDto, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountGroup, type IInstagramAccountRaw, type IInstagramAccountRawDto, 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 IThreadsReportInteractReplyMessage, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, 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, type TOmitFilterDto, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, index$a as Web };
|
|
5161
|
+
export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, 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 FilterInstagramAccountGroupDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeDto, type FilterInstagramHistoryCreateDto, 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 FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateDto, type FilterThreadsHistoryGroupDto, 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 FindInstagramAccountGroupDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeDto, type FindInstagramHistoryCreateDto, 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 FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, 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 FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, 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 IFilterBaseDto, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountGroup, type IInstagramAccountRaw, type IInstagramAccountRawDto, type IInstagramAccountRun, type IInstagramHistoryAutoSync, type IInstagramHistoryChange, type IInstagramHistoryCreate, 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 IThreadsHistoryChange, type IThreadsHistoryCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyMessage, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, 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, type TOmitFilterDto, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, index$a as Web };
|