automation-lib 5.1.3 → 5.1.5
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 +163 -55
- package/dist/index.d.ts +163 -55
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2949,12 +2949,52 @@ interface INiche extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2949
2949
|
niche_idea: string | IIdea;
|
|
2950
2950
|
}
|
|
2951
2951
|
|
|
2952
|
+
interface IThreadsHistoryAutoPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2953
|
+
sheetName: string;
|
|
2954
|
+
sheetURL: string;
|
|
2955
|
+
idea: string | IManagerWork;
|
|
2956
|
+
niche: string | IManagerWork;
|
|
2957
|
+
typeSocial: ETypeSocial;
|
|
2958
|
+
group: string | IAccountSocialGroup;
|
|
2959
|
+
folderImage: string;
|
|
2960
|
+
linkDriveVideoOfCanva: string;
|
|
2961
|
+
listLinkDriveImagesOfCanva: string[];
|
|
2962
|
+
accountID: string;
|
|
2963
|
+
accountUsername: string;
|
|
2964
|
+
accountFullName: string;
|
|
2965
|
+
accountStatusLogin: EStatusAccountSocialLogin;
|
|
2966
|
+
statusEditCanva: string;
|
|
2967
|
+
statusUploadDrive: string;
|
|
2968
|
+
deviceKey: string;
|
|
2969
|
+
deviceName: string;
|
|
2970
|
+
deviceType: string;
|
|
2971
|
+
deviceTypeAppClone: string;
|
|
2972
|
+
deviceNameAppClone: string;
|
|
2973
|
+
nameAppClone: string;
|
|
2974
|
+
pcNameName: string;
|
|
2975
|
+
departmentName: string;
|
|
2976
|
+
leaderName: string;
|
|
2977
|
+
memberName: string;
|
|
2978
|
+
proxyType: ETypeProxy;
|
|
2979
|
+
vpnEmail: string;
|
|
2980
|
+
vpnPosition: ETypeProxy;
|
|
2981
|
+
typePost: TPost;
|
|
2982
|
+
stylePost: TPostStyle;
|
|
2983
|
+
timePost: Date;
|
|
2984
|
+
linkPost: string;
|
|
2985
|
+
statusAccount: EStatusAccountSocial;
|
|
2986
|
+
statusPost: EStatusExecuteCommon;
|
|
2987
|
+
noteFix: string;
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2952
2990
|
interface IThreadsReportPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2953
2991
|
idea: string | IManagerWork;
|
|
2954
2992
|
niche: string | IManagerWork;
|
|
2955
|
-
|
|
2993
|
+
type: ETypeManagerWorkClassify;
|
|
2956
2994
|
device: IDevice | string;
|
|
2957
2995
|
account: IAccountSocialBase | string;
|
|
2996
|
+
accountID: string;
|
|
2997
|
+
pc: string | IPC;
|
|
2958
2998
|
url: string;
|
|
2959
2999
|
photosUrl: string[];
|
|
2960
3000
|
videosUrl: string[];
|
|
@@ -2975,9 +3015,11 @@ interface IThreadsReportPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2975
3015
|
interface IThreadsReportInteractFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
2976
3016
|
idea: string | IManagerWork;
|
|
2977
3017
|
niche: string | IManagerWork;
|
|
2978
|
-
|
|
3018
|
+
type: ETypeManagerWorkClassify;
|
|
2979
3019
|
device: IDevice | string;
|
|
2980
3020
|
account: IAccountSocialBase | string;
|
|
3021
|
+
accountID: string;
|
|
3022
|
+
pc: string | IPC;
|
|
2981
3023
|
follower: number;
|
|
2982
3024
|
following: number;
|
|
2983
3025
|
status: EStatusExecuteCommon;
|
|
@@ -2989,8 +3031,10 @@ interface IThreadsReportInteractFollow extends IBaseModel, ITrackingModel<IUser>
|
|
|
2989
3031
|
interface IThreadsReportInteractReplyMessage extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
2990
3032
|
idea: string | IManagerWork;
|
|
2991
3033
|
niche: string | IManagerWork;
|
|
3034
|
+
type: ETypeManagerWorkClassify;
|
|
2992
3035
|
device: IDevice | string;
|
|
2993
3036
|
account: IAccountSocialBase | string;
|
|
3037
|
+
accountID: string;
|
|
2994
3038
|
pc: string | IPC;
|
|
2995
3039
|
status: EStatusExecuteCommon;
|
|
2996
3040
|
statusDetail: string;
|
|
@@ -3001,9 +3045,11 @@ interface IThreadsReportInteractReplyMessage extends IBaseModel, ITrackingTimeSc
|
|
|
3001
3045
|
interface IThreadsReportInteractReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
3002
3046
|
idea: string | IManagerWork;
|
|
3003
3047
|
niche: string | IManagerWork;
|
|
3004
|
-
|
|
3048
|
+
type: ETypeManagerWorkClassify;
|
|
3005
3049
|
device: IDevice | string;
|
|
3006
3050
|
account: IAccountSocialBase | string;
|
|
3051
|
+
accountID: string;
|
|
3052
|
+
pc: string | IPC;
|
|
3007
3053
|
content: string;
|
|
3008
3054
|
linkPost: string;
|
|
3009
3055
|
userLink: string;
|
|
@@ -3016,9 +3062,11 @@ interface IThreadsReportInteractReplyComment extends IBaseModel, ITrackingModel<
|
|
|
3016
3062
|
interface IThreadsSettingPost extends IBaseModel, ITrackingModel<IUser> {
|
|
3017
3063
|
idea: string | IManagerWork;
|
|
3018
3064
|
niche: string | IManagerWork;
|
|
3019
|
-
|
|
3065
|
+
type: ETypeManagerWorkClassify;
|
|
3020
3066
|
device: IDevice | string;
|
|
3021
3067
|
account: IAccountSocialBase | string;
|
|
3068
|
+
accountID: string;
|
|
3069
|
+
pc: string | IPC;
|
|
3022
3070
|
listRunTimes: Array<{
|
|
3023
3071
|
typePost: TPost;
|
|
3024
3072
|
listTimes: Array<string>;
|
|
@@ -3032,11 +3080,13 @@ interface IThreadsSettingPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3032
3080
|
}
|
|
3033
3081
|
|
|
3034
3082
|
interface IThreadsSettingInteractFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
3035
|
-
pc: string | IPC;
|
|
3036
3083
|
idea: string | IManagerWork;
|
|
3037
3084
|
niche: string | IManagerWork;
|
|
3085
|
+
type: ETypeManagerWorkClassify;
|
|
3038
3086
|
device: IDevice | string;
|
|
3039
3087
|
account: IAccountSocialBase | string;
|
|
3088
|
+
accountID: string;
|
|
3089
|
+
pc: string | IPC;
|
|
3040
3090
|
listRunTimes: Array<Array<string>>;
|
|
3041
3091
|
dayOfWeeks: Array<string>;
|
|
3042
3092
|
timeExecuteForOperationFrom: number;
|
|
@@ -3075,11 +3125,13 @@ interface IThreadsSettingInteractFollow extends IBaseModel, ITrackingModel<IUser
|
|
|
3075
3125
|
}
|
|
3076
3126
|
|
|
3077
3127
|
interface IThreadsSettingInteractUnFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
3078
|
-
pc: string | IPC;
|
|
3079
3128
|
idea: string | IManagerWork;
|
|
3080
3129
|
niche: string | IManagerWork;
|
|
3130
|
+
type: ETypeManagerWorkClassify;
|
|
3081
3131
|
device: IDevice | string;
|
|
3082
3132
|
account: IAccountSocialBase | string;
|
|
3133
|
+
accountID: string;
|
|
3134
|
+
pc: string | IPC;
|
|
3083
3135
|
dayOfWeeks: Array<string>;
|
|
3084
3136
|
listRunTimes: Array<Array<string>>;
|
|
3085
3137
|
timeExecuteForOperationFrom: number;
|
|
@@ -3101,11 +3153,13 @@ interface IThreadsSettingInteractUnFollow extends IBaseModel, ITrackingModel<IUs
|
|
|
3101
3153
|
}
|
|
3102
3154
|
|
|
3103
3155
|
interface IThreadsSettingInteractReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
3104
|
-
pc: string | IPC;
|
|
3105
3156
|
idea: string | IManagerWork;
|
|
3106
3157
|
niche: string | IManagerWork;
|
|
3158
|
+
type: ETypeManagerWorkClassify;
|
|
3107
3159
|
device: IDevice | string;
|
|
3108
3160
|
account: IAccountSocialBase | string;
|
|
3161
|
+
accountID: string;
|
|
3162
|
+
pc: string | IPC;
|
|
3109
3163
|
dayOfWeeks: Array<string>;
|
|
3110
3164
|
listRunTimes: Array<Array<string>>;
|
|
3111
3165
|
timeExecuteForOperationFrom: number;
|
|
@@ -3128,11 +3182,13 @@ interface IThreadsSettingInteractReplyComment extends IBaseModel, ITrackingModel
|
|
|
3128
3182
|
}
|
|
3129
3183
|
|
|
3130
3184
|
interface IThreadsSettingInteractReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
3131
|
-
pc: string | IPC;
|
|
3132
3185
|
idea: string | IManagerWork;
|
|
3133
3186
|
niche: string | IManagerWork;
|
|
3187
|
+
type: ETypeManagerWorkClassify;
|
|
3134
3188
|
device: IDevice | string;
|
|
3135
3189
|
account: IAccountSocialBase | string;
|
|
3190
|
+
accountID: string;
|
|
3191
|
+
pc: string | IPC;
|
|
3136
3192
|
listRunTimes: Array<Array<string>>;
|
|
3137
3193
|
dayOfWeeks: Array<string>;
|
|
3138
3194
|
timeExecuteForOperationFrom: number;
|
|
@@ -3188,11 +3244,13 @@ interface IInstagramHistoryAutoPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3188
3244
|
}
|
|
3189
3245
|
|
|
3190
3246
|
interface IInstagramSettingInteractExplore extends IBaseModel, ITrackingModel<IUser> {
|
|
3191
|
-
pc: string | IPC;
|
|
3192
3247
|
idea: string | IManagerWork;
|
|
3193
3248
|
niche: string | IManagerWork;
|
|
3249
|
+
type: ETypeManagerWorkClassify;
|
|
3194
3250
|
device: IDevice | string;
|
|
3195
3251
|
account: IAccountSocialBase | string;
|
|
3252
|
+
accountID: string;
|
|
3253
|
+
pc: string | IPC;
|
|
3196
3254
|
dayOfWeeks: Array<string>;
|
|
3197
3255
|
listRunTimes: Array<Array<string>>;
|
|
3198
3256
|
maxViewPerDay: number;
|
|
@@ -3212,11 +3270,13 @@ interface IInstagramSettingInteractExplore extends IBaseModel, ITrackingModel<IU
|
|
|
3212
3270
|
}
|
|
3213
3271
|
|
|
3214
3272
|
interface IInstagramSettingInteractFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
3215
|
-
pc: string | IPC;
|
|
3216
3273
|
idea: string | IManagerWork;
|
|
3217
3274
|
niche: string | IManagerWork;
|
|
3275
|
+
type: ETypeManagerWorkClassify;
|
|
3218
3276
|
device: IDevice | string;
|
|
3219
3277
|
account: IAccountSocialBase | string;
|
|
3278
|
+
accountID: string;
|
|
3279
|
+
pc: string | IPC;
|
|
3220
3280
|
listRunTimes: Array<Array<string>>;
|
|
3221
3281
|
dayOfWeeks: Array<string>;
|
|
3222
3282
|
timeExecuteForOperationFrom: number;
|
|
@@ -3255,11 +3315,13 @@ interface IInstagramSettingInteractFollow extends IBaseModel, ITrackingModel<IUs
|
|
|
3255
3315
|
}
|
|
3256
3316
|
|
|
3257
3317
|
interface IInstagramSettingInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
|
3258
|
-
pc: string | IPC;
|
|
3259
3318
|
idea: string | IManagerWork;
|
|
3260
3319
|
niche: string | IManagerWork;
|
|
3320
|
+
type: ETypeManagerWorkClassify;
|
|
3261
3321
|
device: IDevice | string;
|
|
3262
3322
|
account: IAccountSocialBase | string;
|
|
3323
|
+
accountID: string;
|
|
3324
|
+
pc: string | IPC;
|
|
3263
3325
|
dayOfWeeks: Array<string>;
|
|
3264
3326
|
listRunTimes: Array<Array<string>>;
|
|
3265
3327
|
limitViewPerDayFrom: number;
|
|
@@ -3278,11 +3340,13 @@ interface IInstagramSettingInteractReel extends IBaseModel, ITrackingModel<IUser
|
|
|
3278
3340
|
}
|
|
3279
3341
|
|
|
3280
3342
|
interface IInstagramSettingInteractReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
3281
|
-
pc: string | IPC;
|
|
3282
3343
|
idea: string | IManagerWork;
|
|
3283
3344
|
niche: string | IManagerWork;
|
|
3345
|
+
type: ETypeManagerWorkClassify;
|
|
3284
3346
|
device: IDevice | string;
|
|
3285
3347
|
account: IAccountSocialBase | string;
|
|
3348
|
+
accountID: string;
|
|
3349
|
+
pc: string | IPC;
|
|
3286
3350
|
dayOfWeeks: Array<string>;
|
|
3287
3351
|
listRunTimes: Array<Array<string>>;
|
|
3288
3352
|
timeExecuteForOperationFrom: number;
|
|
@@ -3305,11 +3369,13 @@ interface IInstagramSettingInteractReplyComment extends IBaseModel, ITrackingMod
|
|
|
3305
3369
|
}
|
|
3306
3370
|
|
|
3307
3371
|
interface IInstagramSettingInteractReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
3308
|
-
pc: string | IPC;
|
|
3309
3372
|
idea: string | IManagerWork;
|
|
3310
3373
|
niche: string | IManagerWork;
|
|
3374
|
+
type: ETypeManagerWorkClassify;
|
|
3311
3375
|
device: IDevice | string;
|
|
3312
3376
|
account: IAccountSocialBase | string;
|
|
3377
|
+
accountID: string;
|
|
3378
|
+
pc: string | IPC;
|
|
3313
3379
|
listRunTimes: Array<Array<string>>;
|
|
3314
3380
|
dayOfWeeks: Array<string>;
|
|
3315
3381
|
timeExecuteForOperationFrom: number;
|
|
@@ -3327,11 +3393,13 @@ interface IInstagramSettingInteractReplyMessage extends IBaseModel, ITrackingMod
|
|
|
3327
3393
|
}
|
|
3328
3394
|
|
|
3329
3395
|
interface IInstagramSettingInteractStory extends IBaseModel, ITrackingModel<IUser> {
|
|
3330
|
-
pc: string | IPC;
|
|
3331
3396
|
idea: string | IManagerWork;
|
|
3332
3397
|
niche: string | IManagerWork;
|
|
3398
|
+
type: ETypeManagerWorkClassify;
|
|
3333
3399
|
device: IDevice | string;
|
|
3334
3400
|
account: IAccountSocialBase | string;
|
|
3401
|
+
accountID: string;
|
|
3402
|
+
pc: string | IPC;
|
|
3335
3403
|
dayOfWeeks: Array<string>;
|
|
3336
3404
|
listRunTimes: Array<Array<string>>;
|
|
3337
3405
|
timeExecuteForOperationFrom: number;
|
|
@@ -3360,11 +3428,13 @@ interface IInstagramSettingInteractStory extends IBaseModel, ITrackingModel<IUse
|
|
|
3360
3428
|
}
|
|
3361
3429
|
|
|
3362
3430
|
interface IInstagramSettingInteractUnFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
3363
|
-
pc: string | IPC;
|
|
3364
3431
|
idea: string | IManagerWork;
|
|
3365
3432
|
niche: string | IManagerWork;
|
|
3433
|
+
type: ETypeManagerWorkClassify;
|
|
3366
3434
|
device: IDevice | string;
|
|
3367
3435
|
account: IAccountSocialBase | string;
|
|
3436
|
+
accountID: string;
|
|
3437
|
+
pc: string | IPC;
|
|
3368
3438
|
dayOfWeeks: Array<string>;
|
|
3369
3439
|
listRunTimes: Array<Array<string>>;
|
|
3370
3440
|
timeExecuteForOperationFrom: number;
|
|
@@ -3386,11 +3456,13 @@ interface IInstagramSettingInteractUnFollow extends IBaseModel, ITrackingModel<I
|
|
|
3386
3456
|
}
|
|
3387
3457
|
|
|
3388
3458
|
interface IInstagramSettingPost extends IBaseModel, ITrackingModel<IUser> {
|
|
3389
|
-
pc: string | IPC;
|
|
3390
3459
|
idea: string | IManagerWork;
|
|
3391
3460
|
niche: string | IManagerWork;
|
|
3461
|
+
type: ETypeManagerWorkClassify;
|
|
3392
3462
|
device: IDevice | string;
|
|
3393
3463
|
account: IAccountSocialBase | string;
|
|
3464
|
+
accountID: string;
|
|
3465
|
+
pc: string | IPC;
|
|
3394
3466
|
listRunTimes: Array<{
|
|
3395
3467
|
typePost: TPost;
|
|
3396
3468
|
listTimes: Array<string>;
|
|
@@ -3404,21 +3476,30 @@ interface IInstagramSettingPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3404
3476
|
}
|
|
3405
3477
|
|
|
3406
3478
|
interface IInstagramReportPostHighLight extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
3479
|
+
idea: string | IManagerWork;
|
|
3480
|
+
niche: string | IManagerWork;
|
|
3481
|
+
type: ETypeManagerWorkClassify;
|
|
3482
|
+
device: IDevice | string;
|
|
3483
|
+
account: IAccountSocialBase | string;
|
|
3484
|
+
accountID: string;
|
|
3485
|
+
pc: string | IPC;
|
|
3407
3486
|
sheetUrl: string;
|
|
3408
3487
|
sheetName: string;
|
|
3409
3488
|
sheetPageName: string;
|
|
3410
3489
|
rowId: string;
|
|
3411
3490
|
historyName: string;
|
|
3412
|
-
pc: string | IPC;
|
|
3413
|
-
idea: string | IManagerWork;
|
|
3414
|
-
niche: string | IManagerWork;
|
|
3415
|
-
device: IDevice | string;
|
|
3416
|
-
account: IAccountSocialBase | string;
|
|
3417
3491
|
status: EStatusExecuteCommon;
|
|
3418
3492
|
statusDetail: string;
|
|
3419
3493
|
}
|
|
3420
3494
|
|
|
3421
3495
|
interface IInstagramReportPostNew extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
3496
|
+
idea: string | IManagerWork;
|
|
3497
|
+
niche: string | IManagerWork;
|
|
3498
|
+
type: ETypeManagerWorkClassify;
|
|
3499
|
+
device: IDevice | string;
|
|
3500
|
+
account: IAccountSocialBase | string;
|
|
3501
|
+
accountID: string;
|
|
3502
|
+
pc: string | IPC;
|
|
3422
3503
|
sheetUrl: string;
|
|
3423
3504
|
sheetName: string;
|
|
3424
3505
|
sheetPageName: string;
|
|
@@ -3432,16 +3513,18 @@ interface IInstagramReportPostNew extends IBaseModel, ITrackingTimeScript, ITrac
|
|
|
3432
3513
|
tagUser: string;
|
|
3433
3514
|
location: string;
|
|
3434
3515
|
url: string;
|
|
3435
|
-
pc: string | IPC;
|
|
3436
|
-
idea: string | IManagerWork;
|
|
3437
|
-
niche: string | IManagerWork;
|
|
3438
|
-
device: IDevice | string;
|
|
3439
|
-
account: IAccountSocialBase | string;
|
|
3440
3516
|
status: EStatusExecuteCommon;
|
|
3441
3517
|
statusDetail: string;
|
|
3442
3518
|
}
|
|
3443
3519
|
|
|
3444
3520
|
interface IInstagramReportPostSquare extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
3521
|
+
idea: string | IManagerWork;
|
|
3522
|
+
niche: string | IManagerWork;
|
|
3523
|
+
type: ETypeManagerWorkClassify;
|
|
3524
|
+
device: IDevice | string;
|
|
3525
|
+
account: IAccountSocialBase | string;
|
|
3526
|
+
accountID: string;
|
|
3527
|
+
pc: string | IPC;
|
|
3445
3528
|
sheetUrl: string;
|
|
3446
3529
|
sheetName: string;
|
|
3447
3530
|
sheetPageName: string;
|
|
@@ -3455,16 +3538,18 @@ interface IInstagramReportPostSquare extends IBaseModel, ITrackingTimeScript, IT
|
|
|
3455
3538
|
tagUser: string;
|
|
3456
3539
|
location: string;
|
|
3457
3540
|
url: string;
|
|
3458
|
-
pc: string | IPC;
|
|
3459
|
-
idea: string | IManagerWork;
|
|
3460
|
-
niche: string | IManagerWork;
|
|
3461
|
-
device: IDevice | string;
|
|
3462
|
-
account: IAccountSocialBase | string;
|
|
3463
3541
|
status: EStatusExecuteCommon;
|
|
3464
3542
|
statusDetail: string;
|
|
3465
3543
|
}
|
|
3466
3544
|
|
|
3467
3545
|
interface IInstagramReportPostReel extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
3546
|
+
idea: string | IManagerWork;
|
|
3547
|
+
niche: string | IManagerWork;
|
|
3548
|
+
type: ETypeManagerWorkClassify;
|
|
3549
|
+
device: IDevice | string;
|
|
3550
|
+
account: IAccountSocialBase | string;
|
|
3551
|
+
accountID: string;
|
|
3552
|
+
pc: string | IPC;
|
|
3468
3553
|
sheetUrl: string;
|
|
3469
3554
|
sheetName: string;
|
|
3470
3555
|
sheetPageName: string;
|
|
@@ -3480,16 +3565,18 @@ interface IInstagramReportPostReel extends IBaseModel, ITrackingTimeScript, ITra
|
|
|
3480
3565
|
collaborator: string;
|
|
3481
3566
|
tagUser: string;
|
|
3482
3567
|
url: string;
|
|
3483
|
-
pc: string | IPC;
|
|
3484
|
-
idea: string | IManagerWork;
|
|
3485
|
-
niche: string | IManagerWork;
|
|
3486
|
-
device: IDevice | string;
|
|
3487
|
-
account: IAccountSocialBase | string;
|
|
3488
3568
|
status: EStatusExecuteCommon;
|
|
3489
3569
|
statusDetail: string;
|
|
3490
3570
|
}
|
|
3491
3571
|
|
|
3492
3572
|
interface IInstagramReportPostStory extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
3573
|
+
idea: string | IManagerWork;
|
|
3574
|
+
niche: string | IManagerWork;
|
|
3575
|
+
type: ETypeManagerWorkClassify;
|
|
3576
|
+
device: IDevice | string;
|
|
3577
|
+
account: IAccountSocialBase | string;
|
|
3578
|
+
accountID: string;
|
|
3579
|
+
pc: string | IPC;
|
|
3493
3580
|
sheetUrl: string;
|
|
3494
3581
|
sheetName: string;
|
|
3495
3582
|
sheetPageName: string;
|
|
@@ -3499,25 +3586,22 @@ interface IInstagramReportPostStory extends IBaseModel, ITrackingTimeScript, ITr
|
|
|
3499
3586
|
videosUrl: string[];
|
|
3500
3587
|
music: string;
|
|
3501
3588
|
location: string;
|
|
3502
|
-
pc: string | IPC;
|
|
3503
|
-
idea: string | IManagerWork;
|
|
3504
|
-
niche: string | IManagerWork;
|
|
3505
|
-
device: IDevice | string;
|
|
3506
|
-
account: IAccountSocialBase | string;
|
|
3507
3589
|
status: EStatusExecuteCommon;
|
|
3508
3590
|
statusDetail: string;
|
|
3509
3591
|
}
|
|
3510
3592
|
|
|
3511
3593
|
interface IInstagramReportInteractReplyComment extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
3512
|
-
content: string;
|
|
3513
|
-
userLink: string;
|
|
3514
|
-
linkPost: string;
|
|
3515
|
-
commentReplied: string;
|
|
3516
3594
|
idea: string | IManagerWork;
|
|
3517
3595
|
niche: string | IManagerWork;
|
|
3596
|
+
type: ETypeManagerWorkClassify;
|
|
3518
3597
|
device: IDevice | string;
|
|
3519
3598
|
account: IAccountSocialBase | string;
|
|
3599
|
+
accountID: string;
|
|
3520
3600
|
pc: string | IPC;
|
|
3601
|
+
content: string;
|
|
3602
|
+
userLink: string;
|
|
3603
|
+
linkPost: string;
|
|
3604
|
+
commentReplied: string;
|
|
3521
3605
|
status: EStatusExecuteCommon;
|
|
3522
3606
|
statusDetail: string;
|
|
3523
3607
|
}
|
|
@@ -3525,12 +3609,14 @@ interface IInstagramReportInteractReplyComment extends IBaseModel, ITrackingTime
|
|
|
3525
3609
|
interface IInstagramReportInteractReel extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
3526
3610
|
idea: string | IManagerWork;
|
|
3527
3611
|
niche: string | IManagerWork;
|
|
3612
|
+
type: ETypeManagerWorkClassify;
|
|
3528
3613
|
device: IDevice | string;
|
|
3529
3614
|
account: IAccountSocialBase | string;
|
|
3615
|
+
accountID: string;
|
|
3616
|
+
pc: string | IPC;
|
|
3530
3617
|
numberLike: number;
|
|
3531
3618
|
minutesExecute: number;
|
|
3532
3619
|
isLike: boolean;
|
|
3533
|
-
pc: string | IPC;
|
|
3534
3620
|
status: EStatusExecuteCommon;
|
|
3535
3621
|
statusDetail: string;
|
|
3536
3622
|
}
|
|
@@ -3538,28 +3624,32 @@ interface IInstagramReportInteractReel extends IBaseModel, ITrackingTimeScript,
|
|
|
3538
3624
|
interface IInstagramReportInteractStory extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
3539
3625
|
idea: string | IManagerWork;
|
|
3540
3626
|
niche: string | IManagerWork;
|
|
3627
|
+
type: ETypeManagerWorkClassify;
|
|
3541
3628
|
device: IDevice | string;
|
|
3542
3629
|
account: IAccountSocialBase | string;
|
|
3630
|
+
accountID: string;
|
|
3631
|
+
pc: string | IPC;
|
|
3543
3632
|
numberLike: number;
|
|
3544
3633
|
minutesExecute: number;
|
|
3545
3634
|
numberUsersSentMess: number;
|
|
3546
3635
|
isLike: boolean;
|
|
3547
3636
|
isSentMessage: boolean;
|
|
3548
|
-
pc: string | IPC;
|
|
3549
3637
|
status: EStatusExecuteCommon;
|
|
3550
3638
|
statusDetail: string;
|
|
3551
3639
|
}
|
|
3552
3640
|
|
|
3553
3641
|
interface IInstagramReportInteractExplore extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
3554
|
-
typeView: string;
|
|
3555
|
-
numberLike: number;
|
|
3556
|
-
minutesExecute: number;
|
|
3557
|
-
isLike: boolean;
|
|
3558
3642
|
idea: string | IManagerWork;
|
|
3559
3643
|
niche: string | IManagerWork;
|
|
3644
|
+
type: ETypeManagerWorkClassify;
|
|
3560
3645
|
device: IDevice | string;
|
|
3561
3646
|
account: IAccountSocialBase | string;
|
|
3647
|
+
accountID: string;
|
|
3562
3648
|
pc: string | IPC;
|
|
3649
|
+
typeView: string;
|
|
3650
|
+
numberLike: number;
|
|
3651
|
+
minutesExecute: number;
|
|
3652
|
+
isLike: boolean;
|
|
3563
3653
|
status: EStatusExecuteCommon;
|
|
3564
3654
|
statusDetail: string;
|
|
3565
3655
|
}
|
|
@@ -3567,8 +3657,10 @@ interface IInstagramReportInteractExplore extends IBaseModel, ITrackingTimeScrip
|
|
|
3567
3657
|
interface IInstagramReportInteractReplyMessage extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
3568
3658
|
idea: string | IManagerWork;
|
|
3569
3659
|
niche: string | IManagerWork;
|
|
3660
|
+
type: ETypeManagerWorkClassify;
|
|
3570
3661
|
device: IDevice | string;
|
|
3571
3662
|
account: IAccountSocialBase | string;
|
|
3663
|
+
accountID: string;
|
|
3572
3664
|
pc: string | IPC;
|
|
3573
3665
|
status: EStatusExecuteCommon;
|
|
3574
3666
|
statusDetail: string;
|
|
@@ -3579,8 +3671,10 @@ interface IInstagramReportInteractReplyMessage extends IBaseModel, ITrackingTime
|
|
|
3579
3671
|
interface IInstagramReportInteractFollow extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
3580
3672
|
idea: string | IManagerWork;
|
|
3581
3673
|
niche: string | IManagerWork;
|
|
3674
|
+
type: ETypeManagerWorkClassify;
|
|
3582
3675
|
device: IDevice | string;
|
|
3583
3676
|
account: IAccountSocialBase | string;
|
|
3677
|
+
accountID: string;
|
|
3584
3678
|
pc: string | IPC;
|
|
3585
3679
|
status: EStatusExecuteCommon;
|
|
3586
3680
|
statusDetail: string;
|
|
@@ -3612,6 +3706,7 @@ type index$3_IInstagramSettingInteractStory = IInstagramSettingInteractStory;
|
|
|
3612
3706
|
type index$3_IInstagramSettingInteractUnFollow = IInstagramSettingInteractUnFollow;
|
|
3613
3707
|
type index$3_IInstagramSettingPost = IInstagramSettingPost;
|
|
3614
3708
|
type index$3_INiche = INiche;
|
|
3709
|
+
type index$3_IThreadsHistoryAutoPost = IThreadsHistoryAutoPost;
|
|
3615
3710
|
type index$3_IThreadsReportInteractFollow = IThreadsReportInteractFollow;
|
|
3616
3711
|
type index$3_IThreadsReportInteractReplyComment = IThreadsReportInteractReplyComment;
|
|
3617
3712
|
type index$3_IThreadsReportInteractReplyMessage = IThreadsReportInteractReplyMessage;
|
|
@@ -3622,7 +3717,7 @@ type index$3_IThreadsSettingInteractReplyMessage = IThreadsSettingInteractReplyM
|
|
|
3622
3717
|
type index$3_IThreadsSettingInteractUnFollow = IThreadsSettingInteractUnFollow;
|
|
3623
3718
|
type index$3_IThreadsSettingPost = IThreadsSettingPost;
|
|
3624
3719
|
declare namespace index$3 {
|
|
3625
|
-
export type { index$3_IIdea as IIdea, index$3_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, index$3_IInstagramReportInteractExplore as IInstagramReportInteractExplore, index$3_IInstagramReportInteractFollow as IInstagramReportInteractFollow, index$3_IInstagramReportInteractReel as IInstagramReportInteractReel, index$3_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, index$3_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, index$3_IInstagramReportInteractStory as IInstagramReportInteractStory, index$3_IInstagramReportPostHighLight as IInstagramReportPostHighLight, index$3_IInstagramReportPostNew as IInstagramReportPostNew, index$3_IInstagramReportPostReel as IInstagramReportPostReel, index$3_IInstagramReportPostSquare as IInstagramReportPostSquare, index$3_IInstagramReportPostStory as IInstagramReportPostStory, 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_INiche as INiche, index$3_IThreadsReportInteractFollow as IThreadsReportInteractFollow, index$3_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, index$3_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, index$3_IThreadsReportPost as IThreadsReportPost, index$3_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, index$3_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, index$3_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, index$3_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, index$3_IThreadsSettingPost as IThreadsSettingPost };
|
|
3720
|
+
export type { index$3_IIdea as IIdea, index$3_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, index$3_IInstagramReportInteractExplore as IInstagramReportInteractExplore, index$3_IInstagramReportInteractFollow as IInstagramReportInteractFollow, index$3_IInstagramReportInteractReel as IInstagramReportInteractReel, index$3_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, index$3_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, index$3_IInstagramReportInteractStory as IInstagramReportInteractStory, index$3_IInstagramReportPostHighLight as IInstagramReportPostHighLight, index$3_IInstagramReportPostNew as IInstagramReportPostNew, index$3_IInstagramReportPostReel as IInstagramReportPostReel, index$3_IInstagramReportPostSquare as IInstagramReportPostSquare, index$3_IInstagramReportPostStory as IInstagramReportPostStory, 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_INiche as INiche, index$3_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, index$3_IThreadsReportInteractFollow as IThreadsReportInteractFollow, index$3_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, index$3_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, index$3_IThreadsReportPost as IThreadsReportPost, index$3_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, index$3_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, index$3_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, index$3_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, index$3_IThreadsSettingPost as IThreadsSettingPost };
|
|
3626
3721
|
}
|
|
3627
3722
|
|
|
3628
3723
|
type index$2_IAccountAIContent = IAccountAIContent;
|
|
@@ -3741,6 +3836,7 @@ type index$2_ITeamMember = ITeamMember;
|
|
|
3741
3836
|
type index$2_ITeamRole = ITeamRole;
|
|
3742
3837
|
type index$2_IThreadsAccountRaw = IThreadsAccountRaw;
|
|
3743
3838
|
type index$2_IThreadsAccountRun = IThreadsAccountRun;
|
|
3839
|
+
type index$2_IThreadsHistoryAutoPost = IThreadsHistoryAutoPost;
|
|
3744
3840
|
type index$2_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
|
|
3745
3841
|
type index$2_IThreadsHistoryChange = IThreadsHistoryChange;
|
|
3746
3842
|
type index$2_IThreadsHistoryCreate = IThreadsHistoryCreate;
|
|
@@ -3765,7 +3861,7 @@ type index$2_IVoiceLanguage = IVoiceLanguage;
|
|
|
3765
3861
|
type index$2_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
3766
3862
|
type index$2_IVoiceStores = IVoiceStores;
|
|
3767
3863
|
declare namespace index$2 {
|
|
3768
|
-
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_IAccountSocialGroup as IAccountSocialGroup, 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_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, 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_IInstagramAccountRaw as IInstagramAccountRaw, type index$2_IInstagramAccountRun as IInstagramAccountRun, type index$2_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, 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_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_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, 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 };
|
|
3864
|
+
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_IAccountSocialGroup as IAccountSocialGroup, 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_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, 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_IInstagramAccountRaw as IInstagramAccountRaw, type index$2_IInstagramAccountRun as IInstagramAccountRun, type index$2_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, 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_IThreadsAccountRaw as IThreadsAccountRaw, type index$2_IThreadsAccountRun as IThreadsAccountRun, type index$2_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, 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_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, 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 };
|
|
3769
3865
|
}
|
|
3770
3866
|
|
|
3771
3867
|
interface IDataUser {
|
|
@@ -4219,6 +4315,9 @@ interface FindOverviewAccountDriveDto {
|
|
|
4219
4315
|
};
|
|
4220
4316
|
}
|
|
4221
4317
|
|
|
4318
|
+
interface AddToDeviceProxyDto {
|
|
4319
|
+
listDeviceIds: string[];
|
|
4320
|
+
}
|
|
4222
4321
|
interface FilterProxyDto extends IFilterBaseDto, Omit<IProxy, TOmitFilterDto> {
|
|
4223
4322
|
}
|
|
4224
4323
|
interface FindOverviewProxyDto {
|
|
@@ -4262,6 +4361,9 @@ interface FindAccountVPSGroupDto extends IBaseDto, IAccountVPSGroup {
|
|
|
4262
4361
|
interface FilterAccountVPSGroupDto extends IFilterBaseDto, Omit<IAccountVPSGroup, TOmitFilterDto> {
|
|
4263
4362
|
}
|
|
4264
4363
|
|
|
4364
|
+
interface AddToDeviceAccountVPNDto {
|
|
4365
|
+
listDeviceIds: string[];
|
|
4366
|
+
}
|
|
4265
4367
|
interface FilterAccountVPNDto extends IFilterBaseDto, Omit<IAccountVPN, TOmitFilterDto> {
|
|
4266
4368
|
}
|
|
4267
4369
|
interface FindAccountVPNDto extends IBaseDto, IAccountVPN {
|
|
@@ -4310,6 +4412,9 @@ interface FindOverviewAccountVPNDto {
|
|
|
4310
4412
|
};
|
|
4311
4413
|
}
|
|
4312
4414
|
|
|
4415
|
+
interface AddToDeviceAccountCHPlayICloudDto {
|
|
4416
|
+
listDeviceIds: string[];
|
|
4417
|
+
}
|
|
4313
4418
|
interface FilterAccountCHPlayICloudDto extends IFilterBaseDto, Omit<IAccountCHPlayICloud, TOmitFilterDto> {
|
|
4314
4419
|
os: ETypeDeviceOS;
|
|
4315
4420
|
pc: string;
|
|
@@ -5139,6 +5244,9 @@ interface FindDepartmentDto extends IBaseDto, IDepartment {
|
|
|
5139
5244
|
interface FilterDepartmentDto extends IFilterBaseDto, Omit<IDepartment, TOmitFilterDto> {
|
|
5140
5245
|
}
|
|
5141
5246
|
|
|
5247
|
+
type index_AddToDeviceAccountCHPlayICloudDto = AddToDeviceAccountCHPlayICloudDto;
|
|
5248
|
+
type index_AddToDeviceAccountVPNDto = AddToDeviceAccountVPNDto;
|
|
5249
|
+
type index_AddToDeviceProxyDto = AddToDeviceProxyDto;
|
|
5142
5250
|
type index_AutoFillInstagramAccountRawDto = AutoFillInstagramAccountRawDto;
|
|
5143
5251
|
type index_AutoFillOverviewInstagramAccountRawDto = AutoFillOverviewInstagramAccountRawDto;
|
|
5144
5252
|
type index_AutoFillOverviewThreadsAccountRawDto = AutoFillOverviewThreadsAccountRawDto;
|
|
@@ -5338,7 +5446,7 @@ type index_ImportDto = ImportDto;
|
|
|
5338
5446
|
type index_OverviewUserDto = OverviewUserDto;
|
|
5339
5447
|
type index_TOmitFilterDto = TOmitFilterDto;
|
|
5340
5448
|
declare namespace index {
|
|
5341
|
-
export type { index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_ExportDto as ExportDto, index_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountEmailDto as FilterAccountEmailDto, 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_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_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerImageAIDto as FilterManagerImageAIDto, 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_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_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountEmailDto as FindAccountEmailDto, 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_FindInstagramAccountRawDto as FindInstagramAccountRawDto, 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_FindInstagramReportPostSquareDto as FindInstagramReportPostSquareDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindLarkDto as FindLarkDto, index_FindManagerImageAIDto as FindManagerImageAIDto, 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_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_FindThreadsReportInteractReplyMessageDto as FindThreadsReportInteractReplyMessageDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseDto as IBaseDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto };
|
|
5449
|
+
export type { index_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index_AddToDeviceProxyDto as AddToDeviceProxyDto, index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_ExportDto as ExportDto, index_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountEmailDto as FilterAccountEmailDto, 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_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_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerImageAIDto as FilterManagerImageAIDto, 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_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_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountEmailDto as FindAccountEmailDto, 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_FindInstagramAccountRawDto as FindInstagramAccountRawDto, 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_FindInstagramReportPostSquareDto as FindInstagramReportPostSquareDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindLarkDto as FindLarkDto, index_FindManagerImageAIDto as FindManagerImageAIDto, 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_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_FindThreadsReportInteractReplyMessageDto as FindThreadsReportInteractReplyMessageDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseDto as IBaseDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto };
|
|
5342
5450
|
}
|
|
5343
5451
|
|
|
5344
|
-
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 FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, 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 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 FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, 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 FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, 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 FindInstagramAccountRawDto, 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 FindInstagramReportPostSquareDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, 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 FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, 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 IAccountSocialGroup, 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 IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, 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 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 IThreadsSettingInteractUnFollow, 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 };
|
|
5452
|
+
export { type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, 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 FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, 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 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 FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, 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 FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, 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 FindInstagramAccountRawDto, 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 FindInstagramReportPostSquareDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, 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 FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, 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 IAccountSocialGroup, 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 IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, 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 IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoSync, type IThreadsHistoryChange, type IThreadsHistoryCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyMessage, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, 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 };
|