automation-lib 5.0.178 → 5.0.181
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 +160 -147
- package/dist/index.d.ts +160 -147
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -459,7 +459,8 @@ declare enum EStatusVPS {
|
|
|
459
459
|
declare enum EStatusActive {
|
|
460
460
|
Active = "Active",
|
|
461
461
|
Inactive = "Inactive",
|
|
462
|
-
Pending = "Pending"
|
|
462
|
+
Pending = "Pending",
|
|
463
|
+
Error = "Error"
|
|
463
464
|
}
|
|
464
465
|
|
|
465
466
|
declare enum EStatusChangeInfo {
|
|
@@ -1554,20 +1555,15 @@ interface IAccountCHPlayICloud extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1554
1555
|
note: string;
|
|
1555
1556
|
}
|
|
1556
1557
|
|
|
1557
|
-
interface IAccountsGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1558
|
-
ag_name: string;
|
|
1559
|
-
ag_slug: string;
|
|
1560
|
-
}
|
|
1561
|
-
|
|
1562
1558
|
interface IPC extends IBaseModel, ITrackingModel<IUser> {
|
|
1563
1559
|
pc_name: string;
|
|
1564
1560
|
pc_description: string;
|
|
1565
1561
|
}
|
|
1566
1562
|
|
|
1567
1563
|
interface IDevice extends IBaseModel, ITrackingModel<IUser> {
|
|
1564
|
+
sheetImport: string | ISheetImport;
|
|
1568
1565
|
sheetUrl: string;
|
|
1569
1566
|
sheetName: string;
|
|
1570
|
-
rowId: string;
|
|
1571
1567
|
pc: IPC | string;
|
|
1572
1568
|
os: ETypeDeviceOS;
|
|
1573
1569
|
model: string;
|
|
@@ -1578,10 +1574,15 @@ interface IDevice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1578
1574
|
maximumAccountApplyPerSocial: number;
|
|
1579
1575
|
statusConnect: EStatusConnectDevice;
|
|
1580
1576
|
statusSetupBasic: EStatusSetupDeviceSystem;
|
|
1581
|
-
|
|
1577
|
+
statusCHPlayICloud: EStatusAccountCHPlayICloud;
|
|
1582
1578
|
note: string;
|
|
1583
1579
|
}
|
|
1584
1580
|
|
|
1581
|
+
interface IAccountsGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
1582
|
+
ag_name: string;
|
|
1583
|
+
ag_slug: string;
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1585
1586
|
interface IAccount extends IBaseModel, ITrackingModel<IUser> {
|
|
1586
1587
|
group: IAccountsGroup | string;
|
|
1587
1588
|
typeSocial: ETypeSocial;
|
|
@@ -2447,7 +2448,7 @@ interface INiche extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2447
2448
|
niche_idea: string | IIdea;
|
|
2448
2449
|
}
|
|
2449
2450
|
|
|
2450
|
-
interface
|
|
2451
|
+
interface IThreadsHistoryPostNew extends IBaseModel, ITrackingModel<IUser> {
|
|
2451
2452
|
idea: string | IManagerWork;
|
|
2452
2453
|
niche: string | IManagerWork;
|
|
2453
2454
|
pc: string | IPC;
|
|
@@ -2470,7 +2471,7 @@ interface IThreadsPostNew extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2470
2471
|
timeEnd: Date;
|
|
2471
2472
|
}
|
|
2472
2473
|
|
|
2473
|
-
interface
|
|
2474
|
+
interface IThreadsHistoryInteractFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
2474
2475
|
idea: string | IManagerWork;
|
|
2475
2476
|
niche: string | IManagerWork;
|
|
2476
2477
|
pc: string | IPC;
|
|
@@ -2484,7 +2485,7 @@ interface IThreadsInteractFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2484
2485
|
timeEnd: Date;
|
|
2485
2486
|
}
|
|
2486
2487
|
|
|
2487
|
-
interface
|
|
2488
|
+
interface IThreadsHistoryInteractReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
2488
2489
|
idea: string | IManagerWork;
|
|
2489
2490
|
niche: string | IManagerWork;
|
|
2490
2491
|
pc: string | IPC;
|
|
@@ -2587,7 +2588,7 @@ interface IThreadsSettingInteractReplyComment extends IBaseModel, ITrackingModel
|
|
|
2587
2588
|
isReplyCommentsPostOfMe: boolean;
|
|
2588
2589
|
}
|
|
2589
2590
|
|
|
2590
|
-
interface
|
|
2591
|
+
interface IInstagramHistoryPostHighLight extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2591
2592
|
sheetUrl: string;
|
|
2592
2593
|
sheetName: string;
|
|
2593
2594
|
sheetPageName: string;
|
|
@@ -2602,7 +2603,7 @@ interface IInstagramPostHighLight extends IBaseModel, ITrackingTimeScript, ITrac
|
|
|
2602
2603
|
statusDetail: string;
|
|
2603
2604
|
}
|
|
2604
2605
|
|
|
2605
|
-
interface
|
|
2606
|
+
interface IInstagramHistoryPostNew extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2606
2607
|
sheetUrl: string;
|
|
2607
2608
|
sheetName: string;
|
|
2608
2609
|
sheetPageName: string;
|
|
@@ -2625,7 +2626,7 @@ interface IInstagramPostNew extends IBaseModel, ITrackingTimeScript, ITrackingMo
|
|
|
2625
2626
|
statusDetail: string;
|
|
2626
2627
|
}
|
|
2627
2628
|
|
|
2628
|
-
interface
|
|
2629
|
+
interface IInstagramHistoryPostSquare extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2629
2630
|
sheetUrl: string;
|
|
2630
2631
|
sheetName: string;
|
|
2631
2632
|
sheetPageName: string;
|
|
@@ -2648,7 +2649,7 @@ interface IInstagramPostSquare extends IBaseModel, ITrackingTimeScript, ITrackin
|
|
|
2648
2649
|
statusDetail: string;
|
|
2649
2650
|
}
|
|
2650
2651
|
|
|
2651
|
-
interface
|
|
2652
|
+
interface IInstagramHistoryPostReel extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2652
2653
|
sheetUrl: string;
|
|
2653
2654
|
sheetName: string;
|
|
2654
2655
|
sheetPageName: string;
|
|
@@ -2673,7 +2674,7 @@ interface IInstagramPostReel extends IBaseModel, ITrackingTimeScript, ITrackingM
|
|
|
2673
2674
|
statusDetail: string;
|
|
2674
2675
|
}
|
|
2675
2676
|
|
|
2676
|
-
interface
|
|
2677
|
+
interface IInstagramHistoryPostStory extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2677
2678
|
sheetUrl: string;
|
|
2678
2679
|
sheetName: string;
|
|
2679
2680
|
sheetPageName: string;
|
|
@@ -2908,7 +2909,7 @@ interface IInstagramSettingPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2908
2909
|
isTimeUs: boolean;
|
|
2909
2910
|
}
|
|
2910
2911
|
|
|
2911
|
-
interface
|
|
2912
|
+
interface IInstagramHistoryInteractReplyComment extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2912
2913
|
content: string;
|
|
2913
2914
|
userLink: string;
|
|
2914
2915
|
linkPost: string;
|
|
@@ -2922,7 +2923,7 @@ interface IInstagramInteractReplyComment extends IBaseModel, ITrackingTimeScript
|
|
|
2922
2923
|
statusDetail: string;
|
|
2923
2924
|
}
|
|
2924
2925
|
|
|
2925
|
-
interface
|
|
2926
|
+
interface IInstagramHistoryInteractReel extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2926
2927
|
idea: string | IManagerWork;
|
|
2927
2928
|
niche: string | IManagerWork;
|
|
2928
2929
|
device: IDevice | string;
|
|
@@ -2935,7 +2936,7 @@ interface IInstagramInteractReel extends IBaseModel, ITrackingTimeScript, ITrack
|
|
|
2935
2936
|
statusDetail: string;
|
|
2936
2937
|
}
|
|
2937
2938
|
|
|
2938
|
-
interface
|
|
2939
|
+
interface IInstagramHistoryInteractStory extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2939
2940
|
idea: string | IManagerWork;
|
|
2940
2941
|
niche: string | IManagerWork;
|
|
2941
2942
|
device: IDevice | string;
|
|
@@ -2950,7 +2951,7 @@ interface IInstagramInteractStory extends IBaseModel, ITrackingTimeScript, ITrac
|
|
|
2950
2951
|
statusDetail: string;
|
|
2951
2952
|
}
|
|
2952
2953
|
|
|
2953
|
-
interface
|
|
2954
|
+
interface IInstagramHistoryInteractExplore extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2954
2955
|
typeView: string;
|
|
2955
2956
|
numberLike: number;
|
|
2956
2957
|
minutesExecute: number;
|
|
@@ -2968,7 +2969,7 @@ interface IInteractSentMessageDetail {
|
|
|
2968
2969
|
content_message: string;
|
|
2969
2970
|
content_receiver: string;
|
|
2970
2971
|
}
|
|
2971
|
-
interface
|
|
2972
|
+
interface IInstagramHistoryInteractReplyMessage extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2972
2973
|
content: string;
|
|
2973
2974
|
receiver: string;
|
|
2974
2975
|
idea: string | IManagerWork;
|
|
@@ -2980,7 +2981,7 @@ interface IInstagramInteractReplyMessage extends IBaseModel, ITrackingTimeScript
|
|
|
2980
2981
|
statusDetail: string;
|
|
2981
2982
|
}
|
|
2982
2983
|
|
|
2983
|
-
interface
|
|
2984
|
+
interface IInstagramHistoryInteractFollow extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2984
2985
|
idea: string | IManagerWork;
|
|
2985
2986
|
niche: string | IManagerWork;
|
|
2986
2987
|
device: IDevice | string;
|
|
@@ -2995,17 +2996,17 @@ interface IInstagramInteractFollow extends IBaseModel, ITrackingTimeScript, ITra
|
|
|
2995
2996
|
}
|
|
2996
2997
|
|
|
2997
2998
|
type index$3_IIdea = IIdea;
|
|
2998
|
-
type index$
|
|
2999
|
-
type index$
|
|
3000
|
-
type index$
|
|
3001
|
-
type index$
|
|
3002
|
-
type index$
|
|
3003
|
-
type index$
|
|
3004
|
-
type index$
|
|
3005
|
-
type index$
|
|
3006
|
-
type index$
|
|
3007
|
-
type index$
|
|
3008
|
-
type index$
|
|
2999
|
+
type index$3_IInstagramHistoryInteractExplore = IInstagramHistoryInteractExplore;
|
|
3000
|
+
type index$3_IInstagramHistoryInteractFollow = IInstagramHistoryInteractFollow;
|
|
3001
|
+
type index$3_IInstagramHistoryInteractReel = IInstagramHistoryInteractReel;
|
|
3002
|
+
type index$3_IInstagramHistoryInteractReplyComment = IInstagramHistoryInteractReplyComment;
|
|
3003
|
+
type index$3_IInstagramHistoryInteractReplyMessage = IInstagramHistoryInteractReplyMessage;
|
|
3004
|
+
type index$3_IInstagramHistoryInteractStory = IInstagramHistoryInteractStory;
|
|
3005
|
+
type index$3_IInstagramHistoryPostHighLight = IInstagramHistoryPostHighLight;
|
|
3006
|
+
type index$3_IInstagramHistoryPostNew = IInstagramHistoryPostNew;
|
|
3007
|
+
type index$3_IInstagramHistoryPostReel = IInstagramHistoryPostReel;
|
|
3008
|
+
type index$3_IInstagramHistoryPostSquare = IInstagramHistoryPostSquare;
|
|
3009
|
+
type index$3_IInstagramHistoryPostStory = IInstagramHistoryPostStory;
|
|
3009
3010
|
type index$3_IInstagramSettingInteractExplore = IInstagramSettingInteractExplore;
|
|
3010
3011
|
type index$3_IInstagramSettingInteractFollow = IInstagramSettingInteractFollow;
|
|
3011
3012
|
type index$3_IInstagramSettingInteractReel = IInstagramSettingInteractReel;
|
|
@@ -3016,14 +3017,14 @@ type index$3_IInstagramSettingInteractUnFollow = IInstagramSettingInteractUnFoll
|
|
|
3016
3017
|
type index$3_IInstagramSettingPost = IInstagramSettingPost;
|
|
3017
3018
|
type index$3_IInteractSentMessageDetail = IInteractSentMessageDetail;
|
|
3018
3019
|
type index$3_INiche = INiche;
|
|
3019
|
-
type index$
|
|
3020
|
-
type index$
|
|
3021
|
-
type index$
|
|
3020
|
+
type index$3_IThreadsHistoryInteractFollow = IThreadsHistoryInteractFollow;
|
|
3021
|
+
type index$3_IThreadsHistoryInteractReplyComment = IThreadsHistoryInteractReplyComment;
|
|
3022
|
+
type index$3_IThreadsHistoryPostNew = IThreadsHistoryPostNew;
|
|
3022
3023
|
type index$3_IThreadsSettingInteractFollow = IThreadsSettingInteractFollow;
|
|
3023
3024
|
type index$3_IThreadsSettingInteractReplyComment = IThreadsSettingInteractReplyComment;
|
|
3024
3025
|
type index$3_IThreadsSettingPost = IThreadsSettingPost;
|
|
3025
3026
|
declare namespace index$3 {
|
|
3026
|
-
export type { index$3_IIdea as IIdea, index$
|
|
3027
|
+
export type { index$3_IIdea as IIdea, index$3_IInstagramHistoryInteractExplore as IInstagramHistoryInteractExplore, index$3_IInstagramHistoryInteractFollow as IInstagramHistoryInteractFollow, index$3_IInstagramHistoryInteractReel as IInstagramHistoryInteractReel, index$3_IInstagramHistoryInteractReplyComment as IInstagramHistoryInteractReplyComment, index$3_IInstagramHistoryInteractReplyMessage as IInstagramHistoryInteractReplyMessage, index$3_IInstagramHistoryInteractStory as IInstagramHistoryInteractStory, index$3_IInstagramHistoryPostHighLight as IInstagramHistoryPostHighLight, index$3_IInstagramHistoryPostNew as IInstagramHistoryPostNew, index$3_IInstagramHistoryPostReel as IInstagramHistoryPostReel, index$3_IInstagramHistoryPostSquare as IInstagramHistoryPostSquare, index$3_IInstagramHistoryPostStory as IInstagramHistoryPostStory, index$3_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, index$3_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, index$3_IInstagramSettingInteractReel as IInstagramSettingInteractReel, index$3_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, index$3_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, index$3_IInstagramSettingInteractStory as IInstagramSettingInteractStory, index$3_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, index$3_IInstagramSettingPost as IInstagramSettingPost, index$3_IInteractSentMessageDetail as IInteractSentMessageDetail, index$3_INiche as INiche, index$3_IThreadsHistoryInteractFollow as IThreadsHistoryInteractFollow, index$3_IThreadsHistoryInteractReplyComment as IThreadsHistoryInteractReplyComment, index$3_IThreadsHistoryPostNew as IThreadsHistoryPostNew, index$3_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, index$3_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, index$3_IThreadsSettingPost as IThreadsSettingPost };
|
|
3027
3028
|
}
|
|
3028
3029
|
|
|
3029
3030
|
type index$2_IAccount = IAccount;
|
|
@@ -3074,17 +3075,17 @@ type index$2_IHistoryTaskAIImage = IHistoryTaskAIImage;
|
|
|
3074
3075
|
type index$2_IHistoryTaskAIVoice = IHistoryTaskAIVoice;
|
|
3075
3076
|
type index$2_IHistoryTaskCanva = IHistoryTaskCanva;
|
|
3076
3077
|
type index$2_IIdea = IIdea;
|
|
3077
|
-
type index$
|
|
3078
|
-
type index$
|
|
3079
|
-
type index$
|
|
3080
|
-
type index$
|
|
3081
|
-
type index$
|
|
3082
|
-
type index$
|
|
3083
|
-
type index$
|
|
3084
|
-
type index$
|
|
3085
|
-
type index$
|
|
3086
|
-
type index$
|
|
3087
|
-
type index$
|
|
3078
|
+
type index$2_IInstagramHistoryInteractExplore = IInstagramHistoryInteractExplore;
|
|
3079
|
+
type index$2_IInstagramHistoryInteractFollow = IInstagramHistoryInteractFollow;
|
|
3080
|
+
type index$2_IInstagramHistoryInteractReel = IInstagramHistoryInteractReel;
|
|
3081
|
+
type index$2_IInstagramHistoryInteractReplyComment = IInstagramHistoryInteractReplyComment;
|
|
3082
|
+
type index$2_IInstagramHistoryInteractReplyMessage = IInstagramHistoryInteractReplyMessage;
|
|
3083
|
+
type index$2_IInstagramHistoryInteractStory = IInstagramHistoryInteractStory;
|
|
3084
|
+
type index$2_IInstagramHistoryPostHighLight = IInstagramHistoryPostHighLight;
|
|
3085
|
+
type index$2_IInstagramHistoryPostNew = IInstagramHistoryPostNew;
|
|
3086
|
+
type index$2_IInstagramHistoryPostReel = IInstagramHistoryPostReel;
|
|
3087
|
+
type index$2_IInstagramHistoryPostSquare = IInstagramHistoryPostSquare;
|
|
3088
|
+
type index$2_IInstagramHistoryPostStory = IInstagramHistoryPostStory;
|
|
3088
3089
|
type index$2_IInstagramSettingInteractExplore = IInstagramSettingInteractExplore;
|
|
3089
3090
|
type index$2_IInstagramSettingInteractFollow = IInstagramSettingInteractFollow;
|
|
3090
3091
|
type index$2_IInstagramSettingInteractReel = IInstagramSettingInteractReel;
|
|
@@ -3135,9 +3136,9 @@ type index$2_ITaskJobsGroup = ITaskJobsGroup;
|
|
|
3135
3136
|
type index$2_ITeam = ITeam;
|
|
3136
3137
|
type index$2_ITeamMember = ITeamMember;
|
|
3137
3138
|
type index$2_ITeamRole = ITeamRole;
|
|
3138
|
-
type index$
|
|
3139
|
-
type index$
|
|
3140
|
-
type index$
|
|
3139
|
+
type index$2_IThreadsHistoryInteractFollow = IThreadsHistoryInteractFollow;
|
|
3140
|
+
type index$2_IThreadsHistoryInteractReplyComment = IThreadsHistoryInteractReplyComment;
|
|
3141
|
+
type index$2_IThreadsHistoryPostNew = IThreadsHistoryPostNew;
|
|
3141
3142
|
type index$2_IThreadsSettingInteractFollow = IThreadsSettingInteractFollow;
|
|
3142
3143
|
type index$2_IThreadsSettingInteractReplyComment = IThreadsSettingInteractReplyComment;
|
|
3143
3144
|
type index$2_IThreadsSettingPost = IThreadsSettingPost;
|
|
@@ -3152,7 +3153,7 @@ type index$2_IVoiceLanguage = IVoiceLanguage;
|
|
|
3152
3153
|
type index$2_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
3153
3154
|
type index$2_IVoiceStores = IVoiceStores;
|
|
3154
3155
|
declare namespace index$2 {
|
|
3155
|
-
export { index$9 as Auth, index$a as Common, index$4 as History, type index$2_IAccount as IAccount, type index$2_IAccountAI as IAccountAI, type index$2_IAccountAIChannel as IAccountAIChannel, type index$2_IAccountAIGroup as IAccountAIGroup, 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_IAccountAIInfo as IAccountAIInfo, type index$2_IAccountAITag as IAccountAITag, 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_IAccountRaw as IAccountRaw, type index$2_IAccountVPN as IAccountVPN, type index$2_IAccountVPS as IAccountVPS, type index$2_IAccountVPSGroup as IAccountVPSGroup, type index$2_IAccountsGroup as IAccountsGroup, 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$
|
|
3156
|
+
export { index$9 as Auth, index$a as Common, index$4 as History, type index$2_IAccount as IAccount, type index$2_IAccountAI as IAccountAI, type index$2_IAccountAIChannel as IAccountAIChannel, type index$2_IAccountAIGroup as IAccountAIGroup, 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_IAccountAIInfo as IAccountAIInfo, type index$2_IAccountAITag as IAccountAITag, 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_IAccountRaw as IAccountRaw, type index$2_IAccountVPN as IAccountVPN, type index$2_IAccountVPS as IAccountVPS, type index$2_IAccountVPSGroup as IAccountVPSGroup, type index$2_IAccountsGroup as IAccountsGroup, 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_IInstagramHistoryInteractExplore as IInstagramHistoryInteractExplore, type index$2_IInstagramHistoryInteractFollow as IInstagramHistoryInteractFollow, type index$2_IInstagramHistoryInteractReel as IInstagramHistoryInteractReel, type index$2_IInstagramHistoryInteractReplyComment as IInstagramHistoryInteractReplyComment, type index$2_IInstagramHistoryInteractReplyMessage as IInstagramHistoryInteractReplyMessage, type index$2_IInstagramHistoryInteractStory as IInstagramHistoryInteractStory, type index$2_IInstagramHistoryPostHighLight as IInstagramHistoryPostHighLight, type index$2_IInstagramHistoryPostNew as IInstagramHistoryPostNew, type index$2_IInstagramHistoryPostReel as IInstagramHistoryPostReel, type index$2_IInstagramHistoryPostSquare as IInstagramHistoryPostSquare, type index$2_IInstagramHistoryPostStory as IInstagramHistoryPostStory, type index$2_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$2_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$2_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$2_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$2_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$2_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$2_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$2_IInstagramSettingPost as IInstagramSettingPost, type index$2_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$2_ILark as ILark, type index$2_ILarkTeam as ILarkTeam, type index$2_IManagerImageAI as IManagerImageAI, type index$2_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$2_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$2_IManagerSheet as IManagerSheet, type index$2_IManagerSheetChildren as IManagerSheetChildren, type index$2_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$2_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$2_IManagerSheetGroup as IManagerSheetGroup, type index$2_IManagerWork as IManagerWork, type index$2_IManagerWorkPin as IManagerWorkPin, type index$2_INiche as INiche, type index$2_IOtpConfirm as IOtpConfirm, type index$2_IOtpCreateSession as IOtpCreateSession, type index$2_IOtpSend as IOtpSend, type index$2_IPC as IPC, type index$2_IProxy as IProxy, type index$2_IRole as IRole, type index$2_IRoleFeature as IRoleFeature, type index$2_ISheetImport as ISheetImport, type index$2_ISheetWork as ISheetWork, type index$2_ISheetWorkManager as ISheetWorkManager, type index$2_ISheetWorkPin as ISheetWorkPin, type index$2_ISheetWorksCategory as ISheetWorksCategory, type index$2_ISheetsTool as ISheetsTool, type index$2_ITag as ITag, type index$2_ITaskJob as ITaskJob, type index$2_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$2_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$2_ITaskJobCheckList as ITaskJobCheckList, type index$2_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$2_ITaskJobDiscuss as ITaskJobDiscuss, type index$2_ITaskJobLabel as ITaskJobLabel, type index$2_ITaskJobPermission as ITaskJobPermission, type index$2_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$2_ITaskJobUserPermission as ITaskJobUserPermission, type index$2_ITaskJobsGroup as ITaskJobsGroup, type index$2_ITeam as ITeam, type index$2_ITeamMember as ITeamMember, type index$2_ITeamRole as ITeamRole, type index$2_IThreadsHistoryInteractFollow as IThreadsHistoryInteractFollow, type index$2_IThreadsHistoryInteractReplyComment as IThreadsHistoryInteractReplyComment, type index$2_IThreadsHistoryPostNew as IThreadsHistoryPostNew, 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$8 as Web };
|
|
3156
3157
|
}
|
|
3157
3158
|
|
|
3158
3159
|
interface IDataUser {
|
|
@@ -3279,19 +3280,19 @@ interface FindHistoryTaskAIContentDto extends IBaseDto, IHistoryTaskAIContent {
|
|
|
3279
3280
|
interface FilterHistoryTaskAIContentDto extends IBaseDto, IHistoryTaskAIContent {
|
|
3280
3281
|
}
|
|
3281
3282
|
|
|
3282
|
-
interface
|
|
3283
|
+
interface FindThreadsHistoryPostNewDto extends IBaseDto, IThreadsHistoryPostNew {
|
|
3283
3284
|
}
|
|
3284
|
-
interface
|
|
3285
|
+
interface FilterThreadsHistoryPostNewDto extends IBaseDto, IThreadsHistoryPostNew {
|
|
3285
3286
|
}
|
|
3286
3287
|
|
|
3287
|
-
interface
|
|
3288
|
+
interface FindThreadsHistoryInteractFollowDto extends IBaseDto, IThreadsHistoryInteractFollow {
|
|
3288
3289
|
}
|
|
3289
|
-
interface
|
|
3290
|
+
interface FilterThreadsHistoryInteractFollowDto extends IBaseDto, IThreadsHistoryInteractFollow {
|
|
3290
3291
|
}
|
|
3291
3292
|
|
|
3292
|
-
interface
|
|
3293
|
+
interface FindThreadsHistoryInteractReplyCommentDto extends IBaseDto, IThreadsHistoryInteractReplyComment {
|
|
3293
3294
|
}
|
|
3294
|
-
interface
|
|
3295
|
+
interface FilterThreadsHistoryInteractReplyCommentDto extends IBaseDto, IThreadsHistoryInteractReplyComment {
|
|
3295
3296
|
}
|
|
3296
3297
|
|
|
3297
3298
|
interface FindThreadsSettingPostDto extends IBaseDto, IThreadsSettingPost {
|
|
@@ -3309,54 +3310,54 @@ interface FindThreadsSettingInteractReplyCommentDto extends IBaseDto, IThreadsSe
|
|
|
3309
3310
|
interface FilterThreadsSettingInteractReplyCommentDto extends IBaseDto, IThreadsSettingInteractReplyComment {
|
|
3310
3311
|
}
|
|
3311
3312
|
|
|
3312
|
-
interface
|
|
3313
|
+
interface FindInstagramHistoryPostHighLightDto extends IBaseDto, IInstagramHistoryPostHighLight {
|
|
3313
3314
|
}
|
|
3314
|
-
interface
|
|
3315
|
+
interface FilterInstagramHistoryPostHighLightDto extends IBaseDto, IInstagramHistoryPostHighLight {
|
|
3315
3316
|
}
|
|
3316
3317
|
|
|
3317
|
-
interface
|
|
3318
|
+
interface FindInstagramHistoryPostNewDto extends IBaseDto, IInstagramHistoryPostNew {
|
|
3318
3319
|
}
|
|
3319
|
-
interface
|
|
3320
|
+
interface FilterInstagramHistoryPostNewDto extends IBaseDto, IInstagramHistoryPostNew {
|
|
3320
3321
|
}
|
|
3321
3322
|
|
|
3322
|
-
interface
|
|
3323
|
+
interface FindInstagramHistoryPostReelDto extends IBaseDto, IInstagramHistoryPostReel {
|
|
3323
3324
|
}
|
|
3324
|
-
interface
|
|
3325
|
+
interface FilterInstagramHistoryPostReelDto extends IBaseDto, IInstagramHistoryPostReel {
|
|
3325
3326
|
}
|
|
3326
3327
|
|
|
3327
|
-
interface
|
|
3328
|
+
interface FindInstagramHistoryPostStoryDto extends IBaseDto, IInstagramHistoryPostStory {
|
|
3328
3329
|
}
|
|
3329
|
-
interface
|
|
3330
|
+
interface FilterInstagramHistoryPostStoryDto extends IBaseDto, IInstagramHistoryPostStory {
|
|
3330
3331
|
}
|
|
3331
3332
|
|
|
3332
|
-
interface
|
|
3333
|
+
interface FindInstagramHistoryInteractReplyCommentDto extends IBaseDto, IInstagramHistoryInteractReplyComment {
|
|
3333
3334
|
}
|
|
3334
|
-
interface
|
|
3335
|
+
interface FilterInstagramHistoryInteractReplyCommentDto extends IBaseDto, IInstagramHistoryInteractReplyComment {
|
|
3335
3336
|
}
|
|
3336
3337
|
|
|
3337
|
-
interface
|
|
3338
|
+
interface FindInstagramHistoryInteractReelDto extends IBaseDto, IInstagramHistoryInteractReel {
|
|
3338
3339
|
}
|
|
3339
|
-
interface
|
|
3340
|
+
interface FilterInstagramHistoryInteractReelDto extends IBaseDto, IInstagramHistoryInteractReel {
|
|
3340
3341
|
}
|
|
3341
3342
|
|
|
3342
|
-
interface
|
|
3343
|
+
interface FindInstagramHistoryInteractStoryDto extends IBaseDto, IInstagramHistoryInteractStory {
|
|
3343
3344
|
}
|
|
3344
|
-
interface
|
|
3345
|
+
interface FilterInstagramHistoryInteractStoryDto extends IBaseDto, IInstagramHistoryInteractStory {
|
|
3345
3346
|
}
|
|
3346
3347
|
|
|
3347
|
-
interface
|
|
3348
|
+
interface FindInstagramHistoryInteractExploreDto extends IBaseDto, IInstagramHistoryInteractExplore {
|
|
3348
3349
|
}
|
|
3349
|
-
interface
|
|
3350
|
+
interface FilterInstagramHistoryInteractExploreDto extends IBaseDto, IInstagramHistoryInteractExplore {
|
|
3350
3351
|
}
|
|
3351
3352
|
|
|
3352
|
-
interface
|
|
3353
|
+
interface FindInstagramHistoryInteractReplyMessageDto extends IBaseDto, IInstagramHistoryInteractReplyMessage {
|
|
3353
3354
|
}
|
|
3354
|
-
interface
|
|
3355
|
+
interface FilterInstagramHistoryInteractReplyMessageDto extends IBaseDto, IInstagramHistoryInteractReplyMessage {
|
|
3355
3356
|
}
|
|
3356
3357
|
|
|
3357
|
-
interface
|
|
3358
|
+
interface FindInstagramHistoryInteractFollowDto extends IBaseDto, IInstagramHistoryInteractFollow {
|
|
3358
3359
|
}
|
|
3359
|
-
interface
|
|
3360
|
+
interface FilterInstagramHistoryInteractFollowDto extends IBaseDto, IInstagramHistoryInteractFollow {
|
|
3360
3361
|
}
|
|
3361
3362
|
|
|
3362
3363
|
interface FindInstagramSettingInteractExploreDto extends IBaseDto, IInstagramSettingInteractExplore {
|
|
@@ -3685,11 +3686,6 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
3685
3686
|
};
|
|
3686
3687
|
}
|
|
3687
3688
|
|
|
3688
|
-
interface FindAccountsGroupDto extends IBaseDto, IAccountsGroup {
|
|
3689
|
-
}
|
|
3690
|
-
interface FilterAccountsGroupDto extends IBaseDto, IAccountsGroup {
|
|
3691
|
-
}
|
|
3692
|
-
|
|
3693
3689
|
interface FindAccountDto extends IBaseDto, IAccount {
|
|
3694
3690
|
type: ETypeManagerWorkType;
|
|
3695
3691
|
pcInfo: {
|
|
@@ -3844,42 +3840,6 @@ interface AutoFillOverviewAccountRawDto {
|
|
|
3844
3840
|
listValsOnCol: string[];
|
|
3845
3841
|
};
|
|
3846
3842
|
}
|
|
3847
|
-
interface AutoFillAccountRawDto {
|
|
3848
|
-
idea: {
|
|
3849
|
-
id: string;
|
|
3850
|
-
name: string;
|
|
3851
|
-
};
|
|
3852
|
-
niche: {
|
|
3853
|
-
id: string;
|
|
3854
|
-
name: string;
|
|
3855
|
-
};
|
|
3856
|
-
accountId: {
|
|
3857
|
-
id: string;
|
|
3858
|
-
val: string;
|
|
3859
|
-
};
|
|
3860
|
-
oldUsername: {
|
|
3861
|
-
id: string;
|
|
3862
|
-
name: string;
|
|
3863
|
-
};
|
|
3864
|
-
newUsername: string;
|
|
3865
|
-
newFullname: string;
|
|
3866
|
-
timeExecuteChangeInfo: Date;
|
|
3867
|
-
newBio: string;
|
|
3868
|
-
timeExecuteBio: Date;
|
|
3869
|
-
newPassword: string;
|
|
3870
|
-
timeExecutePassword: Date;
|
|
3871
|
-
new2FA: string;
|
|
3872
|
-
isTurnOn2FA: boolean;
|
|
3873
|
-
timeExecute2FA: Date;
|
|
3874
|
-
newEmail: string;
|
|
3875
|
-
timeExecuteEmail: Date;
|
|
3876
|
-
newLinks: string[];
|
|
3877
|
-
timeExecuteLinks: Date;
|
|
3878
|
-
newAvatar: string;
|
|
3879
|
-
timeExecuteAvatar: Date;
|
|
3880
|
-
newCover: string;
|
|
3881
|
-
timeExecuteCover: Date;
|
|
3882
|
-
}
|
|
3883
3843
|
interface FilterAccountRawDto extends IBaseDto, IAccountRaw {
|
|
3884
3844
|
accountGroup: string;
|
|
3885
3845
|
accountType: string;
|
|
@@ -3995,6 +3955,56 @@ interface FindOverViewAccountRowDto {
|
|
|
3995
3955
|
failed: number;
|
|
3996
3956
|
};
|
|
3997
3957
|
}
|
|
3958
|
+
interface AutoFillAccountRawDto {
|
|
3959
|
+
idea: {
|
|
3960
|
+
id: string;
|
|
3961
|
+
name: string;
|
|
3962
|
+
};
|
|
3963
|
+
niche: {
|
|
3964
|
+
id: string;
|
|
3965
|
+
name: string;
|
|
3966
|
+
};
|
|
3967
|
+
accountId: {
|
|
3968
|
+
id: string;
|
|
3969
|
+
val: string;
|
|
3970
|
+
};
|
|
3971
|
+
oldUsername: {
|
|
3972
|
+
id: string;
|
|
3973
|
+
name: string;
|
|
3974
|
+
};
|
|
3975
|
+
newUsername: string;
|
|
3976
|
+
newFullname: string;
|
|
3977
|
+
timeExecuteChangeInfo: Date;
|
|
3978
|
+
newBio: string;
|
|
3979
|
+
timeExecuteBio: Date;
|
|
3980
|
+
newPassword: string;
|
|
3981
|
+
timeExecutePassword: Date;
|
|
3982
|
+
new2FA: string;
|
|
3983
|
+
isTurnOn2FA: boolean;
|
|
3984
|
+
timeExecute2FA: Date;
|
|
3985
|
+
newEmail: string;
|
|
3986
|
+
timeExecuteEmail: Date;
|
|
3987
|
+
newLinks: string[];
|
|
3988
|
+
timeExecuteLinks: Date;
|
|
3989
|
+
newAvatar: string;
|
|
3990
|
+
timeExecuteAvatar: Date;
|
|
3991
|
+
newCover: string;
|
|
3992
|
+
timeExecuteCover: Date;
|
|
3993
|
+
}
|
|
3994
|
+
|
|
3995
|
+
interface FindAccountSocialRawGroupDto extends IBaseDto {
|
|
3996
|
+
}
|
|
3997
|
+
|
|
3998
|
+
interface FindAccountSocialRawChangeCreateDto extends IBaseDto {
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4001
|
+
interface FindAccountSocialRawAutoSyncDto extends IBaseDto {
|
|
4002
|
+
}
|
|
4003
|
+
|
|
4004
|
+
interface FindAccountsGroupDto extends IBaseDto, IAccountsGroup {
|
|
4005
|
+
}
|
|
4006
|
+
interface FilterAccountsGroupDto extends IBaseDto, IAccountsGroup {
|
|
4007
|
+
}
|
|
3998
4008
|
|
|
3999
4009
|
interface FindDeviceDto extends IBaseDto, IDevice {
|
|
4000
4010
|
}
|
|
@@ -4151,16 +4161,16 @@ type index_FilterIAccountAIInfoDto = FilterIAccountAIInfoDto;
|
|
|
4151
4161
|
type index_FilterIAccountAIVoiceInfoDto = FilterIAccountAIVoiceInfoDto;
|
|
4152
4162
|
type index_FilterIAccountEmailDto = FilterIAccountEmailDto;
|
|
4153
4163
|
type index_FilterIManagerImageAIDto = FilterIManagerImageAIDto;
|
|
4154
|
-
type
|
|
4155
|
-
type
|
|
4156
|
-
type
|
|
4157
|
-
type
|
|
4158
|
-
type
|
|
4159
|
-
type
|
|
4160
|
-
type
|
|
4161
|
-
type
|
|
4162
|
-
type
|
|
4163
|
-
type
|
|
4164
|
+
type index_FilterInstagramHistoryInteractExploreDto = FilterInstagramHistoryInteractExploreDto;
|
|
4165
|
+
type index_FilterInstagramHistoryInteractFollowDto = FilterInstagramHistoryInteractFollowDto;
|
|
4166
|
+
type index_FilterInstagramHistoryInteractReelDto = FilterInstagramHistoryInteractReelDto;
|
|
4167
|
+
type index_FilterInstagramHistoryInteractReplyCommentDto = FilterInstagramHistoryInteractReplyCommentDto;
|
|
4168
|
+
type index_FilterInstagramHistoryInteractReplyMessageDto = FilterInstagramHistoryInteractReplyMessageDto;
|
|
4169
|
+
type index_FilterInstagramHistoryInteractStoryDto = FilterInstagramHistoryInteractStoryDto;
|
|
4170
|
+
type index_FilterInstagramHistoryPostHighLightDto = FilterInstagramHistoryPostHighLightDto;
|
|
4171
|
+
type index_FilterInstagramHistoryPostNewDto = FilterInstagramHistoryPostNewDto;
|
|
4172
|
+
type index_FilterInstagramHistoryPostReelDto = FilterInstagramHistoryPostReelDto;
|
|
4173
|
+
type index_FilterInstagramHistoryPostStoryDto = FilterInstagramHistoryPostStoryDto;
|
|
4164
4174
|
type index_FilterInstagramSettingInteractExploreDto = FilterInstagramSettingInteractExploreDto;
|
|
4165
4175
|
type index_FilterInstagramSettingInteractFollowDto = FilterInstagramSettingInteractFollowDto;
|
|
4166
4176
|
type index_FilterInstagramSettingInteractReelDto = FilterInstagramSettingInteractReelDto;
|
|
@@ -4191,9 +4201,9 @@ type index_FilterTaskThreadsPostDto = FilterTaskThreadsPostDto;
|
|
|
4191
4201
|
type index_FilterTaskThreadsReplyCommentDto = FilterTaskThreadsReplyCommentDto;
|
|
4192
4202
|
type index_FilterTaskToolMonitorDto = FilterTaskToolMonitorDto;
|
|
4193
4203
|
type index_FilterTeamDto = FilterTeamDto;
|
|
4194
|
-
type
|
|
4195
|
-
type
|
|
4196
|
-
type
|
|
4204
|
+
type index_FilterThreadsHistoryInteractFollowDto = FilterThreadsHistoryInteractFollowDto;
|
|
4205
|
+
type index_FilterThreadsHistoryInteractReplyCommentDto = FilterThreadsHistoryInteractReplyCommentDto;
|
|
4206
|
+
type index_FilterThreadsHistoryPostNewDto = FilterThreadsHistoryPostNewDto;
|
|
4197
4207
|
type index_FilterThreadsSettingInteractFollowDto = FilterThreadsSettingInteractFollowDto;
|
|
4198
4208
|
type index_FilterThreadsSettingInteractReplyCommentDto = FilterThreadsSettingInteractReplyCommentDto;
|
|
4199
4209
|
type index_FilterThreadsSettingPostDto = FilterThreadsSettingPostDto;
|
|
@@ -4206,6 +4216,9 @@ type index_FindAccountCanvaDto = FindAccountCanvaDto;
|
|
|
4206
4216
|
type index_FindAccountDriveDto = FindAccountDriveDto;
|
|
4207
4217
|
type index_FindAccountDto = FindAccountDto;
|
|
4208
4218
|
type index_FindAccountRawDto = FindAccountRawDto;
|
|
4219
|
+
type index_FindAccountSocialRawAutoSyncDto = FindAccountSocialRawAutoSyncDto;
|
|
4220
|
+
type index_FindAccountSocialRawChangeCreateDto = FindAccountSocialRawChangeCreateDto;
|
|
4221
|
+
type index_FindAccountSocialRawGroupDto = FindAccountSocialRawGroupDto;
|
|
4209
4222
|
type index_FindAccountVPNDto = FindAccountVPNDto;
|
|
4210
4223
|
type index_FindAccountVPSDto = FindAccountVPSDto;
|
|
4211
4224
|
type index_FindAccountVPSGroupDto = FindAccountVPSGroupDto;
|
|
@@ -4224,16 +4237,16 @@ type index_FindIAccountAIInfoDto = FindIAccountAIInfoDto;
|
|
|
4224
4237
|
type index_FindIAccountAIVoiceInfoDto = FindIAccountAIVoiceInfoDto;
|
|
4225
4238
|
type index_FindIAccountEmailDto = FindIAccountEmailDto;
|
|
4226
4239
|
type index_FindIManagerImageAIDto = FindIManagerImageAIDto;
|
|
4227
|
-
type
|
|
4228
|
-
type
|
|
4229
|
-
type
|
|
4230
|
-
type
|
|
4231
|
-
type
|
|
4232
|
-
type
|
|
4233
|
-
type
|
|
4234
|
-
type
|
|
4235
|
-
type
|
|
4236
|
-
type
|
|
4240
|
+
type index_FindInstagramHistoryInteractExploreDto = FindInstagramHistoryInteractExploreDto;
|
|
4241
|
+
type index_FindInstagramHistoryInteractFollowDto = FindInstagramHistoryInteractFollowDto;
|
|
4242
|
+
type index_FindInstagramHistoryInteractReelDto = FindInstagramHistoryInteractReelDto;
|
|
4243
|
+
type index_FindInstagramHistoryInteractReplyCommentDto = FindInstagramHistoryInteractReplyCommentDto;
|
|
4244
|
+
type index_FindInstagramHistoryInteractReplyMessageDto = FindInstagramHistoryInteractReplyMessageDto;
|
|
4245
|
+
type index_FindInstagramHistoryInteractStoryDto = FindInstagramHistoryInteractStoryDto;
|
|
4246
|
+
type index_FindInstagramHistoryPostHighLightDto = FindInstagramHistoryPostHighLightDto;
|
|
4247
|
+
type index_FindInstagramHistoryPostNewDto = FindInstagramHistoryPostNewDto;
|
|
4248
|
+
type index_FindInstagramHistoryPostReelDto = FindInstagramHistoryPostReelDto;
|
|
4249
|
+
type index_FindInstagramHistoryPostStoryDto = FindInstagramHistoryPostStoryDto;
|
|
4237
4250
|
type index_FindInstagramSettingInteractExploreDto = FindInstagramSettingInteractExploreDto;
|
|
4238
4251
|
type index_FindInstagramSettingInteractFollowDto = FindInstagramSettingInteractFollowDto;
|
|
4239
4252
|
type index_FindInstagramSettingInteractReelDto = FindInstagramSettingInteractReelDto;
|
|
@@ -4271,9 +4284,9 @@ type index_FindTaskThreadsPostDto = FindTaskThreadsPostDto;
|
|
|
4271
4284
|
type index_FindTaskThreadsReplyCommentDto = FindTaskThreadsReplyCommentDto;
|
|
4272
4285
|
type index_FindTaskToolMonitorDto = FindTaskToolMonitorDto;
|
|
4273
4286
|
type index_FindTeamDto = FindTeamDto;
|
|
4274
|
-
type
|
|
4275
|
-
type
|
|
4276
|
-
type
|
|
4287
|
+
type index_FindThreadsHistoryInteractFollowDto = FindThreadsHistoryInteractFollowDto;
|
|
4288
|
+
type index_FindThreadsHistoryInteractReplyCommentDto = FindThreadsHistoryInteractReplyCommentDto;
|
|
4289
|
+
type index_FindThreadsHistoryPostNewDto = FindThreadsHistoryPostNewDto;
|
|
4277
4290
|
type index_FindThreadsSettingInteractFollowDto = FindThreadsSettingInteractFollowDto;
|
|
4278
4291
|
type index_FindThreadsSettingInteractReplyCommentDto = FindThreadsSettingInteractReplyCommentDto;
|
|
4279
4292
|
type index_FindThreadsSettingPostDto = FindThreadsSettingPostDto;
|
|
@@ -4283,7 +4296,7 @@ type index_IBaseSheetImportDto = IBaseSheetImportDto;
|
|
|
4283
4296
|
type index_ImportDto = ImportDto;
|
|
4284
4297
|
type index_OverviewUserDto = OverviewUserDto;
|
|
4285
4298
|
declare namespace index {
|
|
4286
|
-
export type { index_AutoFillAccountRawDto as AutoFillAccountRawDto, index_AutoFillOverviewAccountRawDto as AutoFillOverviewAccountRawDto, index_ExportDto as ExportDto, index_FilterAccountAIDto as FilterAccountAIDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountDto as FilterAccountDto, index_FilterAccountRawDto as FilterAccountRawDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterAccountsGroupDto as FilterAccountsGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, index_FilterIAccountAIInfoDto as FilterIAccountAIInfoDto, index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, index_FilterIAccountEmailDto as FilterIAccountEmailDto, index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, index_FilterInstagramInteractExploreDto as FilterInstagramInteractExploreDto, index_FilterInstagramInteractFollowDto as FilterInstagramInteractFollowDto, index_FilterInstagramInteractReelDto as FilterInstagramInteractReelDto, index_FilterInstagramInteractReplyCommentDto as FilterInstagramInteractReplyCommentDto, index_FilterInstagramInteractReplyMessageDto as FilterInstagramInteractReplyMessageDto, index_FilterInstagramInteractStoryDto as FilterInstagramInteractStoryDto, index_FilterInstagramPostHighLightDto as FilterInstagramPostHighLightDto, index_FilterInstagramPostNewDto as FilterInstagramPostNewDto, index_FilterInstagramPostReelDto as FilterInstagramPostReelDto, index_FilterInstagramPostStoryDto as FilterInstagramPostStoryDto, 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_FilterThreadsInteractFollowDto as FilterThreadsInteractFollowDto, index_FilterThreadsInteractReplyCommentDto as FilterThreadsInteractReplyCommentDto, index_FilterThreadsPostNewDto as FilterThreadsPostNewDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIDto as FindAccountAIDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountDto as FindAccountDto, index_FindAccountRawDto as FindAccountRawDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindAccountsGroupDto as FindAccountsGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, index_FindIAccountAIInfoDto as FindIAccountAIInfoDto, index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, index_FindIAccountEmailDto as FindIAccountEmailDto, index_FindIManagerImageAIDto as FindIManagerImageAIDto, index_FindInstagramInteractExploreDto as FindInstagramInteractExploreDto, index_FindInstagramInteractFollowDto as FindInstagramInteractFollowDto, index_FindInstagramInteractReelDto as FindInstagramInteractReelDto, index_FindInstagramInteractReplyCommentDto as FindInstagramInteractReplyCommentDto, index_FindInstagramInteractReplyMessageDto as FindInstagramInteractReplyMessageDto, index_FindInstagramInteractStoryDto as FindInstagramInteractStoryDto, index_FindInstagramPostHighLightDto as FindInstagramPostHighLightDto, index_FindInstagramPostNewDto as FindInstagramPostNewDto, index_FindInstagramPostReelDto as FindInstagramPostReelDto, index_FindInstagramPostStoryDto as FindInstagramPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, index_FindLarkDto as FindLarkDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewAccountDto as FindOverViewAccountDto, index_FindOverViewAccountRowDto as FindOverViewAccountRowDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageVoiceCanvaDto as FindTaskAIImageVoiceCanvaDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsInteractFollowDto as FindThreadsInteractFollowDto, index_FindThreadsInteractReplyCommentDto as FindThreadsInteractReplyCommentDto, index_FindThreadsPostNewDto as FindThreadsPostNewDto, 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 };
|
|
4299
|
+
export type { index_AutoFillAccountRawDto as AutoFillAccountRawDto, index_AutoFillOverviewAccountRawDto as AutoFillOverviewAccountRawDto, index_ExportDto as ExportDto, index_FilterAccountAIDto as FilterAccountAIDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountDto as FilterAccountDto, index_FilterAccountRawDto as FilterAccountRawDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterAccountsGroupDto as FilterAccountsGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, index_FilterIAccountAIInfoDto as FilterIAccountAIInfoDto, index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, index_FilterIAccountEmailDto as FilterIAccountEmailDto, index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, index_FilterInstagramHistoryInteractExploreDto as FilterInstagramHistoryInteractExploreDto, index_FilterInstagramHistoryInteractFollowDto as FilterInstagramHistoryInteractFollowDto, index_FilterInstagramHistoryInteractReelDto as FilterInstagramHistoryInteractReelDto, index_FilterInstagramHistoryInteractReplyCommentDto as FilterInstagramHistoryInteractReplyCommentDto, index_FilterInstagramHistoryInteractReplyMessageDto as FilterInstagramHistoryInteractReplyMessageDto, index_FilterInstagramHistoryInteractStoryDto as FilterInstagramHistoryInteractStoryDto, index_FilterInstagramHistoryPostHighLightDto as FilterInstagramHistoryPostHighLightDto, index_FilterInstagramHistoryPostNewDto as FilterInstagramHistoryPostNewDto, index_FilterInstagramHistoryPostReelDto as FilterInstagramHistoryPostReelDto, index_FilterInstagramHistoryPostStoryDto as FilterInstagramHistoryPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index_FilterInstagramSettingStoryDto as FilterInstagramSettingStoryDto, index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, index_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageVoiceCanvaDto as FilterTaskAIImageVoiceCanvaDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsHistoryInteractFollowDto as FilterThreadsHistoryInteractFollowDto, index_FilterThreadsHistoryInteractReplyCommentDto as FilterThreadsHistoryInteractReplyCommentDto, index_FilterThreadsHistoryPostNewDto as FilterThreadsHistoryPostNewDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIDto as FindAccountAIDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountDto as FindAccountDto, index_FindAccountRawDto as FindAccountRawDto, index_FindAccountSocialRawAutoSyncDto as FindAccountSocialRawAutoSyncDto, index_FindAccountSocialRawChangeCreateDto as FindAccountSocialRawChangeCreateDto, index_FindAccountSocialRawGroupDto as FindAccountSocialRawGroupDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindAccountsGroupDto as FindAccountsGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, index_FindIAccountAIInfoDto as FindIAccountAIInfoDto, index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, index_FindIAccountEmailDto as FindIAccountEmailDto, index_FindIManagerImageAIDto as FindIManagerImageAIDto, index_FindInstagramHistoryInteractExploreDto as FindInstagramHistoryInteractExploreDto, index_FindInstagramHistoryInteractFollowDto as FindInstagramHistoryInteractFollowDto, index_FindInstagramHistoryInteractReelDto as FindInstagramHistoryInteractReelDto, index_FindInstagramHistoryInteractReplyCommentDto as FindInstagramHistoryInteractReplyCommentDto, index_FindInstagramHistoryInteractReplyMessageDto as FindInstagramHistoryInteractReplyMessageDto, index_FindInstagramHistoryInteractStoryDto as FindInstagramHistoryInteractStoryDto, index_FindInstagramHistoryPostHighLightDto as FindInstagramHistoryPostHighLightDto, index_FindInstagramHistoryPostNewDto as FindInstagramHistoryPostNewDto, index_FindInstagramHistoryPostReelDto as FindInstagramHistoryPostReelDto, index_FindInstagramHistoryPostStoryDto as FindInstagramHistoryPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, index_FindLarkDto as FindLarkDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewAccountDto as FindOverViewAccountDto, index_FindOverViewAccountRowDto as FindOverViewAccountRowDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageVoiceCanvaDto as FindTaskAIImageVoiceCanvaDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsHistoryInteractFollowDto as FindThreadsHistoryInteractFollowDto, index_FindThreadsHistoryInteractReplyCommentDto as FindThreadsHistoryInteractReplyCommentDto, index_FindThreadsHistoryPostNewDto as FindThreadsHistoryPostNewDto, 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 };
|
|
4287
4300
|
}
|
|
4288
4301
|
|
|
4289
|
-
export { index$9 as Auth, index$j as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillAccountRawDto, type AutoFillOverviewAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$b as AutoTypes, index$a as Common, type ExportDto, type FilterAccountAIDto, type FilterAccountAIImageDto, type FilterAccountAIVoiceDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountDto, type FilterAccountRawDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterAccountsGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterIAccountAIImageInfoDto, type FilterIAccountAIInfoDto, type FilterIAccountAIVoiceInfoDto, type FilterIAccountEmailDto, type FilterIManagerImageAIDto, type
|
|
4302
|
+
export { index$9 as Auth, index$j as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillAccountRawDto, type AutoFillOverviewAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$b as AutoTypes, index$a as Common, type ExportDto, type FilterAccountAIDto, type FilterAccountAIImageDto, type FilterAccountAIVoiceDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountDto, type FilterAccountRawDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterAccountsGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterIAccountAIImageInfoDto, type FilterIAccountAIInfoDto, type FilterIAccountAIVoiceInfoDto, type FilterIAccountEmailDto, type FilterIManagerImageAIDto, type FilterInstagramHistoryInteractExploreDto, type FilterInstagramHistoryInteractFollowDto, type FilterInstagramHistoryInteractReelDto, type FilterInstagramHistoryInteractReplyCommentDto, type FilterInstagramHistoryInteractReplyMessageDto, type FilterInstagramHistoryInteractStoryDto, type FilterInstagramHistoryPostHighLightDto, type FilterInstagramHistoryPostNewDto, type FilterInstagramHistoryPostReelDto, type FilterInstagramHistoryPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingStoryDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsHistoryInteractFollowDto, type FilterThreadsHistoryInteractReplyCommentDto, type FilterThreadsHistoryPostNewDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIDto, type FindAccountAIImageDto, type FindAccountAIVoiceDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountDto, type FindAccountRawDto, type FindAccountSocialRawAutoSyncDto, type FindAccountSocialRawChangeCreateDto, type FindAccountSocialRawGroupDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindAccountsGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindIAccountAIImageInfoDto, type FindIAccountAIInfoDto, type FindIAccountAIVoiceInfoDto, type FindIAccountEmailDto, type FindIManagerImageAIDto, type FindInstagramHistoryInteractExploreDto, type FindInstagramHistoryInteractFollowDto, type FindInstagramHistoryInteractReelDto, type FindInstagramHistoryInteractReplyCommentDto, type FindInstagramHistoryInteractReplyMessageDto, type FindInstagramHistoryInteractStoryDto, type FindInstagramHistoryPostHighLightDto, type FindInstagramHistoryPostNewDto, type FindInstagramHistoryPostReelDto, type FindInstagramHistoryPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingPostDto, type FindInstagramSettingReplyCommentDto, type FindInstagramSettingReplyMessageDto, type FindInstagramSettingStoryDto, type FindInstagramSettingUnFollowDto, type FindLarkDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverViewAccountDto, type FindOverViewAccountRowDto, 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 FindThreadsHistoryInteractFollowDto, type FindThreadsHistoryInteractReplyCommentDto, type FindThreadsHistoryPostNewDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingPostDto, type FindUserDto, index$4 as History, type IAccount, type IAccountAI, type IAccountAIChannel, type IAccountAIGroup, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIInfo, type IAccountAITag, 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 IAccountRaw, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAccountsGroup, 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 IInstagramHistoryInteractExplore, type IInstagramHistoryInteractFollow, type IInstagramHistoryInteractReel, type IInstagramHistoryInteractReplyComment, type IInstagramHistoryInteractReplyMessage, type IInstagramHistoryInteractStory, type IInstagramHistoryPostHighLight, type IInstagramHistoryPostNew, type IInstagramHistoryPostReel, type IInstagramHistoryPostSquare, type IInstagramHistoryPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type IInteractSentMessageDetail, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManagerWorkPin, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorkPin, type ISheetWorksCategory, type ISheetsTool, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsHistoryInteractFollow, type IThreadsHistoryInteractReplyComment, type IThreadsHistoryPostNew, 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$8 as Web };
|