automation-lib 5.4.277 → 5.4.280
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 +6 -523
- package/dist/index.d.ts +6 -523
- package/dist/index.js +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1032,8 +1032,7 @@ declare enum EStatusAccountSocialLoginEmail {
|
|
|
1032
1032
|
|
|
1033
1033
|
declare enum EStatusAccountSocialRaw {
|
|
1034
1034
|
Available = "Available",
|
|
1035
|
-
|
|
1036
|
-
InUse = "InUse",
|
|
1035
|
+
InUseDevice = "InUseDevice",
|
|
1037
1036
|
Locked = "Locked",
|
|
1038
1037
|
Suspended = "Suspended"
|
|
1039
1038
|
}
|
|
@@ -4679,8 +4678,8 @@ interface IInstagramAccountRaw extends IBaseModel, ITrackingModel<IUser>, IAccou
|
|
|
4679
4678
|
pc: IPC | string;
|
|
4680
4679
|
device: IDevice | string;
|
|
4681
4680
|
isActiveOnDevice: boolean;
|
|
4682
|
-
status: EStatusAccountSocialRaw;
|
|
4683
4681
|
timeAddToDevice: Date;
|
|
4682
|
+
status: EStatusAccountSocialRaw;
|
|
4684
4683
|
numberFollowers: number;
|
|
4685
4684
|
numberFollowings: number;
|
|
4686
4685
|
numberPosts: number;
|
|
@@ -8121,8 +8120,6 @@ interface FindTaskInstagramPostDto extends IFindBaseDto {
|
|
|
8121
8120
|
dayOfWeek: EDayOfWeek;
|
|
8122
8121
|
timeStart: Date;
|
|
8123
8122
|
timeEnd: Date;
|
|
8124
|
-
service: string;
|
|
8125
|
-
action: string;
|
|
8126
8123
|
timeExecute: Date;
|
|
8127
8124
|
status: EStatusTaskToolSocials;
|
|
8128
8125
|
dayOfWeekUS: string;
|
|
@@ -8214,252 +8211,6 @@ interface FilterTaskInstagramPostDto extends IFilterBaseDto, IFilterBaseAccountS
|
|
|
8214
8211
|
status: EStatusTaskToolSocials[];
|
|
8215
8212
|
}
|
|
8216
8213
|
|
|
8217
|
-
interface FindOverViewTaskInstagramInteractExploreDto {
|
|
8218
|
-
totalDepartments: number;
|
|
8219
|
-
totalLeaders: number;
|
|
8220
|
-
totalMembers: number;
|
|
8221
|
-
totalTeams: number;
|
|
8222
|
-
totalPC: number;
|
|
8223
|
-
totalDevice: number;
|
|
8224
|
-
totalAccountGroups: number;
|
|
8225
|
-
totalAccounts: number;
|
|
8226
|
-
totalIdea: number;
|
|
8227
|
-
totalNiche: number;
|
|
8228
|
-
totalType: {
|
|
8229
|
-
total: number;
|
|
8230
|
-
TM: number;
|
|
8231
|
-
NTM: number;
|
|
8232
|
-
};
|
|
8233
|
-
totalSocial: {
|
|
8234
|
-
active: number;
|
|
8235
|
-
pending: number;
|
|
8236
|
-
inactive: number;
|
|
8237
|
-
suspended: number;
|
|
8238
|
-
};
|
|
8239
|
-
totalLogin: {
|
|
8240
|
-
available: number;
|
|
8241
|
-
unAvailable: number;
|
|
8242
|
-
na: number;
|
|
8243
|
-
};
|
|
8244
|
-
totalTasks: {
|
|
8245
|
-
pending: number;
|
|
8246
|
-
executing: number;
|
|
8247
|
-
error: number;
|
|
8248
|
-
repaired: number;
|
|
8249
|
-
done: number;
|
|
8250
|
-
};
|
|
8251
|
-
}
|
|
8252
|
-
interface CreateTaskInstagramInteractExploreDto extends Partial<ITaskInstagramInteractExplore> {
|
|
8253
|
-
}
|
|
8254
|
-
interface UpdateTaskInstagramInteractExploreDto extends Partial<ITaskInstagramInteractExplore> {
|
|
8255
|
-
}
|
|
8256
|
-
interface FindTaskInstagramInteractExploreDto extends IFindBaseDto, ITaskInstagramInteractExplore {
|
|
8257
|
-
idea: {
|
|
8258
|
-
id: string;
|
|
8259
|
-
name: string;
|
|
8260
|
-
};
|
|
8261
|
-
niche: {
|
|
8262
|
-
id: string;
|
|
8263
|
-
name: string;
|
|
8264
|
-
};
|
|
8265
|
-
type: ETypeManagerWorkClassify;
|
|
8266
|
-
pc: {
|
|
8267
|
-
id: string;
|
|
8268
|
-
name: string;
|
|
8269
|
-
};
|
|
8270
|
-
device: {
|
|
8271
|
-
id: string;
|
|
8272
|
-
name: string;
|
|
8273
|
-
};
|
|
8274
|
-
accountGroup: {
|
|
8275
|
-
id: string;
|
|
8276
|
-
name: string;
|
|
8277
|
-
};
|
|
8278
|
-
accountInfo: {
|
|
8279
|
-
id: string;
|
|
8280
|
-
name: string;
|
|
8281
|
-
nameAppCloneSocial: string;
|
|
8282
|
-
accountDeviceTypeAppClone: string;
|
|
8283
|
-
accountDeviceNameAppClone: string;
|
|
8284
|
-
};
|
|
8285
|
-
}
|
|
8286
|
-
interface FilterTaskInstagramInteractExploreDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
8287
|
-
idea: string[];
|
|
8288
|
-
niche: string[];
|
|
8289
|
-
type: ETypeManagerWorkClassify[];
|
|
8290
|
-
pc: string[];
|
|
8291
|
-
deviceName: string[];
|
|
8292
|
-
deviceKey: string[];
|
|
8293
|
-
accountGroup: string[];
|
|
8294
|
-
account: string[];
|
|
8295
|
-
sheetName: string[];
|
|
8296
|
-
status: EStatusTaskToolSocials[];
|
|
8297
|
-
}
|
|
8298
|
-
|
|
8299
|
-
interface FindOverViewTaskInstagramInteractReelDto {
|
|
8300
|
-
totalDepartments: number;
|
|
8301
|
-
totalLeaders: number;
|
|
8302
|
-
totalMembers: number;
|
|
8303
|
-
totalTeams: number;
|
|
8304
|
-
totalPC: number;
|
|
8305
|
-
totalDevice: number;
|
|
8306
|
-
totalAccountGroups: number;
|
|
8307
|
-
totalAccounts: number;
|
|
8308
|
-
totalIdea: number;
|
|
8309
|
-
totalNiche: number;
|
|
8310
|
-
totalType: {
|
|
8311
|
-
total: number;
|
|
8312
|
-
TM: number;
|
|
8313
|
-
NTM: number;
|
|
8314
|
-
};
|
|
8315
|
-
totalSocial: {
|
|
8316
|
-
active: number;
|
|
8317
|
-
pending: number;
|
|
8318
|
-
inactive: number;
|
|
8319
|
-
suspended: number;
|
|
8320
|
-
};
|
|
8321
|
-
totalLogin: {
|
|
8322
|
-
available: number;
|
|
8323
|
-
unAvailable: number;
|
|
8324
|
-
na: number;
|
|
8325
|
-
};
|
|
8326
|
-
totalTasks: {
|
|
8327
|
-
pending: number;
|
|
8328
|
-
executing: number;
|
|
8329
|
-
error: number;
|
|
8330
|
-
repaired: number;
|
|
8331
|
-
done: number;
|
|
8332
|
-
};
|
|
8333
|
-
}
|
|
8334
|
-
interface CreateTaskInstagramInteractReelDto extends Partial<ITaskInstagramInteractReel> {
|
|
8335
|
-
}
|
|
8336
|
-
interface UpdateTaskInstagramInteractReelDto extends Partial<ITaskInstagramInteractReel> {
|
|
8337
|
-
}
|
|
8338
|
-
interface FindTaskInstagramInteractReelDto extends IFindBaseDto, ITaskInstagramInteractReel {
|
|
8339
|
-
idea: {
|
|
8340
|
-
id: string;
|
|
8341
|
-
name: string;
|
|
8342
|
-
};
|
|
8343
|
-
niche: {
|
|
8344
|
-
id: string;
|
|
8345
|
-
name: string;
|
|
8346
|
-
};
|
|
8347
|
-
type: ETypeManagerWorkClassify;
|
|
8348
|
-
pc: {
|
|
8349
|
-
id: string;
|
|
8350
|
-
name: string;
|
|
8351
|
-
};
|
|
8352
|
-
device: {
|
|
8353
|
-
id: string;
|
|
8354
|
-
name: string;
|
|
8355
|
-
};
|
|
8356
|
-
accountGroup: {
|
|
8357
|
-
id: string;
|
|
8358
|
-
name: string;
|
|
8359
|
-
};
|
|
8360
|
-
accountInfo: {
|
|
8361
|
-
id: string;
|
|
8362
|
-
name: string;
|
|
8363
|
-
nameAppCloneSocial: string;
|
|
8364
|
-
accountDeviceTypeAppClone: string;
|
|
8365
|
-
accountDeviceNameAppClone: string;
|
|
8366
|
-
};
|
|
8367
|
-
}
|
|
8368
|
-
interface FilterTaskInstagramInteractReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
8369
|
-
idea: string[];
|
|
8370
|
-
niche: string[];
|
|
8371
|
-
type: ETypeManagerWorkClassify[];
|
|
8372
|
-
pc: string[];
|
|
8373
|
-
deviceName: string[];
|
|
8374
|
-
deviceKey: string[];
|
|
8375
|
-
accountGroup: string[];
|
|
8376
|
-
account: string[];
|
|
8377
|
-
sheetName: string[];
|
|
8378
|
-
status: EStatusTaskToolSocials[];
|
|
8379
|
-
}
|
|
8380
|
-
|
|
8381
|
-
interface FindOverViewTaskInstagramInteractStoryDto {
|
|
8382
|
-
totalDepartments: number;
|
|
8383
|
-
totalLeaders: number;
|
|
8384
|
-
totalMembers: number;
|
|
8385
|
-
totalTeams: number;
|
|
8386
|
-
totalPC: number;
|
|
8387
|
-
totalDevice: number;
|
|
8388
|
-
totalAccountGroups: number;
|
|
8389
|
-
totalAccounts: number;
|
|
8390
|
-
totalIdea: number;
|
|
8391
|
-
totalNiche: number;
|
|
8392
|
-
totalType: {
|
|
8393
|
-
total: number;
|
|
8394
|
-
TM: number;
|
|
8395
|
-
NTM: number;
|
|
8396
|
-
};
|
|
8397
|
-
totalSocial: {
|
|
8398
|
-
active: number;
|
|
8399
|
-
pending: number;
|
|
8400
|
-
inactive: number;
|
|
8401
|
-
suspended: number;
|
|
8402
|
-
};
|
|
8403
|
-
totalLogin: {
|
|
8404
|
-
available: number;
|
|
8405
|
-
unAvailable: number;
|
|
8406
|
-
na: number;
|
|
8407
|
-
};
|
|
8408
|
-
totalTasks: {
|
|
8409
|
-
pending: number;
|
|
8410
|
-
executing: number;
|
|
8411
|
-
error: number;
|
|
8412
|
-
repaired: number;
|
|
8413
|
-
done: number;
|
|
8414
|
-
};
|
|
8415
|
-
}
|
|
8416
|
-
interface CreateTaskInstagramInteractStoryDto extends Partial<ITaskInstagramInteractStory> {
|
|
8417
|
-
}
|
|
8418
|
-
interface UpdateTaskInstagramInteractStoryDto extends Partial<ITaskInstagramInteractStory> {
|
|
8419
|
-
}
|
|
8420
|
-
interface FindTaskInstagramInteractStoryDto extends IFindBaseDto, ITaskInstagramInteractStory {
|
|
8421
|
-
idea: {
|
|
8422
|
-
id: string;
|
|
8423
|
-
name: string;
|
|
8424
|
-
};
|
|
8425
|
-
niche: {
|
|
8426
|
-
id: string;
|
|
8427
|
-
name: string;
|
|
8428
|
-
};
|
|
8429
|
-
type: ETypeManagerWorkClassify;
|
|
8430
|
-
pc: {
|
|
8431
|
-
id: string;
|
|
8432
|
-
name: string;
|
|
8433
|
-
};
|
|
8434
|
-
device: {
|
|
8435
|
-
id: string;
|
|
8436
|
-
name: string;
|
|
8437
|
-
};
|
|
8438
|
-
accountGroup: {
|
|
8439
|
-
id: string;
|
|
8440
|
-
name: string;
|
|
8441
|
-
};
|
|
8442
|
-
accountInfo: {
|
|
8443
|
-
id: string;
|
|
8444
|
-
name: string;
|
|
8445
|
-
nameAppCloneSocial: string;
|
|
8446
|
-
accountDeviceTypeAppClone: string;
|
|
8447
|
-
accountDeviceNameAppClone: string;
|
|
8448
|
-
};
|
|
8449
|
-
}
|
|
8450
|
-
interface FilterTaskInstagramInteractStoryDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
8451
|
-
idea: string[];
|
|
8452
|
-
niche: string[];
|
|
8453
|
-
type: ETypeManagerWorkClassify[];
|
|
8454
|
-
pc: string[];
|
|
8455
|
-
deviceName: string[];
|
|
8456
|
-
deviceKey: string[];
|
|
8457
|
-
accountGroup: string[];
|
|
8458
|
-
account: string[];
|
|
8459
|
-
sheetName: string[];
|
|
8460
|
-
status: EStatusTaskToolSocials[];
|
|
8461
|
-
}
|
|
8462
|
-
|
|
8463
8214
|
interface FilterInstagramDashboardFollowerDto extends IFilterBaseDto, IFilterBaseAccountSocialDto, ApplyTimeDashboardDto {
|
|
8464
8215
|
idea: string[];
|
|
8465
8216
|
niche: string[];
|
|
@@ -11025,9 +10776,6 @@ type index$6_CreateTaskAIImageVoiceCanvaThreadsDto = CreateTaskAIImageVoiceCanva
|
|
|
11025
10776
|
type index$6_CreateTaskInstagramBlockUserDto = CreateTaskInstagramBlockUserDto;
|
|
11026
10777
|
type index$6_CreateTaskInstagramChangeInfoDto = CreateTaskInstagramChangeInfoDto;
|
|
11027
10778
|
type index$6_CreateTaskInstagramFollowDto = CreateTaskInstagramFollowDto;
|
|
11028
|
-
type index$6_CreateTaskInstagramInteractExploreDto = CreateTaskInstagramInteractExploreDto;
|
|
11029
|
-
type index$6_CreateTaskInstagramInteractReelDto = CreateTaskInstagramInteractReelDto;
|
|
11030
|
-
type index$6_CreateTaskInstagramInteractStoryDto = CreateTaskInstagramInteractStoryDto;
|
|
11031
10779
|
type index$6_CreateTaskInstagramPostDto = CreateTaskInstagramPostDto;
|
|
11032
10780
|
type index$6_CreateTaskInstagramReplyCommentDto = CreateTaskInstagramReplyCommentDto;
|
|
11033
10781
|
type index$6_CreateTaskInstagramReplyMessageDto = CreateTaskInstagramReplyMessageDto;
|
|
@@ -11124,9 +10872,6 @@ type index$6_FilterTaskAIImageVoiceCanvaThreadsDto = FilterTaskAIImageVoiceCanva
|
|
|
11124
10872
|
type index$6_FilterTaskInstagramBlockUserDto = FilterTaskInstagramBlockUserDto;
|
|
11125
10873
|
type index$6_FilterTaskInstagramChangeInfoDto = FilterTaskInstagramChangeInfoDto;
|
|
11126
10874
|
type index$6_FilterTaskInstagramFollowDto = FilterTaskInstagramFollowDto;
|
|
11127
|
-
type index$6_FilterTaskInstagramInteractExploreDto = FilterTaskInstagramInteractExploreDto;
|
|
11128
|
-
type index$6_FilterTaskInstagramInteractReelDto = FilterTaskInstagramInteractReelDto;
|
|
11129
|
-
type index$6_FilterTaskInstagramInteractStoryDto = FilterTaskInstagramInteractStoryDto;
|
|
11130
10875
|
type index$6_FilterTaskInstagramPostDto = FilterTaskInstagramPostDto;
|
|
11131
10876
|
type index$6_FilterTaskInstagramReplyCommentDto = FilterTaskInstagramReplyCommentDto;
|
|
11132
10877
|
type index$6_FilterTaskInstagramReplyMessageDto = FilterTaskInstagramReplyMessageDto;
|
|
@@ -11238,9 +10983,6 @@ type index$6_FindOverViewTaskAIImageVoiceCanvaThreadsDto = FindOverViewTaskAIIma
|
|
|
11238
10983
|
type index$6_FindOverViewTaskInstagramBlockUserDto = FindOverViewTaskInstagramBlockUserDto;
|
|
11239
10984
|
type index$6_FindOverViewTaskInstagramChangeInfoDto = FindOverViewTaskInstagramChangeInfoDto;
|
|
11240
10985
|
type index$6_FindOverViewTaskInstagramFollowDto = FindOverViewTaskInstagramFollowDto;
|
|
11241
|
-
type index$6_FindOverViewTaskInstagramInteractExploreDto = FindOverViewTaskInstagramInteractExploreDto;
|
|
11242
|
-
type index$6_FindOverViewTaskInstagramInteractReelDto = FindOverViewTaskInstagramInteractReelDto;
|
|
11243
|
-
type index$6_FindOverViewTaskInstagramInteractStoryDto = FindOverViewTaskInstagramInteractStoryDto;
|
|
11244
10986
|
type index$6_FindOverViewTaskInstagramPostDto = FindOverViewTaskInstagramPostDto;
|
|
11245
10987
|
type index$6_FindOverViewTaskInstagramReplyCommentDto = FindOverViewTaskInstagramReplyCommentDto;
|
|
11246
10988
|
type index$6_FindOverViewTaskInstagramReplyMessageDto = FindOverViewTaskInstagramReplyMessageDto;
|
|
@@ -11304,9 +11046,6 @@ type index$6_FindTaskAvailableAIContentDto = FindTaskAvailableAIContentDto;
|
|
|
11304
11046
|
type index$6_FindTaskInstagramBlockUserDto = FindTaskInstagramBlockUserDto;
|
|
11305
11047
|
type index$6_FindTaskInstagramChangeInfoDto = FindTaskInstagramChangeInfoDto;
|
|
11306
11048
|
type index$6_FindTaskInstagramFollowDto = FindTaskInstagramFollowDto;
|
|
11307
|
-
type index$6_FindTaskInstagramInteractExploreDto = FindTaskInstagramInteractExploreDto;
|
|
11308
|
-
type index$6_FindTaskInstagramInteractReelDto = FindTaskInstagramInteractReelDto;
|
|
11309
|
-
type index$6_FindTaskInstagramInteractStoryDto = FindTaskInstagramInteractStoryDto;
|
|
11310
11049
|
type index$6_FindTaskInstagramPostDto = FindTaskInstagramPostDto;
|
|
11311
11050
|
type index$6_FindTaskInstagramReplyCommentDto = FindTaskInstagramReplyCommentDto;
|
|
11312
11051
|
type index$6_FindTaskInstagramReplyMessageDto = FindTaskInstagramReplyMessageDto;
|
|
@@ -11377,9 +11116,6 @@ type index$6_UpdateTaskAIImageVoiceCanvaThreadsDto = UpdateTaskAIImageVoiceCanva
|
|
|
11377
11116
|
type index$6_UpdateTaskInstagramBlockUserDto = UpdateTaskInstagramBlockUserDto;
|
|
11378
11117
|
type index$6_UpdateTaskInstagramChangeInfoDto = UpdateTaskInstagramChangeInfoDto;
|
|
11379
11118
|
type index$6_UpdateTaskInstagramFollowDto = UpdateTaskInstagramFollowDto;
|
|
11380
|
-
type index$6_UpdateTaskInstagramInteractExploreDto = UpdateTaskInstagramInteractExploreDto;
|
|
11381
|
-
type index$6_UpdateTaskInstagramInteractReelDto = UpdateTaskInstagramInteractReelDto;
|
|
11382
|
-
type index$6_UpdateTaskInstagramInteractStoryDto = UpdateTaskInstagramInteractStoryDto;
|
|
11383
11119
|
type index$6_UpdateTaskInstagramPostDto = UpdateTaskInstagramPostDto;
|
|
11384
11120
|
type index$6_UpdateTaskInstagramReplyCommentDto = UpdateTaskInstagramReplyCommentDto;
|
|
11385
11121
|
type index$6_UpdateTaskInstagramReplyMessageDto = UpdateTaskInstagramReplyMessageDto;
|
|
@@ -11393,7 +11129,7 @@ type index$6_UpdateUserDto = UpdateUserDto;
|
|
|
11393
11129
|
type index$6_ViewDetailDeviceDto = ViewDetailDeviceDto;
|
|
11394
11130
|
type index$6_ViewDetailSheetsToolDto = ViewDetailSheetsToolDto;
|
|
11395
11131
|
declare namespace index$6 {
|
|
11396
|
-
export type { index$6_ActionLoadInfoUrlSheetToolDto as ActionLoadInfoUrlSheetToolDto, index$6_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, index$6_AddAccountForDeviceDto as AddAccountForDeviceDto, index$6_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index$6_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index$6_AddToDeviceProxyDto as AddToDeviceProxyDto, index$6_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, index$6_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$6_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index$6_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, index$6_AutoFillAssignedMemberThreadsAccountRawDto as AutoFillAssignedMemberThreadsAccountRawDto, index$6_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index$6_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index$6_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, index$6_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index$6_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, index$6_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index$6_CheckSendMessageLark as CheckSendMessageLark, index$6_CreateAccountSocialGroupDto as CreateAccountSocialGroupDto, index$6_CreateAccountVPSDto as CreateAccountVPSDto, index$6_CreateBlogDto as CreateBlogDto, index$6_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index$6_CreateDepartmentDto as CreateDepartmentDto, index$6_CreateInstagramSettingInteractFollowDto as CreateInstagramSettingInteractFollowDto, index$6_CreateInstagramSettingInteractReplyCommentDto as CreateInstagramSettingInteractReplyCommentDto, index$6_CreateInstagramSettingInteractReplyMessageDto as CreateInstagramSettingInteractReplyMessageDto, index$6_CreateInstagramSettingInteractUnFollowDto as CreateInstagramSettingInteractUnFollowDto, index$6_CreateInstagramSettingPostDto as CreateInstagramSettingPostDto, index$6_CreateLarkDto as CreateLarkDto, index$6_CreateManagerWorkDto as CreateManagerWorkDto, index$6_CreatePCDto as CreatePCDto, index$6_CreateProxyDto as CreateProxyDto, index$6_CreateRoleDto as CreateRoleDto, index$6_CreateSheetToolDto as CreateSheetToolDto, index$6_CreateSheetWorkDto as CreateSheetWorkDto, index$6_CreateTaskAIContentDto as CreateTaskAIContentDto, index$6_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index$6_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index$6_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index$6_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index$6_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index$6_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index$6_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index$6_CreateTaskInstagramInteractExploreDto as CreateTaskInstagramInteractExploreDto, index$6_CreateTaskInstagramInteractReelDto as CreateTaskInstagramInteractReelDto, index$6_CreateTaskInstagramInteractStoryDto as CreateTaskInstagramInteractStoryDto, index$6_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index$6_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index$6_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index$6_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index$6_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index$6_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index$6_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index$6_CreateTasksJobDto as CreateTasksJobDto, index$6_CreateTeamDto as CreateTeamDto, index$6_CreateUserDto as CreateUserDto, index$6_DataImportInstagramAccountRawDto as DataImportInstagramAccountRawDto, index$6_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, index$6_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, index$6_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, index$6_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, index$6_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$6_ExportDto as ExportDto, index$6_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index$6_FilterAccountAIContentDto as FilterAccountAIContentDto, index$6_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index$6_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index$6_FilterAccountAIImageDto as FilterAccountAIImageDto, index$6_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index$6_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index$6_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index$6_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index$6_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index$6_FilterAccountCanvaDto as FilterAccountCanvaDto, index$6_FilterAccountDriveDto as FilterAccountDriveDto, index$6_FilterAccountEmailDto as FilterAccountEmailDto, index$6_FilterAccountSocialGroupDto as FilterAccountSocialGroupDto, index$6_FilterAccountVPNDto as FilterAccountVPNDto, index$6_FilterAccountVPSDto as FilterAccountVPSDto, index$6_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index$6_FilterBaseDto as FilterBaseDto, index$6_FilterBaseSocialDto as FilterBaseSocialDto, index$6_FilterBlogCategoryDto as FilterBlogCategoryDto, index$6_FilterBlogDto as FilterBlogDto, index$6_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, index$6_FilterCheckerAccountThreadsDashboardFollowerDto as FilterCheckerAccountThreadsDashboardFollowerDto, index$6_FilterDepartmentDto as FilterDepartmentDto, index$6_FilterDeviceDto as FilterDeviceDto, index$6_FilterDeviceLogDto as FilterDeviceLogDto, index$6_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index$6_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index$6_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index$6_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index$6_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index$6_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index$6_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, index$6_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index$6_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, index$6_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, index$6_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index$6_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, index$6_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index$6_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index$6_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index$6_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index$6_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index$6_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index$6_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, index$6_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index$6_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index$6_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index$6_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index$6_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index$6_FilterInstagramSettingFollowDto as FilterInstagramSettingFollowDto, index$6_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index$6_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index$6_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index$6_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index$6_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index$6_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index$6_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index$6_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index$6_FilterLarkDto as FilterLarkDto, index$6_FilterManagerImageAIDto as FilterManagerImageAIDto, index$6_FilterManagerSheetDto as FilterManagerSheetDto, index$6_FilterManagerWorkDto as FilterManagerWorkDto, index$6_FilterPCDto as FilterPCDto, index$6_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FilterPerformanceBreakdownThreadsDashboardFollowerDto as FilterPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FilterProxyDto as FilterProxyDto, index$6_FilterRoleDto as FilterRoleDto, index$6_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index$6_FilterSheetWorkDto as FilterSheetWorkDto, index$6_FilterSheetsToolDto as FilterSheetsToolDto, index$6_FilterTaskAIContentDto as FilterTaskAIContentDto, index$6_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index$6_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index$6_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index$6_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index$6_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index$6_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index$6_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index$6_FilterTaskInstagramInteractExploreDto as FilterTaskInstagramInteractExploreDto, index$6_FilterTaskInstagramInteractReelDto as FilterTaskInstagramInteractReelDto, index$6_FilterTaskInstagramInteractStoryDto as FilterTaskInstagramInteractStoryDto, index$6_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index$6_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index$6_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index$6_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index$6_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index$6_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index$6_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index$6_FilterTeamDto as FilterTeamDto, index$6_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index$6_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index$6_FilterThreadsDashboardFollowerDto as FilterThreadsDashboardFollowerDto, index$6_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index$6_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index$6_FilterThreadsHistoryCreateNewDto as FilterThreadsHistoryCreateNewDto, index$6_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index$6_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index$6_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index$6_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index$6_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, index$6_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index$6_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index$6_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index$6_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index$6_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index$6_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index$6_FilterUserDto as FilterUserDto, index$6_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index$6_FindAccountAIContentDto as FindAccountAIContentDto, index$6_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index$6_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index$6_FindAccountAIImageDto as FindAccountAIImageDto, index$6_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index$6_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index$6_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index$6_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index$6_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index$6_FindAccountCanvaDto as FindAccountCanvaDto, index$6_FindAccountDriveDto as FindAccountDriveDto, index$6_FindAccountEmailDto as FindAccountEmailDto, index$6_FindAccountForCheckerInstagramDashboard as FindAccountForCheckerInstagramDashboard, index$6_FindAccountForCheckerThreadsDashboard as FindAccountForCheckerThreadsDashboard, index$6_FindAccountSocialGroupDto as FindAccountSocialGroupDto, index$6_FindAccountSocialGroupPopupSocialDto as FindAccountSocialGroupPopupSocialDto, index$6_FindAccountVPNDto as FindAccountVPNDto, index$6_FindAccountVPSDto as FindAccountVPSDto, index$6_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index$6_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, index$6_FindAutoFillDeviceDto as FindAutoFillDeviceDto, index$6_FindBlogCategoryDto as FindBlogCategoryDto, index$6_FindBlogDto as FindBlogDto, index$6_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, index$6_FindCheckerAccountThreadsDashboardFollowerDto as FindCheckerAccountThreadsDashboardFollowerDto, index$6_FindDepartmentDto as FindDepartmentDto, index$6_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index$6_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index$6_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index$6_FindDeviceDto as FindDeviceDto, index$6_FindDeviceLogDto as FindDeviceLogDto, index$6_FindForReviewDto as FindForReviewDto, index$6_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, index$6_FindGrowthThreadsDashboardFollowerDto as FindGrowthThreadsDashboardFollowerDto, index$6_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index$6_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index$6_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index$6_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index$6_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index$6_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index$6_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index$6_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, index$6_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, index$6_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index$6_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index$6_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index$6_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index$6_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index$6_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index$6_FindLarkDto as FindLarkDto, index$6_FindManagerImageAIDto as FindManagerImageAIDto, index$6_FindManagerSheetDto as FindManagerSheetDto, index$6_FindManagerWorkDto as FindManagerWorkDto, index$6_FindMemberForAddTeamDto as FindMemberForAddTeamDto, index$6_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index$6_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index$6_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index$6_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, index$6_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index$6_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index$6_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index$6_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index$6_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index$6_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index$6_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, index$6_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index$6_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index$6_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index$6_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index$6_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index$6_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, index$6_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, index$6_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, index$6_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, index$6_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, index$6_FindOverViewLarkDto as FindOverViewLarkDto, index$6_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index$6_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index$6_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index$6_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index$6_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index$6_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index$6_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index$6_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index$6_FindOverViewTaskInstagramInteractExploreDto as FindOverViewTaskInstagramInteractExploreDto, index$6_FindOverViewTaskInstagramInteractReelDto as FindOverViewTaskInstagramInteractReelDto, index$6_FindOverViewTaskInstagramInteractStoryDto as FindOverViewTaskInstagramInteractStoryDto, index$6_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index$6_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index$6_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index$6_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index$6_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index$6_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index$6_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index$6_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index$6_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index$6_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index$6_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index$6_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index$6_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, index$6_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index$6_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, index$6_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, index$6_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, index$6_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, index$6_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, index$6_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index$6_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index$6_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index$6_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, index$6_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index$6_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, index$6_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, index$6_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, index$6_FindOverviewDeviceLog as FindOverviewDeviceLog, index$6_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, index$6_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, index$6_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, index$6_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index$6_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, index$6_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, index$6_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index$6_FindOverviewProxyDto as FindOverviewProxyDto, index$6_FindOverviewRoleDto as FindOverviewRoleDto, index$6_FindOverviewTeamDto as FindOverviewTeamDto, index$6_FindOverviewThreadsDashboardFollowerDto as FindOverviewThreadsDashboardFollowerDto, index$6_FindOverviewThreadsHistoryCreateNewDto as FindOverviewThreadsHistoryCreateNewDto, index$6_FindOverviewUserDto as FindOverviewUserDto, index$6_FindPCDto as FindPCDto, index$6_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto as FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, index$6_FindPerformanceBreakdownThreadsDashboardFollowerDto as FindPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FindProxyDto as FindProxyDto, index$6_FindReplaceDeviceDto as FindReplaceDeviceDto, index$6_FindRoleDetailDto as FindRoleDetailDto, index$6_FindRoleDto as FindRoleDto, index$6_FindRoleOfMe as FindRoleOfMe, index$6_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index$6_FindSheetWorkDto as FindSheetWorkDto, index$6_FindSheetsToolDto as FindSheetsToolDto, index$6_FindTaskAIContentDto as FindTaskAIContentDto, index$6_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index$6_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index$6_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index$6_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index$6_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, index$6_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index$6_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index$6_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index$6_FindTaskInstagramInteractExploreDto as FindTaskInstagramInteractExploreDto, index$6_FindTaskInstagramInteractReelDto as FindTaskInstagramInteractReelDto, index$6_FindTaskInstagramInteractStoryDto as FindTaskInstagramInteractStoryDto, index$6_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index$6_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index$6_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index$6_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index$6_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index$6_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index$6_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index$6_FindTasksJobDto as FindTasksJobDto, index$6_FindTeamDto as FindTeamDto, index$6_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index$6_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index$6_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index$6_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index$6_FindThreadsHistoryCreateNewDto as FindThreadsHistoryCreateNewDto, index$6_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index$6_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index$6_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index$6_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index$6_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index$6_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index$6_FindUserDto as FindUserDto, index$6_IBaseELS as IBaseELS, index$6_IBaseRefFieldELS as IBaseRefFieldELS, index$6_IBaseSheetImportDto as IBaseSheetImportDto, index$6_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, index$6_IFilterAssignDto as IFilterAssignDto, index$6_IFilterBaseAccountSocialDto as IFilterBaseAccountSocialDto, index$6_IFilterBaseDto as IFilterBaseDto, index$6_IFindBaseDto as IFindBaseDto, index$6_ISettingAccountSocialDto as ISettingAccountSocialDto, index$6_IUserInfoAssignment as IUserInfoAssignment, index$6_ImportAccountVPSDto as ImportAccountVPSDto, index$6_ImportDto as ImportDto, index$6_ImportInstagramAccountRawDto as ImportInstagramAccountRawDto, index$6_ImportManagerWorkDto as ImportManagerWorkDto, index$6_ImportSheetWorkDto as ImportSheetWorkDto, index$6_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, index$6_OverviewSheetsToolDto as OverviewSheetsToolDto, index$6_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, index$6_ReplaceAccountVSPDto as ReplaceAccountVSPDto, index$6_ResultChangeInfoInstagramAccountRawDto as ResultChangeInfoInstagramAccountRawDto, index$6_ResultImportInstagramAccountRawDto as ResultImportInstagramAccountRawDto, index$6_StatisticsManagerWorkDto as StatisticsManagerWorkDto, index$6_StatisticsSheetWorkDto as StatisticsSheetWorkDto, index$6_UpdateAccountSocialGroupDto as UpdateAccountSocialGroupDto, index$6_UpdateAccountVPSDto as UpdateAccountVPSDto, index$6_UpdateBlogDto as UpdateBlogDto, index$6_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index$6_UpdateDepartmentDto as UpdateDepartmentDto, index$6_UpdateDeviceDto as UpdateDeviceDto, index$6_UpdateInstagramSettingInteractFollowDto as UpdateInstagramSettingInteractFollowDto, index$6_UpdateInstagramSettingInteractReplyCommentDto as UpdateInstagramSettingInteractReplyCommentDto, index$6_UpdateInstagramSettingInteractReplyMessageDto as UpdateInstagramSettingInteractReplyMessageDto, index$6_UpdateInstagramSettingInteractUnFollowDto as UpdateInstagramSettingInteractUnFollowDto, index$6_UpdateInstagramSettingPostDto as UpdateInstagramSettingPostDto, index$6_UpdateLarkDto as UpdateLarkDto, index$6_UpdateManagerWorkDto as UpdateManagerWorkDto, index$6_UpdatePCDto as UpdatePCDto, index$6_UpdateProxyDto as UpdateProxyDto, index$6_UpdateRoleDto as UpdateRoleDto, index$6_UpdateSheetWorkDto as UpdateSheetWorkDto, index$6_UpdateSheetsToolDto as UpdateSheetsToolDto, index$6_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index$6_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index$6_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index$6_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index$6_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index$6_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index$6_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index$6_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index$6_UpdateTaskInstagramInteractExploreDto as UpdateTaskInstagramInteractExploreDto, index$6_UpdateTaskInstagramInteractReelDto as UpdateTaskInstagramInteractReelDto, index$6_UpdateTaskInstagramInteractStoryDto as UpdateTaskInstagramInteractStoryDto, index$6_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index$6_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index$6_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index$6_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index$6_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index$6_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index$6_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index$6_UpdateTasksJobDto as UpdateTasksJobDto, index$6_UpdateTeamDto as UpdateTeamDto, index$6_UpdateUserDto as UpdateUserDto, index$6_ViewDetailDeviceDto as ViewDetailDeviceDto, index$6_ViewDetailSheetsToolDto as ViewDetailSheetsToolDto };
|
|
11132
|
+
export type { index$6_ActionLoadInfoUrlSheetToolDto as ActionLoadInfoUrlSheetToolDto, index$6_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, index$6_AddAccountForDeviceDto as AddAccountForDeviceDto, index$6_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index$6_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index$6_AddToDeviceProxyDto as AddToDeviceProxyDto, index$6_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, index$6_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$6_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index$6_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, index$6_AutoFillAssignedMemberThreadsAccountRawDto as AutoFillAssignedMemberThreadsAccountRawDto, index$6_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index$6_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index$6_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, index$6_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index$6_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, index$6_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index$6_CheckSendMessageLark as CheckSendMessageLark, index$6_CreateAccountSocialGroupDto as CreateAccountSocialGroupDto, index$6_CreateAccountVPSDto as CreateAccountVPSDto, index$6_CreateBlogDto as CreateBlogDto, index$6_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index$6_CreateDepartmentDto as CreateDepartmentDto, index$6_CreateInstagramSettingInteractFollowDto as CreateInstagramSettingInteractFollowDto, index$6_CreateInstagramSettingInteractReplyCommentDto as CreateInstagramSettingInteractReplyCommentDto, index$6_CreateInstagramSettingInteractReplyMessageDto as CreateInstagramSettingInteractReplyMessageDto, index$6_CreateInstagramSettingInteractUnFollowDto as CreateInstagramSettingInteractUnFollowDto, index$6_CreateInstagramSettingPostDto as CreateInstagramSettingPostDto, index$6_CreateLarkDto as CreateLarkDto, index$6_CreateManagerWorkDto as CreateManagerWorkDto, index$6_CreatePCDto as CreatePCDto, index$6_CreateProxyDto as CreateProxyDto, index$6_CreateRoleDto as CreateRoleDto, index$6_CreateSheetToolDto as CreateSheetToolDto, index$6_CreateSheetWorkDto as CreateSheetWorkDto, index$6_CreateTaskAIContentDto as CreateTaskAIContentDto, index$6_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index$6_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index$6_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index$6_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index$6_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index$6_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index$6_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index$6_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index$6_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index$6_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index$6_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index$6_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index$6_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index$6_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index$6_CreateTasksJobDto as CreateTasksJobDto, index$6_CreateTeamDto as CreateTeamDto, index$6_CreateUserDto as CreateUserDto, index$6_DataImportInstagramAccountRawDto as DataImportInstagramAccountRawDto, index$6_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, index$6_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, index$6_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, index$6_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, index$6_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$6_ExportDto as ExportDto, index$6_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index$6_FilterAccountAIContentDto as FilterAccountAIContentDto, index$6_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index$6_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index$6_FilterAccountAIImageDto as FilterAccountAIImageDto, index$6_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index$6_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index$6_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index$6_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index$6_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index$6_FilterAccountCanvaDto as FilterAccountCanvaDto, index$6_FilterAccountDriveDto as FilterAccountDriveDto, index$6_FilterAccountEmailDto as FilterAccountEmailDto, index$6_FilterAccountSocialGroupDto as FilterAccountSocialGroupDto, index$6_FilterAccountVPNDto as FilterAccountVPNDto, index$6_FilterAccountVPSDto as FilterAccountVPSDto, index$6_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index$6_FilterBaseDto as FilterBaseDto, index$6_FilterBaseSocialDto as FilterBaseSocialDto, index$6_FilterBlogCategoryDto as FilterBlogCategoryDto, index$6_FilterBlogDto as FilterBlogDto, index$6_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, index$6_FilterCheckerAccountThreadsDashboardFollowerDto as FilterCheckerAccountThreadsDashboardFollowerDto, index$6_FilterDepartmentDto as FilterDepartmentDto, index$6_FilterDeviceDto as FilterDeviceDto, index$6_FilterDeviceLogDto as FilterDeviceLogDto, index$6_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index$6_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index$6_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index$6_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index$6_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index$6_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index$6_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, index$6_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index$6_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, index$6_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, index$6_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index$6_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, index$6_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index$6_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index$6_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index$6_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index$6_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index$6_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index$6_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, index$6_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index$6_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index$6_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index$6_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index$6_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index$6_FilterInstagramSettingFollowDto as FilterInstagramSettingFollowDto, index$6_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index$6_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index$6_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index$6_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index$6_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index$6_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index$6_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index$6_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index$6_FilterLarkDto as FilterLarkDto, index$6_FilterManagerImageAIDto as FilterManagerImageAIDto, index$6_FilterManagerSheetDto as FilterManagerSheetDto, index$6_FilterManagerWorkDto as FilterManagerWorkDto, index$6_FilterPCDto as FilterPCDto, index$6_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FilterPerformanceBreakdownThreadsDashboardFollowerDto as FilterPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FilterProxyDto as FilterProxyDto, index$6_FilterRoleDto as FilterRoleDto, index$6_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index$6_FilterSheetWorkDto as FilterSheetWorkDto, index$6_FilterSheetsToolDto as FilterSheetsToolDto, index$6_FilterTaskAIContentDto as FilterTaskAIContentDto, index$6_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index$6_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index$6_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index$6_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index$6_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index$6_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index$6_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index$6_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index$6_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index$6_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index$6_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index$6_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index$6_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index$6_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index$6_FilterTeamDto as FilterTeamDto, index$6_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index$6_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index$6_FilterThreadsDashboardFollowerDto as FilterThreadsDashboardFollowerDto, index$6_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index$6_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index$6_FilterThreadsHistoryCreateNewDto as FilterThreadsHistoryCreateNewDto, index$6_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index$6_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index$6_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index$6_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index$6_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, index$6_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index$6_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index$6_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index$6_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index$6_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index$6_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index$6_FilterUserDto as FilterUserDto, index$6_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index$6_FindAccountAIContentDto as FindAccountAIContentDto, index$6_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index$6_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index$6_FindAccountAIImageDto as FindAccountAIImageDto, index$6_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index$6_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index$6_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index$6_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index$6_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index$6_FindAccountCanvaDto as FindAccountCanvaDto, index$6_FindAccountDriveDto as FindAccountDriveDto, index$6_FindAccountEmailDto as FindAccountEmailDto, index$6_FindAccountForCheckerInstagramDashboard as FindAccountForCheckerInstagramDashboard, index$6_FindAccountForCheckerThreadsDashboard as FindAccountForCheckerThreadsDashboard, index$6_FindAccountSocialGroupDto as FindAccountSocialGroupDto, index$6_FindAccountSocialGroupPopupSocialDto as FindAccountSocialGroupPopupSocialDto, index$6_FindAccountVPNDto as FindAccountVPNDto, index$6_FindAccountVPSDto as FindAccountVPSDto, index$6_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index$6_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, index$6_FindAutoFillDeviceDto as FindAutoFillDeviceDto, index$6_FindBlogCategoryDto as FindBlogCategoryDto, index$6_FindBlogDto as FindBlogDto, index$6_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, index$6_FindCheckerAccountThreadsDashboardFollowerDto as FindCheckerAccountThreadsDashboardFollowerDto, index$6_FindDepartmentDto as FindDepartmentDto, index$6_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index$6_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index$6_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index$6_FindDeviceDto as FindDeviceDto, index$6_FindDeviceLogDto as FindDeviceLogDto, index$6_FindForReviewDto as FindForReviewDto, index$6_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, index$6_FindGrowthThreadsDashboardFollowerDto as FindGrowthThreadsDashboardFollowerDto, index$6_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index$6_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index$6_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index$6_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index$6_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index$6_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index$6_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index$6_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, index$6_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, index$6_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index$6_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index$6_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index$6_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index$6_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index$6_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index$6_FindLarkDto as FindLarkDto, index$6_FindManagerImageAIDto as FindManagerImageAIDto, index$6_FindManagerSheetDto as FindManagerSheetDto, index$6_FindManagerWorkDto as FindManagerWorkDto, index$6_FindMemberForAddTeamDto as FindMemberForAddTeamDto, index$6_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index$6_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index$6_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index$6_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, index$6_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index$6_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index$6_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index$6_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index$6_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index$6_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index$6_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, index$6_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index$6_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index$6_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index$6_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index$6_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index$6_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, index$6_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, index$6_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, index$6_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, index$6_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, index$6_FindOverViewLarkDto as FindOverViewLarkDto, index$6_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index$6_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index$6_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index$6_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index$6_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index$6_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index$6_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index$6_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index$6_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index$6_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index$6_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index$6_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index$6_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index$6_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index$6_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index$6_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index$6_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index$6_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index$6_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index$6_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index$6_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, index$6_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index$6_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, index$6_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, index$6_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, index$6_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, index$6_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, index$6_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index$6_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index$6_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index$6_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, index$6_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index$6_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, index$6_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, index$6_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, index$6_FindOverviewDeviceLog as FindOverviewDeviceLog, index$6_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, index$6_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, index$6_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, index$6_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index$6_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, index$6_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, index$6_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index$6_FindOverviewProxyDto as FindOverviewProxyDto, index$6_FindOverviewRoleDto as FindOverviewRoleDto, index$6_FindOverviewTeamDto as FindOverviewTeamDto, index$6_FindOverviewThreadsDashboardFollowerDto as FindOverviewThreadsDashboardFollowerDto, index$6_FindOverviewThreadsHistoryCreateNewDto as FindOverviewThreadsHistoryCreateNewDto, index$6_FindOverviewUserDto as FindOverviewUserDto, index$6_FindPCDto as FindPCDto, index$6_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto as FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, index$6_FindPerformanceBreakdownThreadsDashboardFollowerDto as FindPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FindProxyDto as FindProxyDto, index$6_FindReplaceDeviceDto as FindReplaceDeviceDto, index$6_FindRoleDetailDto as FindRoleDetailDto, index$6_FindRoleDto as FindRoleDto, index$6_FindRoleOfMe as FindRoleOfMe, index$6_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index$6_FindSheetWorkDto as FindSheetWorkDto, index$6_FindSheetsToolDto as FindSheetsToolDto, index$6_FindTaskAIContentDto as FindTaskAIContentDto, index$6_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index$6_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index$6_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index$6_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index$6_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, index$6_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index$6_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index$6_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index$6_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index$6_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index$6_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index$6_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index$6_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index$6_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index$6_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index$6_FindTasksJobDto as FindTasksJobDto, index$6_FindTeamDto as FindTeamDto, index$6_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index$6_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index$6_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index$6_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index$6_FindThreadsHistoryCreateNewDto as FindThreadsHistoryCreateNewDto, index$6_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index$6_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index$6_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index$6_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index$6_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index$6_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index$6_FindUserDto as FindUserDto, index$6_IBaseELS as IBaseELS, index$6_IBaseRefFieldELS as IBaseRefFieldELS, index$6_IBaseSheetImportDto as IBaseSheetImportDto, index$6_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, index$6_IFilterAssignDto as IFilterAssignDto, index$6_IFilterBaseAccountSocialDto as IFilterBaseAccountSocialDto, index$6_IFilterBaseDto as IFilterBaseDto, index$6_IFindBaseDto as IFindBaseDto, index$6_ISettingAccountSocialDto as ISettingAccountSocialDto, index$6_IUserInfoAssignment as IUserInfoAssignment, index$6_ImportAccountVPSDto as ImportAccountVPSDto, index$6_ImportDto as ImportDto, index$6_ImportInstagramAccountRawDto as ImportInstagramAccountRawDto, index$6_ImportManagerWorkDto as ImportManagerWorkDto, index$6_ImportSheetWorkDto as ImportSheetWorkDto, index$6_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, index$6_OverviewSheetsToolDto as OverviewSheetsToolDto, index$6_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, index$6_ReplaceAccountVSPDto as ReplaceAccountVSPDto, index$6_ResultChangeInfoInstagramAccountRawDto as ResultChangeInfoInstagramAccountRawDto, index$6_ResultImportInstagramAccountRawDto as ResultImportInstagramAccountRawDto, index$6_StatisticsManagerWorkDto as StatisticsManagerWorkDto, index$6_StatisticsSheetWorkDto as StatisticsSheetWorkDto, index$6_UpdateAccountSocialGroupDto as UpdateAccountSocialGroupDto, index$6_UpdateAccountVPSDto as UpdateAccountVPSDto, index$6_UpdateBlogDto as UpdateBlogDto, index$6_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index$6_UpdateDepartmentDto as UpdateDepartmentDto, index$6_UpdateDeviceDto as UpdateDeviceDto, index$6_UpdateInstagramSettingInteractFollowDto as UpdateInstagramSettingInteractFollowDto, index$6_UpdateInstagramSettingInteractReplyCommentDto as UpdateInstagramSettingInteractReplyCommentDto, index$6_UpdateInstagramSettingInteractReplyMessageDto as UpdateInstagramSettingInteractReplyMessageDto, index$6_UpdateInstagramSettingInteractUnFollowDto as UpdateInstagramSettingInteractUnFollowDto, index$6_UpdateInstagramSettingPostDto as UpdateInstagramSettingPostDto, index$6_UpdateLarkDto as UpdateLarkDto, index$6_UpdateManagerWorkDto as UpdateManagerWorkDto, index$6_UpdatePCDto as UpdatePCDto, index$6_UpdateProxyDto as UpdateProxyDto, index$6_UpdateRoleDto as UpdateRoleDto, index$6_UpdateSheetWorkDto as UpdateSheetWorkDto, index$6_UpdateSheetsToolDto as UpdateSheetsToolDto, index$6_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index$6_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index$6_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index$6_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index$6_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index$6_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index$6_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index$6_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index$6_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index$6_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index$6_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index$6_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index$6_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index$6_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index$6_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index$6_UpdateTasksJobDto as UpdateTasksJobDto, index$6_UpdateTeamDto as UpdateTeamDto, index$6_UpdateUserDto as UpdateUserDto, index$6_ViewDetailDeviceDto as ViewDetailDeviceDto, index$6_ViewDetailSheetsToolDto as ViewDetailSheetsToolDto };
|
|
11397
11133
|
}
|
|
11398
11134
|
|
|
11399
11135
|
interface IInstagramSettingInteractBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -12552,8 +12288,6 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
|
12552
12288
|
timeFrom: string;
|
|
12553
12289
|
timeTo: string;
|
|
12554
12290
|
minuteExecute: number;
|
|
12555
|
-
service: string;
|
|
12556
|
-
action: string;
|
|
12557
12291
|
timeExecute: Date;
|
|
12558
12292
|
status: EStatusTaskToolSocials;
|
|
12559
12293
|
note: string;
|
|
@@ -12603,8 +12337,6 @@ interface ITaskInstagramBlockUserELS extends IBaseELS {
|
|
|
12603
12337
|
timeFrom: string;
|
|
12604
12338
|
timeTo: string;
|
|
12605
12339
|
minuteExecute: number;
|
|
12606
|
-
service: string;
|
|
12607
|
-
action: string;
|
|
12608
12340
|
timeExecute: Date;
|
|
12609
12341
|
status: EStatusTaskToolSocials;
|
|
12610
12342
|
note: string;
|
|
@@ -12623,8 +12355,6 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
|
12623
12355
|
timeFrom: string;
|
|
12624
12356
|
timeTo: string;
|
|
12625
12357
|
minuteExecute: number;
|
|
12626
|
-
service: string;
|
|
12627
|
-
action: string;
|
|
12628
12358
|
timeExecute: Date;
|
|
12629
12359
|
status: EStatusTaskToolSocials;
|
|
12630
12360
|
note: string;
|
|
@@ -12690,8 +12420,6 @@ interface ITaskInstagramChangeInfoELS extends IBaseELS {
|
|
|
12690
12420
|
timeFrom: string;
|
|
12691
12421
|
timeTo: string;
|
|
12692
12422
|
minuteExecute: number;
|
|
12693
|
-
service: string;
|
|
12694
|
-
action: string;
|
|
12695
12423
|
timeExecute: Date;
|
|
12696
12424
|
status: EStatusTaskToolSocials;
|
|
12697
12425
|
note: string;
|
|
@@ -12835,8 +12563,6 @@ interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
|
12835
12563
|
timeFrom: string;
|
|
12836
12564
|
timeTo: string;
|
|
12837
12565
|
minuteExecute: number;
|
|
12838
|
-
service: string;
|
|
12839
|
-
action: string;
|
|
12840
12566
|
timeExecute: Date;
|
|
12841
12567
|
status: EStatusTaskToolSocials;
|
|
12842
12568
|
note: string;
|
|
@@ -12884,215 +12610,12 @@ interface ITaskInstagramFollowELS extends IBaseELS {
|
|
|
12884
12610
|
timeFrom: string;
|
|
12885
12611
|
timeTo: string;
|
|
12886
12612
|
minuteExecute: number;
|
|
12887
|
-
service: string;
|
|
12888
|
-
action: string;
|
|
12889
12613
|
timeExecute: Date;
|
|
12890
12614
|
status: EStatusTaskToolSocials;
|
|
12891
12615
|
note: string;
|
|
12892
12616
|
listUsernameFollow: string[];
|
|
12893
12617
|
}
|
|
12894
12618
|
|
|
12895
|
-
interface ITaskInstagramInteractExplore extends IBaseModel, ITrackingModel<IUser> {
|
|
12896
|
-
account: string | IInstagramAccountRaw;
|
|
12897
|
-
minuteWaiting: number;
|
|
12898
|
-
timezone: ETimeZone;
|
|
12899
|
-
dayOfWeek: EDayOfWeek;
|
|
12900
|
-
timeFrom: string;
|
|
12901
|
-
timeTo: string;
|
|
12902
|
-
minuteExecute: number;
|
|
12903
|
-
service: string;
|
|
12904
|
-
action: string;
|
|
12905
|
-
timeExecute: Date;
|
|
12906
|
-
status: EStatusTaskToolSocials;
|
|
12907
|
-
note: string;
|
|
12908
|
-
numberView: number;
|
|
12909
|
-
isBasicView: boolean;
|
|
12910
|
-
isLike: boolean;
|
|
12911
|
-
numberLike: number;
|
|
12912
|
-
minuteRun: number;
|
|
12913
|
-
}
|
|
12914
|
-
interface ITaskInstagramInteractExploreELS extends IBaseELS {
|
|
12915
|
-
idea: IBaseRefFieldELS;
|
|
12916
|
-
niche: IBaseRefFieldELS;
|
|
12917
|
-
type: ETypeManagerWorkClassify;
|
|
12918
|
-
pc: IBaseRefFieldELS;
|
|
12919
|
-
device: IBaseRefFieldELS & {
|
|
12920
|
-
key: string;
|
|
12921
|
-
};
|
|
12922
|
-
accountGroup: IBaseRefFieldELS;
|
|
12923
|
-
account: IBaseRefFieldELS & {
|
|
12924
|
-
nameAppCloneSocial: string;
|
|
12925
|
-
accountDeviceTypeAppClone: string;
|
|
12926
|
-
accountDeviceNameAppClone: string;
|
|
12927
|
-
};
|
|
12928
|
-
accountVPN: Array<IBaseRefFieldELS & {
|
|
12929
|
-
email: string;
|
|
12930
|
-
username: string;
|
|
12931
|
-
code2FA: string;
|
|
12932
|
-
country: string;
|
|
12933
|
-
type: ETypeAccountVPN;
|
|
12934
|
-
status: EStatusAccountVPN;
|
|
12935
|
-
}>;
|
|
12936
|
-
accountProxy: Array<IBaseRefFieldELS & {
|
|
12937
|
-
ip: string;
|
|
12938
|
-
port: string;
|
|
12939
|
-
username: string;
|
|
12940
|
-
typeProxy: ETypeProxy;
|
|
12941
|
-
provider: string;
|
|
12942
|
-
city: string;
|
|
12943
|
-
country: string;
|
|
12944
|
-
status: EStatusProxyChecked;
|
|
12945
|
-
}>;
|
|
12946
|
-
minuteWaiting: number;
|
|
12947
|
-
timezone: ETimeZone;
|
|
12948
|
-
dayOfWeek: EDayOfWeek;
|
|
12949
|
-
timeFrom: string;
|
|
12950
|
-
timeTo: string;
|
|
12951
|
-
minuteExecute: number;
|
|
12952
|
-
service: string;
|
|
12953
|
-
action: string;
|
|
12954
|
-
timeExecute: Date;
|
|
12955
|
-
status: EStatusTaskToolSocials;
|
|
12956
|
-
note: string;
|
|
12957
|
-
numberView: number;
|
|
12958
|
-
isBasicView: boolean;
|
|
12959
|
-
isLike: boolean;
|
|
12960
|
-
numberLike: number;
|
|
12961
|
-
minuteRun: number;
|
|
12962
|
-
}
|
|
12963
|
-
|
|
12964
|
-
interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
|
12965
|
-
account: string | IInstagramAccountRaw;
|
|
12966
|
-
minuteWaiting: number;
|
|
12967
|
-
timezone: ETimeZone;
|
|
12968
|
-
dayOfWeek: EDayOfWeek;
|
|
12969
|
-
timeFrom: string;
|
|
12970
|
-
timeTo: string;
|
|
12971
|
-
minuteExecute: number;
|
|
12972
|
-
service: string;
|
|
12973
|
-
action: string;
|
|
12974
|
-
timeExecute: Date;
|
|
12975
|
-
status: EStatusTaskToolSocials;
|
|
12976
|
-
note: string;
|
|
12977
|
-
numberView: number;
|
|
12978
|
-
isLike: boolean;
|
|
12979
|
-
numberLike: number;
|
|
12980
|
-
minuteRun: number;
|
|
12981
|
-
}
|
|
12982
|
-
interface ITaskInstagramInteractReelELS extends IBaseELS {
|
|
12983
|
-
idea: IBaseRefFieldELS;
|
|
12984
|
-
niche: IBaseRefFieldELS;
|
|
12985
|
-
type: ETypeManagerWorkClassify;
|
|
12986
|
-
pc: IBaseRefFieldELS;
|
|
12987
|
-
device: IBaseRefFieldELS & {
|
|
12988
|
-
key: string;
|
|
12989
|
-
};
|
|
12990
|
-
accountGroup: IBaseRefFieldELS;
|
|
12991
|
-
account: IBaseRefFieldELS & {
|
|
12992
|
-
nameAppCloneSocial: string;
|
|
12993
|
-
accountDeviceTypeAppClone: string;
|
|
12994
|
-
accountDeviceNameAppClone: string;
|
|
12995
|
-
};
|
|
12996
|
-
accountVPN: Array<IBaseRefFieldELS & {
|
|
12997
|
-
email: string;
|
|
12998
|
-
username: string;
|
|
12999
|
-
code2FA: string;
|
|
13000
|
-
country: string;
|
|
13001
|
-
type: ETypeAccountVPN;
|
|
13002
|
-
status: EStatusAccountVPN;
|
|
13003
|
-
}>;
|
|
13004
|
-
accountProxy: Array<IBaseRefFieldELS & {
|
|
13005
|
-
ip: string;
|
|
13006
|
-
port: string;
|
|
13007
|
-
username: string;
|
|
13008
|
-
typeProxy: ETypeProxy;
|
|
13009
|
-
provider: string;
|
|
13010
|
-
city: string;
|
|
13011
|
-
country: string;
|
|
13012
|
-
status: EStatusProxyChecked;
|
|
13013
|
-
}>;
|
|
13014
|
-
minuteWaiting: number;
|
|
13015
|
-
timezone: ETimeZone;
|
|
13016
|
-
dayOfWeek: EDayOfWeek;
|
|
13017
|
-
timeFrom: string;
|
|
13018
|
-
timeTo: string;
|
|
13019
|
-
minuteExecute: number;
|
|
13020
|
-
service: string;
|
|
13021
|
-
action: string;
|
|
13022
|
-
timeExecute: Date;
|
|
13023
|
-
status: EStatusTaskToolSocials;
|
|
13024
|
-
note: string;
|
|
13025
|
-
numberView: number;
|
|
13026
|
-
isLike: boolean;
|
|
13027
|
-
numberLike: number;
|
|
13028
|
-
minuteRun: number;
|
|
13029
|
-
}
|
|
13030
|
-
|
|
13031
|
-
interface ITaskInstagramInteractStory extends IBaseModel, ITrackingModel<IUser> {
|
|
13032
|
-
account: string | IInstagramAccountRaw;
|
|
13033
|
-
minuteWaiting: number;
|
|
13034
|
-
timezone: ETimeZone;
|
|
13035
|
-
dayOfWeek: EDayOfWeek;
|
|
13036
|
-
timeFrom: string;
|
|
13037
|
-
timeTo: string;
|
|
13038
|
-
minuteExecute: number;
|
|
13039
|
-
service: string;
|
|
13040
|
-
action: string;
|
|
13041
|
-
timeExecute: Date;
|
|
13042
|
-
status: EStatusTaskToolSocials;
|
|
13043
|
-
note: string;
|
|
13044
|
-
numberView: number;
|
|
13045
|
-
isLike: boolean;
|
|
13046
|
-
numberLike: number;
|
|
13047
|
-
}
|
|
13048
|
-
interface ITaskInstagramInteractStoryELS extends IBaseELS {
|
|
13049
|
-
idea: IBaseRefFieldELS;
|
|
13050
|
-
niche: IBaseRefFieldELS;
|
|
13051
|
-
type: ETypeManagerWorkClassify;
|
|
13052
|
-
pc: IBaseRefFieldELS;
|
|
13053
|
-
device: IBaseRefFieldELS & {
|
|
13054
|
-
key: string;
|
|
13055
|
-
};
|
|
13056
|
-
accountGroup: IBaseRefFieldELS;
|
|
13057
|
-
account: IBaseRefFieldELS & {
|
|
13058
|
-
nameAppCloneSocial: string;
|
|
13059
|
-
accountDeviceTypeAppClone: string;
|
|
13060
|
-
accountDeviceNameAppClone: string;
|
|
13061
|
-
};
|
|
13062
|
-
accountVPN: Array<IBaseRefFieldELS & {
|
|
13063
|
-
email: string;
|
|
13064
|
-
username: string;
|
|
13065
|
-
code2FA: string;
|
|
13066
|
-
country: string;
|
|
13067
|
-
type: ETypeAccountVPN;
|
|
13068
|
-
status: EStatusAccountVPN;
|
|
13069
|
-
}>;
|
|
13070
|
-
accountProxy: Array<IBaseRefFieldELS & {
|
|
13071
|
-
ip: string;
|
|
13072
|
-
port: string;
|
|
13073
|
-
username: string;
|
|
13074
|
-
typeProxy: ETypeProxy;
|
|
13075
|
-
provider: string;
|
|
13076
|
-
city: string;
|
|
13077
|
-
country: string;
|
|
13078
|
-
status: EStatusProxyChecked;
|
|
13079
|
-
}>;
|
|
13080
|
-
minuteWaiting: number;
|
|
13081
|
-
timezone: ETimeZone;
|
|
13082
|
-
dayOfWeek: EDayOfWeek;
|
|
13083
|
-
timeFrom: string;
|
|
13084
|
-
timeTo: string;
|
|
13085
|
-
minuteExecute: number;
|
|
13086
|
-
service: string;
|
|
13087
|
-
action: string;
|
|
13088
|
-
timeExecute: Date;
|
|
13089
|
-
status: EStatusTaskToolSocials;
|
|
13090
|
-
note: string;
|
|
13091
|
-
numberView: number;
|
|
13092
|
-
isLike: boolean;
|
|
13093
|
-
numberLike: number;
|
|
13094
|
-
}
|
|
13095
|
-
|
|
13096
12619
|
interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
13097
12620
|
sheet: string | ISheetsTool;
|
|
13098
12621
|
account: string | IInstagramAccountRaw;
|
|
@@ -13101,8 +12624,6 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13101
12624
|
timeFrom: string;
|
|
13102
12625
|
timeTo: string;
|
|
13103
12626
|
minuteExecute: number;
|
|
13104
|
-
service: string;
|
|
13105
|
-
action: string;
|
|
13106
12627
|
timeExecute: Date;
|
|
13107
12628
|
status: EStatusTaskToolSocials;
|
|
13108
12629
|
note: string;
|
|
@@ -13191,8 +12712,6 @@ interface ITaskInstagramPostELS extends IBaseELS {
|
|
|
13191
12712
|
timeFrom: string;
|
|
13192
12713
|
timeTo: string;
|
|
13193
12714
|
minuteExecute: number;
|
|
13194
|
-
service: string;
|
|
13195
|
-
action: string;
|
|
13196
12715
|
timeExecute: Date;
|
|
13197
12716
|
status: EStatusTaskToolSocials;
|
|
13198
12717
|
note: string;
|
|
@@ -13249,8 +12768,6 @@ interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13249
12768
|
timeFrom: string;
|
|
13250
12769
|
timeTo: string;
|
|
13251
12770
|
minuteExecute: number;
|
|
13252
|
-
service: string;
|
|
13253
|
-
action: string;
|
|
13254
12771
|
timeExecute: Date;
|
|
13255
12772
|
status: EStatusTaskToolSocials;
|
|
13256
12773
|
note: string;
|
|
@@ -13303,8 +12820,6 @@ interface ITaskInstagramReplyCommentELS extends IBaseELS {
|
|
|
13303
12820
|
timeFrom: string;
|
|
13304
12821
|
timeTo: string;
|
|
13305
12822
|
minuteExecute: number;
|
|
13306
|
-
service: string;
|
|
13307
|
-
action: string;
|
|
13308
12823
|
timeExecute: Date;
|
|
13309
12824
|
status: EStatusTaskToolSocials;
|
|
13310
12825
|
note: string;
|
|
@@ -13324,8 +12839,6 @@ interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13324
12839
|
timeFrom: string;
|
|
13325
12840
|
timeTo: string;
|
|
13326
12841
|
minuteExecute: number;
|
|
13327
|
-
service: string;
|
|
13328
|
-
action: string;
|
|
13329
12842
|
timeExecute: Date;
|
|
13330
12843
|
status: EStatusTaskToolSocials;
|
|
13331
12844
|
note: string;
|
|
@@ -13378,8 +12891,6 @@ interface ITaskInstagramReplyMessageELS extends IBaseELS {
|
|
|
13378
12891
|
timeFrom: string;
|
|
13379
12892
|
timeTo: string;
|
|
13380
12893
|
minuteExecute: number;
|
|
13381
|
-
service: string;
|
|
13382
|
-
action: string;
|
|
13383
12894
|
timeExecute: Date;
|
|
13384
12895
|
status: EStatusTaskToolSocials;
|
|
13385
12896
|
note: string;
|
|
@@ -14198,8 +13709,6 @@ interface ITaskThreadsPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
14198
13709
|
timeFrom: string;
|
|
14199
13710
|
timeTo: string;
|
|
14200
13711
|
minuteExecute: number;
|
|
14201
|
-
service: string;
|
|
14202
|
-
action: string;
|
|
14203
13712
|
timeExecute: Date;
|
|
14204
13713
|
status: EStatusTaskToolSocials;
|
|
14205
13714
|
note: string;
|
|
@@ -14262,8 +13771,6 @@ interface ITaskThreadsPostELS extends IBaseELS {
|
|
|
14262
13771
|
timeFrom: string;
|
|
14263
13772
|
timeTo: string;
|
|
14264
13773
|
minuteExecute: number;
|
|
14265
|
-
service: string;
|
|
14266
|
-
action: string;
|
|
14267
13774
|
timeExecute: Date;
|
|
14268
13775
|
status: EStatusTaskToolSocials;
|
|
14269
13776
|
note: string;
|
|
@@ -14294,8 +13801,6 @@ interface ITaskThreadsFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
|
14294
13801
|
timeFrom: string;
|
|
14295
13802
|
timeTo: string;
|
|
14296
13803
|
minuteExecute: number;
|
|
14297
|
-
service: string;
|
|
14298
|
-
action: string;
|
|
14299
13804
|
timeExecute: Date;
|
|
14300
13805
|
status: EStatusTaskToolSocials;
|
|
14301
13806
|
note: string;
|
|
@@ -14343,8 +13848,6 @@ interface ITaskThreadsFollowELS extends IBaseELS {
|
|
|
14343
13848
|
timeFrom: string;
|
|
14344
13849
|
timeTo: string;
|
|
14345
13850
|
minuteExecute: number;
|
|
14346
|
-
service: string;
|
|
14347
|
-
action: string;
|
|
14348
13851
|
timeExecute: Date;
|
|
14349
13852
|
status: EStatusTaskToolSocials;
|
|
14350
13853
|
note: string;
|
|
@@ -14359,8 +13862,6 @@ interface ITaskThreadsReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
|
14359
13862
|
timeFrom: string;
|
|
14360
13863
|
timeTo: string;
|
|
14361
13864
|
minuteExecute: number;
|
|
14362
|
-
service: string;
|
|
14363
|
-
action: string;
|
|
14364
13865
|
timeExecute: Date;
|
|
14365
13866
|
status: EStatusTaskToolSocials;
|
|
14366
13867
|
note: string;
|
|
@@ -14413,8 +13914,6 @@ interface ITaskThreadsReplyCommentELS extends IBaseELS {
|
|
|
14413
13914
|
timeFrom: string;
|
|
14414
13915
|
timeTo: string;
|
|
14415
13916
|
minuteExecute: number;
|
|
14416
|
-
service: string;
|
|
14417
|
-
action: string;
|
|
14418
13917
|
timeExecute: Date;
|
|
14419
13918
|
status: EStatusTaskToolSocials;
|
|
14420
13919
|
note: string;
|
|
@@ -14434,8 +13933,6 @@ interface ITaskThreadsReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
14434
13933
|
timeFrom: string;
|
|
14435
13934
|
timeTo: string;
|
|
14436
13935
|
minuteExecute: number;
|
|
14437
|
-
service: string;
|
|
14438
|
-
action: string;
|
|
14439
13936
|
timeExecute: Date;
|
|
14440
13937
|
status: EStatusTaskToolSocials;
|
|
14441
13938
|
note: string;
|
|
@@ -14488,8 +13985,6 @@ interface ITaskThreadsReplyMessageELS extends IBaseELS {
|
|
|
14488
13985
|
timeFrom: string;
|
|
14489
13986
|
timeTo: string;
|
|
14490
13987
|
minuteExecute: number;
|
|
14491
|
-
service: string;
|
|
14492
|
-
action: string;
|
|
14493
13988
|
timeExecute: Date;
|
|
14494
13989
|
status: EStatusTaskToolSocials;
|
|
14495
13990
|
note: string;
|
|
@@ -14593,12 +14088,6 @@ type index$4_ITaskInstagramChangeInfo = ITaskInstagramChangeInfo;
|
|
|
14593
14088
|
type index$4_ITaskInstagramChangeInfoELS = ITaskInstagramChangeInfoELS;
|
|
14594
14089
|
type index$4_ITaskInstagramFollow = ITaskInstagramFollow;
|
|
14595
14090
|
type index$4_ITaskInstagramFollowELS = ITaskInstagramFollowELS;
|
|
14596
|
-
type index$4_ITaskInstagramInteractExplore = ITaskInstagramInteractExplore;
|
|
14597
|
-
type index$4_ITaskInstagramInteractExploreELS = ITaskInstagramInteractExploreELS;
|
|
14598
|
-
type index$4_ITaskInstagramInteractReel = ITaskInstagramInteractReel;
|
|
14599
|
-
type index$4_ITaskInstagramInteractReelELS = ITaskInstagramInteractReelELS;
|
|
14600
|
-
type index$4_ITaskInstagramInteractStory = ITaskInstagramInteractStory;
|
|
14601
|
-
type index$4_ITaskInstagramInteractStoryELS = ITaskInstagramInteractStoryELS;
|
|
14602
14091
|
type index$4_ITaskInstagramPost = ITaskInstagramPost;
|
|
14603
14092
|
type index$4_ITaskInstagramPostELS = ITaskInstagramPostELS;
|
|
14604
14093
|
type index$4_ITaskInstagramReplyComment = ITaskInstagramReplyComment;
|
|
@@ -14639,7 +14128,7 @@ type index$4_IThreadsSettingInteractReplyMessage = IThreadsSettingInteractReplyM
|
|
|
14639
14128
|
type index$4_IThreadsSettingInteractUnFollow = IThreadsSettingInteractUnFollow;
|
|
14640
14129
|
type index$4_IThreadsSettingPost = IThreadsSettingPost;
|
|
14641
14130
|
declare namespace index$4 {
|
|
14642
|
-
export type { index$4_IAccountSocialBase as IAccountSocialBase, index$4_IAccountSocialGroup as IAccountSocialGroup, index$4_IIncreaseValueTask as IIncreaseValueTask, index$4_IInstagramAccountRaw as IInstagramAccountRaw, index$4_IInstagramDashboardFollower as IInstagramDashboardFollower, index$4_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, index$4_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, index$4_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, index$4_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, index$4_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, index$4_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, index$4_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, index$4_IInstagramHistoryGroup as IInstagramHistoryGroup, index$4_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, index$4_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, index$4_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, index$4_IInstagramReportInteractExplore as IInstagramReportInteractExplore, index$4_IInstagramReportInteractExploreELS as IInstagramReportInteractExploreELS, index$4_IInstagramReportInteractFollow as IInstagramReportInteractFollow, index$4_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, index$4_IInstagramReportInteractReel as IInstagramReportInteractReel, index$4_IInstagramReportInteractReelELS as IInstagramReportInteractReelELS, index$4_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, index$4_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, index$4_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, index$4_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, index$4_IInstagramReportInteractStory as IInstagramReportInteractStory, index$4_IInstagramReportInteractStoryELS as IInstagramReportInteractStoryELS, index$4_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, index$4_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, index$4_IInstagramReportPostHighLight as IInstagramReportPostHighLight, index$4_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, index$4_IInstagramReportPostNew as IInstagramReportPostNew, index$4_IInstagramReportPostNewELS as IInstagramReportPostNewELS, index$4_IInstagramReportPostReel as IInstagramReportPostReel, index$4_IInstagramReportPostReelELS as IInstagramReportPostReelELS, index$4_IInstagramReportPostSquare as IInstagramReportPostSquare, index$4_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, index$4_IInstagramReportPostStory as IInstagramReportPostStory, index$4_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, index$4_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, index$4_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, index$4_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, index$4_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, index$4_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, index$4_IInstagramSettingPost as IInstagramSettingPost, index$4_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, index$4_ISettingRunTimeSocial as ISettingRunTimeSocial, index$4_ISheetImportExportSocial as ISheetImportExportSocial, index$4_ISocialTaskManager as ISocialTaskManager, index$4_ITaskInstagramBlockUser as ITaskInstagramBlockUser, index$4_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, index$4_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, index$4_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, index$4_ITaskInstagramFollow as ITaskInstagramFollow, index$4_ITaskInstagramFollowELS as ITaskInstagramFollowELS, index$
|
|
14131
|
+
export type { index$4_IAccountSocialBase as IAccountSocialBase, index$4_IAccountSocialGroup as IAccountSocialGroup, index$4_IIncreaseValueTask as IIncreaseValueTask, index$4_IInstagramAccountRaw as IInstagramAccountRaw, index$4_IInstagramDashboardFollower as IInstagramDashboardFollower, index$4_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, index$4_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, index$4_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, index$4_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, index$4_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, index$4_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, index$4_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, index$4_IInstagramHistoryGroup as IInstagramHistoryGroup, index$4_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, index$4_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, index$4_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, index$4_IInstagramReportInteractExplore as IInstagramReportInteractExplore, index$4_IInstagramReportInteractExploreELS as IInstagramReportInteractExploreELS, index$4_IInstagramReportInteractFollow as IInstagramReportInteractFollow, index$4_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, index$4_IInstagramReportInteractReel as IInstagramReportInteractReel, index$4_IInstagramReportInteractReelELS as IInstagramReportInteractReelELS, index$4_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, index$4_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, index$4_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, index$4_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, index$4_IInstagramReportInteractStory as IInstagramReportInteractStory, index$4_IInstagramReportInteractStoryELS as IInstagramReportInteractStoryELS, index$4_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, index$4_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, index$4_IInstagramReportPostHighLight as IInstagramReportPostHighLight, index$4_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, index$4_IInstagramReportPostNew as IInstagramReportPostNew, index$4_IInstagramReportPostNewELS as IInstagramReportPostNewELS, index$4_IInstagramReportPostReel as IInstagramReportPostReel, index$4_IInstagramReportPostReelELS as IInstagramReportPostReelELS, index$4_IInstagramReportPostSquare as IInstagramReportPostSquare, index$4_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, index$4_IInstagramReportPostStory as IInstagramReportPostStory, index$4_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, index$4_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, index$4_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, index$4_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, index$4_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, index$4_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, index$4_IInstagramSettingPost as IInstagramSettingPost, index$4_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, index$4_ISettingRunTimeSocial as ISettingRunTimeSocial, index$4_ISheetImportExportSocial as ISheetImportExportSocial, index$4_ISocialTaskManager as ISocialTaskManager, index$4_ITaskInstagramBlockUser as ITaskInstagramBlockUser, index$4_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, index$4_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, index$4_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, index$4_ITaskInstagramFollow as ITaskInstagramFollow, index$4_ITaskInstagramFollowELS as ITaskInstagramFollowELS, index$4_ITaskInstagramPost as ITaskInstagramPost, index$4_ITaskInstagramPostELS as ITaskInstagramPostELS, index$4_ITaskInstagramReplyComment as ITaskInstagramReplyComment, index$4_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, index$4_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, index$4_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, index$4_ITaskThreadsFollow as ITaskThreadsFollow, index$4_ITaskThreadsFollowELS as ITaskThreadsFollowELS, index$4_ITaskThreadsPost as ITaskThreadsPost, index$4_ITaskThreadsPostELS as ITaskThreadsPostELS, index$4_ITaskThreadsReplyComment as ITaskThreadsReplyComment, index$4_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, index$4_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, index$4_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, index$4_IThreadsAccountRaw as IThreadsAccountRaw, index$4_IThreadsDashboardFollower as IThreadsDashboardFollower, index$4_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, index$4_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, index$4_IThreadsHistoryChange as IThreadsHistoryChange, index$4_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, index$4_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, index$4_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, index$4_IThreadsHistoryGroup as IThreadsHistoryGroup, index$4_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, index$4_IThreadsReportInteractFollow as IThreadsReportInteractFollow, index$4_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, index$4_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, index$4_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, index$4_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, index$4_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, index$4_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, index$4_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, index$4_IThreadsReportPost as IThreadsReportPost, index$4_IThreadsReportPostELS as IThreadsReportPostELS, index$4_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, index$4_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, index$4_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, index$4_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, index$4_IThreadsSettingPost as IThreadsSettingPost };
|
|
14643
14132
|
}
|
|
14644
14133
|
|
|
14645
14134
|
interface IManagerImageAIUserAttached extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -14970,12 +14459,6 @@ type index$1_ITaskInstagramChangeInfo = ITaskInstagramChangeInfo;
|
|
|
14970
14459
|
type index$1_ITaskInstagramChangeInfoELS = ITaskInstagramChangeInfoELS;
|
|
14971
14460
|
type index$1_ITaskInstagramFollow = ITaskInstagramFollow;
|
|
14972
14461
|
type index$1_ITaskInstagramFollowELS = ITaskInstagramFollowELS;
|
|
14973
|
-
type index$1_ITaskInstagramInteractExplore = ITaskInstagramInteractExplore;
|
|
14974
|
-
type index$1_ITaskInstagramInteractExploreELS = ITaskInstagramInteractExploreELS;
|
|
14975
|
-
type index$1_ITaskInstagramInteractReel = ITaskInstagramInteractReel;
|
|
14976
|
-
type index$1_ITaskInstagramInteractReelELS = ITaskInstagramInteractReelELS;
|
|
14977
|
-
type index$1_ITaskInstagramInteractStory = ITaskInstagramInteractStory;
|
|
14978
|
-
type index$1_ITaskInstagramInteractStoryELS = ITaskInstagramInteractStoryELS;
|
|
14979
14462
|
type index$1_ITaskInstagramPost = ITaskInstagramPost;
|
|
14980
14463
|
type index$1_ITaskInstagramPostELS = ITaskInstagramPostELS;
|
|
14981
14464
|
type index$1_ITaskInstagramReplyComment = ITaskInstagramReplyComment;
|
|
@@ -15040,7 +14523,7 @@ type index$1_IVoiceLanguage = IVoiceLanguage;
|
|
|
15040
14523
|
type index$1_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
15041
14524
|
type index$1_IVoiceStores = IVoiceStores;
|
|
15042
14525
|
declare namespace index$1 {
|
|
15043
|
-
export { index$2 as Auth, index$9 as Common, index$8 as Forum, index$3 as History, type index$1_IAccountAIContent as IAccountAIContent, type index$1_IAccountAIContentChannel as IAccountAIContentChannel, type index$1_IAccountAIContentGroup as IAccountAIContentGroup, type index$1_IAccountAIContentInfo as IAccountAIContentInfo, type index$1_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$1_IAccountAIContentTag as IAccountAIContentTag, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountSocialBase as IAccountSocialBase, type index$1_IAccountSocialGroup as IAccountSocialGroup, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountVPSSocial as IAccountVPSSocial, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogCategory as IBlogCategory, type index$1_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$1_IBlogTeamPermission as IBlogTeamPermission, type index$1_IBlogUserPermission as IBlogUserPermission, type index$1_IDepartment as IDepartment, type index$1_IDepartmentMember as IDepartmentMember, type index$1_IDevice as IDevice, type index$1_IDeviceLog as IDeviceLog, type index$1_IDeviceLogELS as IDeviceLogELS, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IGPMProfile as IGPMProfile, type index$1_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$1_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$1_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$1_IHistoryTaskCanva as IHistoryTaskCanva, type index$1_IIncreaseValueTask as IIncreaseValueTask, type index$1_IInstagramAccountRaw as IInstagramAccountRaw, type index$1_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$1_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$1_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$1_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$1_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$1_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$1_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$1_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$1_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$1_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$1_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$1_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$1_IInstagramReportInteractExplore as IInstagramReportInteractExplore, type index$1_IInstagramReportInteractExploreELS as IInstagramReportInteractExploreELS, type index$1_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$1_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$1_IInstagramReportInteractReel as IInstagramReportInteractReel, type index$1_IInstagramReportInteractReelELS as IInstagramReportInteractReelELS, type index$1_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$1_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$1_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$1_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$1_IInstagramReportInteractStory as IInstagramReportInteractStory, type index$1_IInstagramReportInteractStoryELS as IInstagramReportInteractStoryELS, type index$1_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$1_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$1_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$1_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$1_IInstagramReportPostNew as IInstagramReportPostNew, type index$1_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$1_IInstagramReportPostReel as IInstagramReportPostReel, type index$1_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$1_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$1_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$1_IInstagramReportPostStory as IInstagramReportPostStory, type index$1_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$1_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_ILark as ILark, type index$1_ILarkTeam as ILarkTeam, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$1_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$1_ISheetImportExportSocial as ISheetImportExportSocial, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ISocialTaskManager as ISocialTaskManager, type index$1_ITag as ITag, type index$1_ITaskAIContent as ITaskAIContent, type index$1_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, type index$1_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, type index$1_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, type index$1_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, type index$1_ITaskAIItemAction as ITaskAIItemAction, type index$1_ITaskAIItemGroup as ITaskAIItemGroup, type index$1_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$1_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$1_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$1_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$1_ITaskInstagramFollow as ITaskInstagramFollow, type index$1_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$1_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, type index$1_ITaskInstagramInteractExploreELS as ITaskInstagramInteractExploreELS, type index$1_ITaskInstagramInteractReel as ITaskInstagramInteractReel, type index$1_ITaskInstagramInteractReelELS as ITaskInstagramInteractReelELS, type index$1_ITaskInstagramInteractStory as ITaskInstagramInteractStory, type index$1_ITaskInstagramInteractStoryELS as ITaskInstagramInteractStoryELS, type index$1_ITaskInstagramPost as ITaskInstagramPost, type index$1_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$1_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$1_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$1_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$1_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobPermission as ITaskJobPermission, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITaskThreadsFollow as ITaskThreadsFollow, type index$1_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$1_ITaskThreadsPost as ITaskThreadsPost, type index$1_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$1_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$1_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$1_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$1_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsAccountRaw as IThreadsAccountRaw, type index$1_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$1_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$1_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$1_IThreadsHistoryChange as IThreadsHistoryChange, type index$1_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$1_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$1_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$1_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$1_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$1_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$1_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$1_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$1_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$1_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$1_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$1_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$1_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$1_IThreadsReportPost as IThreadsReportPost, type index$1_IThreadsReportPostELS as IThreadsReportPostELS, type index$1_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$1_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$1_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$1_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingTimeScript as ITrackingTimeScript, type index$1_ITrackingUserAction as ITrackingUserAction, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$a as Permission, index$4 as Socials, index$5 as Tool, index$7 as Workspace };
|
|
14526
|
+
export { index$2 as Auth, index$9 as Common, index$8 as Forum, index$3 as History, type index$1_IAccountAIContent as IAccountAIContent, type index$1_IAccountAIContentChannel as IAccountAIContentChannel, type index$1_IAccountAIContentGroup as IAccountAIContentGroup, type index$1_IAccountAIContentInfo as IAccountAIContentInfo, type index$1_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$1_IAccountAIContentTag as IAccountAIContentTag, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountSocialBase as IAccountSocialBase, type index$1_IAccountSocialGroup as IAccountSocialGroup, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountVPSSocial as IAccountVPSSocial, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogCategory as IBlogCategory, type index$1_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$1_IBlogTeamPermission as IBlogTeamPermission, type index$1_IBlogUserPermission as IBlogUserPermission, type index$1_IDepartment as IDepartment, type index$1_IDepartmentMember as IDepartmentMember, type index$1_IDevice as IDevice, type index$1_IDeviceLog as IDeviceLog, type index$1_IDeviceLogELS as IDeviceLogELS, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IGPMProfile as IGPMProfile, type index$1_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$1_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$1_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$1_IHistoryTaskCanva as IHistoryTaskCanva, type index$1_IIncreaseValueTask as IIncreaseValueTask, type index$1_IInstagramAccountRaw as IInstagramAccountRaw, type index$1_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$1_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$1_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$1_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$1_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$1_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$1_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$1_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$1_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$1_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$1_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$1_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$1_IInstagramReportInteractExplore as IInstagramReportInteractExplore, type index$1_IInstagramReportInteractExploreELS as IInstagramReportInteractExploreELS, type index$1_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$1_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$1_IInstagramReportInteractReel as IInstagramReportInteractReel, type index$1_IInstagramReportInteractReelELS as IInstagramReportInteractReelELS, type index$1_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$1_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$1_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$1_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$1_IInstagramReportInteractStory as IInstagramReportInteractStory, type index$1_IInstagramReportInteractStoryELS as IInstagramReportInteractStoryELS, type index$1_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$1_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$1_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$1_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$1_IInstagramReportPostNew as IInstagramReportPostNew, type index$1_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$1_IInstagramReportPostReel as IInstagramReportPostReel, type index$1_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$1_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$1_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$1_IInstagramReportPostStory as IInstagramReportPostStory, type index$1_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$1_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_ILark as ILark, type index$1_ILarkTeam as ILarkTeam, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$1_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$1_ISheetImportExportSocial as ISheetImportExportSocial, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ISocialTaskManager as ISocialTaskManager, type index$1_ITag as ITag, type index$1_ITaskAIContent as ITaskAIContent, type index$1_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, type index$1_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, type index$1_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, type index$1_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, type index$1_ITaskAIItemAction as ITaskAIItemAction, type index$1_ITaskAIItemGroup as ITaskAIItemGroup, type index$1_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$1_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$1_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$1_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$1_ITaskInstagramFollow as ITaskInstagramFollow, type index$1_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$1_ITaskInstagramPost as ITaskInstagramPost, type index$1_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$1_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$1_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$1_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$1_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobPermission as ITaskJobPermission, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITaskThreadsFollow as ITaskThreadsFollow, type index$1_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$1_ITaskThreadsPost as ITaskThreadsPost, type index$1_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$1_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$1_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$1_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$1_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsAccountRaw as IThreadsAccountRaw, type index$1_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$1_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$1_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$1_IThreadsHistoryChange as IThreadsHistoryChange, type index$1_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$1_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$1_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$1_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$1_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$1_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$1_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$1_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$1_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$1_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$1_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$1_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$1_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$1_IThreadsReportPost as IThreadsReportPost, type index$1_IThreadsReportPostELS as IThreadsReportPostELS, type index$1_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$1_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$1_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$1_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingTimeScript as ITrackingTimeScript, type index$1_ITrackingUserAction as ITrackingUserAction, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$a as Permission, index$4 as Socials, index$5 as Tool, index$7 as Workspace };
|
|
15044
14527
|
}
|
|
15045
14528
|
|
|
15046
14529
|
interface IDataUser {
|
|
@@ -15099,4 +14582,4 @@ declare namespace index {
|
|
|
15099
14582
|
export type { index_IColsUnSelected as IColsUnSelected, index_IDataDiscussTaskJob as IDataDiscussTaskJob, index_IDataNotification as IDataNotification, index_IDataUser as IDataUser, index_IFilterStore as IFilterStore, index_IResponseLogin as IResponseLogin };
|
|
15100
14583
|
}
|
|
15101
14584
|
|
|
15102
|
-
export { index$i as AI, type ActionLoadInfoUrlSheetToolDto, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$2 as Auth, index$j as AutoConstants, index$6 as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, index$h as Base, type CheckSendMessageLark, index$9 as Common, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateInstagramSettingInteractFollowDto, type CreateInstagramSettingInteractReplyCommentDto, type CreateInstagramSettingInteractReplyMessageDto, type CreateInstagramSettingInteractUnFollowDto, type CreateInstagramSettingPostDto, type CreateLarkDto, type CreateManagerWorkDto, type CreatePCDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramInteractExploreDto, type CreateTaskInstagramInteractReelDto, type CreateTaskInstagramInteractStoryDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTasksJobDto, type CreateTeamDto, type CreateUserDto, type DataImportInstagramAccountRawDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIModelContent, EAIModelImage, EAIModelVoice, EAIVersionGPT, EAIVersionImage, EAIVersionPerplexity, EAIVersionVoice, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EFolderImageAI, EGender, EHaveData, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EObjectName, EPositionUser, EPostStyle, EPostType, EPriority, ESheetToolInstagram, ESheetToolStatusImport, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStartStop, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRaw, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDevice, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEmail, EStatusExecuteCommon, EStatusGenerate, EStatusImportAccountSocial, EStatusLark, EStatusMailWork, EStatusPC, EStatusPost, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskCanva, EStatusTaskImage, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTaskVoice, EStatusTeam, EStatusUser, EStatusVPS, EStatusVPSReplace, ETimeZone, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeGenerate, ETypeImportExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoInstagram, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, EYesNo, 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 FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportInteractUnFollowDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingFollowDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterPerformanceBreakdownThreadsDashboardFollowerDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageCanvaInstagramDto, type FilterTaskAIImageCanvaThreadsDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskAIImageVoiceCanvaThreadsDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramInteractExploreDto, type FilterTaskInstagramInteractReelDto, type FilterTaskInstagramInteractStoryDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateNewDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportInteractUnFollowDto, 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 FindAccountForCheckerInstagramDashboard, type FindAccountForCheckerThreadsDashboard, type FindAccountSocialGroupDto, type FindAccountSocialGroupPopupSocialDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindAccountVPSGroupPopupDto, type FindAutoFillDeviceDto, type FindBlogCategoryDto, type FindBlogDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewInstagramSettingInteractFollowDto, type FindOverViewInstagramSettingInteractReplyCommentDto, type FindOverViewInstagramSettingInteractReplyMessageDto, type FindOverViewInstagramSettingInteractUnFollowDto, type FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramInteractExploreDto, type FindOverViewTaskInstagramInteractReelDto, type FindOverViewTaskInstagramInteractStoryDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportInteractUnFollowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingInteractFollowDto, type FindOverViewThreadsSettingInteractReplyCommentDto, type FindOverViewThreadsSettingInteractReplyMessageDto, type FindOverViewThreadsSettingInteractUnFollowDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountVPNDto, type FindOverviewAccountVPSDto, type FindOverviewDeviceBasicDto, type FindOverviewDeviceDetailDto, type FindOverviewDeviceLog, type FindOverviewDeviceSocialMediaAccountDto, type FindOverviewDeviceSocialMediaActiveLockedDto, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryChangeInfoDto, type FindOverviewInstagramHistoryCreateNewDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProxyDto, type FindReplaceDeviceDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramInteractExploreDto, type FindTaskInstagramInteractReelDto, type FindTaskInstagramInteractStoryDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$8 as Forum, index$3 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentMemberAssigned, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageMemberAssigned, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceMemberAssigned, 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 IAccountVPSSocial, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IColsUnSelected, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceLog, type IDeviceLogELS, type IDevicePopupViewAccountSocial, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractBlockUserELS, type IInstagramReportInteractExplore, type IInstagramReportInteractExploreELS, type IInstagramReportInteractFollow, type IInstagramReportInteractFollowELS, type IInstagramReportInteractReel, type IInstagramReportInteractReelELS, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyCommentELS, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractReplyMessageELS, type IInstagramReportInteractStory, type IInstagramReportInteractStoryELS, type IInstagramReportInteractUnFollow, type IInstagramReportInteractUnFollowELS, type IInstagramReportPostHighLight, type IInstagramReportPostHighLightELS, type IInstagramReportPostNew, type IInstagramReportPostNewELS, type IInstagramReportPostReel, type IInstagramReportPostReelELS, type IInstagramReportPostSquare, type IInstagramReportPostSquareELS, type IInstagramReportPostStory, type IInstagramReportPostStoryELS, type IInstagramSettingInteractBlockUser, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, 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 IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISettingAccountSocialDto, type ISettingRunTimeInstagramPost, type ISettingRunTimeSocial, type ISheetImportExportSocial, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISocialTaskManager, type ITag, type ITaskAIContent, type ITaskAIImageCanvaInstagram, type ITaskAIImageCanvaThreads, type ITaskAIImageVoiceCanvaInstagram, type ITaskAIImageVoiceCanvaThreads, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramBlockUser, type ITaskInstagramBlockUserELS, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoELS, type ITaskInstagramFollow, type ITaskInstagramFollowELS, type ITaskInstagramInteractExplore, type ITaskInstagramInteractExploreELS, type ITaskInstagramInteractReel, type ITaskInstagramInteractReelELS, type ITaskInstagramInteractStory, type ITaskInstagramInteractStoryELS, type ITaskInstagramPost, type ITaskInstagramPostELS, type ITaskInstagramReplyComment, type ITaskInstagramReplyCommentELS, type ITaskInstagramReplyMessage, type ITaskInstagramReplyMessageELS, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskThreadsFollow, type ITaskThreadsFollowELS, type ITaskThreadsPost, type ITaskThreadsPostELS, type ITaskThreadsReplyComment, type ITaskThreadsReplyCommentELS, type ITaskThreadsReplyMessage, type ITaskThreadsReplyMessageELS, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsDashboardFollower, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportInteractFollow, type IThreadsReportInteractFollowELS, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyCommentELS, type IThreadsReportInteractReplyMessage, type IThreadsReportInteractReplyMessageELS, type IThreadsReportInteractUnFollow, type IThreadsReportInteractUnFollowELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserInfoAssignment, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportAccountVPSDto, type ImportDto, type ImportInstagramAccountRawDto, type ImportManagerWorkDto, type ImportSheetWorkDto, index$g as Lark, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$a as Permission, type ReplaceAccountVSPDto, type ResultChangeInfoInstagramAccountRawDto, type ResultImportInstagramAccountRawDto, index$f as SheetTool, index$4 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$5 as Tool, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateInstagramSettingInteractFollowDto, type UpdateInstagramSettingInteractReplyCommentDto, type UpdateInstagramSettingInteractReplyMessageDto, type UpdateInstagramSettingInteractUnFollowDto, type UpdateInstagramSettingPostDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageCanvaInstagramDto, type UpdateTaskAIImageCanvaThreadsDto, type UpdateTaskAIImageVoiceCanvaInstagramDto, type UpdateTaskAIImageVoiceCanvaThreadsDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramInteractExploreDto, type UpdateTaskInstagramInteractReelDto, type UpdateTaskInstagramInteractStoryDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateUserDto, type ViewDetailDeviceDto, type ViewDetailSheetsToolDto, index$7 as Workspace };
|
|
14585
|
+
export { index$i as AI, type ActionLoadInfoUrlSheetToolDto, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$2 as Auth, index$j as AutoConstants, index$6 as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, index$h as Base, type CheckSendMessageLark, index$9 as Common, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateInstagramSettingInteractFollowDto, type CreateInstagramSettingInteractReplyCommentDto, type CreateInstagramSettingInteractReplyMessageDto, type CreateInstagramSettingInteractUnFollowDto, type CreateInstagramSettingPostDto, type CreateLarkDto, type CreateManagerWorkDto, type CreatePCDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTasksJobDto, type CreateTeamDto, type CreateUserDto, type DataImportInstagramAccountRawDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIModelContent, EAIModelImage, EAIModelVoice, EAIVersionGPT, EAIVersionImage, EAIVersionPerplexity, EAIVersionVoice, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EFolderImageAI, EGender, EHaveData, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EObjectName, EPositionUser, EPostStyle, EPostType, EPriority, ESheetToolInstagram, ESheetToolStatusImport, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStartStop, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRaw, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDevice, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEmail, EStatusExecuteCommon, EStatusGenerate, EStatusImportAccountSocial, EStatusLark, EStatusMailWork, EStatusPC, EStatusPost, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskCanva, EStatusTaskImage, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTaskVoice, EStatusTeam, EStatusUser, EStatusVPS, EStatusVPSReplace, ETimeZone, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeGenerate, ETypeImportExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoInstagram, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, EYesNo, 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 FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportInteractUnFollowDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingFollowDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterPerformanceBreakdownThreadsDashboardFollowerDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageCanvaInstagramDto, type FilterTaskAIImageCanvaThreadsDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskAIImageVoiceCanvaThreadsDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateNewDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportInteractUnFollowDto, 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 FindAccountForCheckerInstagramDashboard, type FindAccountForCheckerThreadsDashboard, type FindAccountSocialGroupDto, type FindAccountSocialGroupPopupSocialDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindAccountVPSGroupPopupDto, type FindAutoFillDeviceDto, type FindBlogCategoryDto, type FindBlogDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewInstagramSettingInteractFollowDto, type FindOverViewInstagramSettingInteractReplyCommentDto, type FindOverViewInstagramSettingInteractReplyMessageDto, type FindOverViewInstagramSettingInteractUnFollowDto, type FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportInteractUnFollowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingInteractFollowDto, type FindOverViewThreadsSettingInteractReplyCommentDto, type FindOverViewThreadsSettingInteractReplyMessageDto, type FindOverViewThreadsSettingInteractUnFollowDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountVPNDto, type FindOverviewAccountVPSDto, type FindOverviewDeviceBasicDto, type FindOverviewDeviceDetailDto, type FindOverviewDeviceLog, type FindOverviewDeviceSocialMediaAccountDto, type FindOverviewDeviceSocialMediaActiveLockedDto, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryChangeInfoDto, type FindOverviewInstagramHistoryCreateNewDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProxyDto, type FindReplaceDeviceDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$8 as Forum, index$3 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentMemberAssigned, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageMemberAssigned, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceMemberAssigned, 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 IAccountVPSSocial, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IColsUnSelected, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceLog, type IDeviceLogELS, type IDevicePopupViewAccountSocial, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractBlockUserELS, type IInstagramReportInteractExplore, type IInstagramReportInteractExploreELS, type IInstagramReportInteractFollow, type IInstagramReportInteractFollowELS, type IInstagramReportInteractReel, type IInstagramReportInteractReelELS, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyCommentELS, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractReplyMessageELS, type IInstagramReportInteractStory, type IInstagramReportInteractStoryELS, type IInstagramReportInteractUnFollow, type IInstagramReportInteractUnFollowELS, type IInstagramReportPostHighLight, type IInstagramReportPostHighLightELS, type IInstagramReportPostNew, type IInstagramReportPostNewELS, type IInstagramReportPostReel, type IInstagramReportPostReelELS, type IInstagramReportPostSquare, type IInstagramReportPostSquareELS, type IInstagramReportPostStory, type IInstagramReportPostStoryELS, type IInstagramSettingInteractBlockUser, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, 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 IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISettingAccountSocialDto, type ISettingRunTimeInstagramPost, type ISettingRunTimeSocial, type ISheetImportExportSocial, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISocialTaskManager, type ITag, type ITaskAIContent, type ITaskAIImageCanvaInstagram, type ITaskAIImageCanvaThreads, type ITaskAIImageVoiceCanvaInstagram, type ITaskAIImageVoiceCanvaThreads, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramBlockUser, type ITaskInstagramBlockUserELS, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoELS, type ITaskInstagramFollow, type ITaskInstagramFollowELS, type ITaskInstagramPost, type ITaskInstagramPostELS, type ITaskInstagramReplyComment, type ITaskInstagramReplyCommentELS, type ITaskInstagramReplyMessage, type ITaskInstagramReplyMessageELS, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskThreadsFollow, type ITaskThreadsFollowELS, type ITaskThreadsPost, type ITaskThreadsPostELS, type ITaskThreadsReplyComment, type ITaskThreadsReplyCommentELS, type ITaskThreadsReplyMessage, type ITaskThreadsReplyMessageELS, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsDashboardFollower, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportInteractFollow, type IThreadsReportInteractFollowELS, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyCommentELS, type IThreadsReportInteractReplyMessage, type IThreadsReportInteractReplyMessageELS, type IThreadsReportInteractUnFollow, type IThreadsReportInteractUnFollowELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserInfoAssignment, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportAccountVPSDto, type ImportDto, type ImportInstagramAccountRawDto, type ImportManagerWorkDto, type ImportSheetWorkDto, index$g as Lark, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$a as Permission, type ReplaceAccountVSPDto, type ResultChangeInfoInstagramAccountRawDto, type ResultImportInstagramAccountRawDto, index$f as SheetTool, index$4 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$5 as Tool, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateInstagramSettingInteractFollowDto, type UpdateInstagramSettingInteractReplyCommentDto, type UpdateInstagramSettingInteractReplyMessageDto, type UpdateInstagramSettingInteractUnFollowDto, type UpdateInstagramSettingPostDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageCanvaInstagramDto, type UpdateTaskAIImageCanvaThreadsDto, type UpdateTaskAIImageVoiceCanvaInstagramDto, type UpdateTaskAIImageVoiceCanvaThreadsDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateUserDto, type ViewDetailDeviceDto, type ViewDetailSheetsToolDto, index$7 as Workspace };
|