automation-lib 6.6.511 → 6.6.512

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.
Files changed (3) hide show
  1. package/dist/index.d.mts +151 -150
  2. package/dist/index.d.ts +151 -150
  3. package/package.json +1 -1
package/dist/index.d.mts CHANGED
@@ -18359,6 +18359,156 @@ interface IManualContentSocialInstagramChildren extends IBaseModel, ITrackingMod
18359
18359
  timeStopStart: Date;
18360
18360
  }
18361
18361
 
18362
+ declare enum EDraftManualContentInstagramStatusSyncPost {
18363
+ DraftSync = "DraftSync",
18364
+ ErrorSync = "ErrorSync",
18365
+ DoneSync = "DoneSync"
18366
+ }
18367
+ declare enum EDraftManualContentInstagramTypePost {
18368
+ New = "New",
18369
+ Reel = "Reel",
18370
+ SquareProduct = "SquareProduct"
18371
+ }
18372
+
18373
+ interface EditStatusDraftManualContentInstagramChildrenItemPost {
18374
+ statusSync: EDraftManualContentInstagramStatusSyncPost;
18375
+ listItemIds: string;
18376
+ }
18377
+ interface UpsertDraftManualContentInstagramChildrenItemPostDto {
18378
+ caption: string;
18379
+ listFiles: any;
18380
+ }
18381
+
18382
+ interface UpsertDraftManualContentInstagramDto {
18383
+ folderName: string;
18384
+ listDraftManualContentChildren: Array<UpsertDraftManualContentInstagramChildrenItemPostDto>;
18385
+ }
18386
+ interface IViewAssignUserForDraftManualContentInstagramDto {
18387
+ id: string;
18388
+ department: string;
18389
+ leader: string;
18390
+ team: string;
18391
+ member: string;
18392
+ lastUpdated: Date;
18393
+ }
18394
+ interface BulkAssignUserDraftManualContentInstagramDto {
18395
+ userAssignIds: string[];
18396
+ draftManualContentIds: string[];
18397
+ }
18398
+ interface RemoveAssignUserDraftManualContentInstagramDto {
18399
+ userAssignId: string;
18400
+ }
18401
+ interface FindOverviewDraftManualContentInstagramDto {
18402
+ totalDepartments: number;
18403
+ totalLeaders: number;
18404
+ totalTeams: number;
18405
+ totalUsers: number;
18406
+ totalContentFolder: number;
18407
+ totalNewDaily: number;
18408
+ totalNewMonthly: number;
18409
+ statusSyncPosts: {
18410
+ [EDraftManualContentInstagramStatusSyncPost.DraftSync]: number;
18411
+ [EDraftManualContentInstagramStatusSyncPost.DoneSync]: number;
18412
+ [EDraftManualContentInstagramStatusSyncPost.ErrorSync]: number;
18413
+ total: number;
18414
+ };
18415
+ }
18416
+ interface FindDraftManualContentInstagramDto extends IFindBaseDto {
18417
+ id: string;
18418
+ folderName: string;
18419
+ listDraftManualContentChildren: Array<{
18420
+ id: string;
18421
+ type: EDraftManualContentInstagramTypePost;
18422
+ startStop: EStartStop;
18423
+ timeStopStart: Date;
18424
+ postInfo: {
18425
+ childrenId: string;
18426
+ listUrls: string[];
18427
+ };
18428
+ totalPosts: number;
18429
+ totalPostsDoneSync: number;
18430
+ totalPostsDraftSync: number;
18431
+ totalPostsErrorSync: number;
18432
+ }>;
18433
+ }
18434
+ interface FilterDraftManualContentInstagramDto extends IFilterBaseDto {
18435
+ folderName: string[];
18436
+ }
18437
+ declare enum EFilterOptionDraftManualContentInstagram {
18438
+ FolderName = "folderName",
18439
+ DepartmentCreator = "departmentCreator",
18440
+ TeamCreator = "teamCreator",
18441
+ LeaderCreator = "leaderCreator",
18442
+ CreatedBy = "createdBy",
18443
+ UpdatedBy = "updatedBy",
18444
+ DepartmentAssign = "departmentAssign",
18445
+ TeamAssign = "teamAssign",
18446
+ LeaderAssign = "leaderAssign",
18447
+ UserAssign = "userAssign",
18448
+ GroupSocial = "groupSocial"
18449
+ }
18450
+
18451
+ interface AddDraftManualContentInstagramChildrenDto {
18452
+ caption: string;
18453
+ listFiles: any;
18454
+ }
18455
+ interface AddBulkDraftManualContentInstagramChildrenDto {
18456
+ numberPost: number;
18457
+ }
18458
+ interface GetAccountDriverUploadFileDraftManualContentInstagramChildrenDto {
18459
+ typePost: EDraftManualContentInstagramTypePost;
18460
+ }
18461
+ interface ResultAccountDriverUploadFileDraftManualContentInstagramChildrenDto {
18462
+ accountDriverId: string;
18463
+ folderPath: string;
18464
+ }
18465
+ interface UpsertDraftManualContentInstagramChildrenDto {
18466
+ type: EDraftManualContentInstagramTypePost;
18467
+ }
18468
+ interface ListDraftManualContentInstagramChildrenDto extends IFindBaseDto {
18469
+ type: EDraftManualContentInstagramTypePost;
18470
+ }
18471
+ interface ListDraftManualContentChildrenDto extends IFindBaseDto {
18472
+ id: string;
18473
+ caption: string;
18474
+ listFiles: Array<{
18475
+ id: string;
18476
+ url: string;
18477
+ type: "Video" | "Image";
18478
+ size: number;
18479
+ originalName: string;
18480
+ }>;
18481
+ type: EDraftManualContentInstagramTypePost;
18482
+ draftManualContentId: string;
18483
+ }
18484
+
18485
+ interface IDraftManualContentInstagram extends IBaseModel, ITrackingModel {
18486
+ folderName: string;
18487
+ }
18488
+
18489
+ interface IDraftManualContentInstagramChildren extends IBaseModel, ITrackingModel {
18490
+ typePost: EDraftManualContentInstagramTypePost;
18491
+ draftManualContentId: string | IDraftManualContentInstagram;
18492
+ }
18493
+
18494
+ interface IDraftManualContentInstagramChildrenItemPost extends IBaseModel, ITrackingModel {
18495
+ caption: string;
18496
+ listFiles: Array<{
18497
+ id: string;
18498
+ url: string;
18499
+ type: "Video" | "Image";
18500
+ size: number;
18501
+ originalName: string;
18502
+ }>;
18503
+ draftManualContentChildrenId: string | IDraftManualContentInstagramChildren;
18504
+ statusSync: EDraftManualContentInstagramStatusSyncPost;
18505
+ }
18506
+
18507
+ interface IDraftManualContentPermissionInstagram extends IBaseModel {
18508
+ draftManualContent: string | IDraftManualContentInstagram;
18509
+ user: string | IUser;
18510
+ }
18511
+
18362
18512
  interface IManualContentSocialInstagramChildrenItemPost extends IBaseModel, ITrackingModel {
18363
18513
  caption: string;
18364
18514
  listFiles: Array<{
@@ -18369,6 +18519,7 @@ interface IManualContentSocialInstagramChildrenItemPost extends IBaseModel, ITra
18369
18519
  originalName: string;
18370
18520
  }>;
18371
18521
  manualContentSocialChildrenId: string;
18522
+ syncDraftContentSocialChildrenItemPostId: string | IDraftManualContentInstagramChildrenItemPost;
18372
18523
  status: EManualContentSocialInstagramStatusPost;
18373
18524
  }
18374
18525
 
@@ -20737,156 +20888,6 @@ interface FindTaskWorkflowGroupDto extends IFindBaseDto {
20737
20888
  typeSocial: ETypeSocial;
20738
20889
  }
20739
20890
 
20740
- declare enum EDraftManualContentInstagramStatusSyncPost {
20741
- DraftSync = "DraftSync",
20742
- ErrorSync = "ErrorSync",
20743
- DoneSync = "DoneSync"
20744
- }
20745
- declare enum EDraftManualContentInstagramTypePost {
20746
- New = "New",
20747
- Reel = "Reel",
20748
- SquareProduct = "SquareProduct"
20749
- }
20750
-
20751
- interface EditStatusDraftManualContentInstagramChildrenItemPost {
20752
- statusSync: EDraftManualContentInstagramStatusSyncPost;
20753
- listItemIds: string;
20754
- }
20755
- interface UpsertDraftManualContentInstagramChildrenItemPostDto {
20756
- caption: string;
20757
- listFiles: any;
20758
- }
20759
-
20760
- interface UpsertDraftManualContentInstagramDto {
20761
- folderName: string;
20762
- listDraftManualContentChildren: Array<UpsertDraftManualContentInstagramChildrenItemPostDto>;
20763
- }
20764
- interface IViewAssignUserForDraftManualContentInstagramDto {
20765
- id: string;
20766
- department: string;
20767
- leader: string;
20768
- team: string;
20769
- member: string;
20770
- lastUpdated: Date;
20771
- }
20772
- interface BulkAssignUserDraftManualContentInstagramDto {
20773
- userAssignIds: string[];
20774
- draftManualContentIds: string[];
20775
- }
20776
- interface RemoveAssignUserDraftManualContentInstagramDto {
20777
- userAssignId: string;
20778
- }
20779
- interface FindOverviewDraftManualContentInstagramDto {
20780
- totalDepartments: number;
20781
- totalLeaders: number;
20782
- totalTeams: number;
20783
- totalUsers: number;
20784
- totalContentFolder: number;
20785
- totalNewDaily: number;
20786
- totalNewMonthly: number;
20787
- statusSyncPosts: {
20788
- [EDraftManualContentInstagramStatusSyncPost.DraftSync]: number;
20789
- [EDraftManualContentInstagramStatusSyncPost.DoneSync]: number;
20790
- [EDraftManualContentInstagramStatusSyncPost.ErrorSync]: number;
20791
- total: number;
20792
- };
20793
- }
20794
- interface FindDraftManualContentInstagramDto extends IFindBaseDto {
20795
- id: string;
20796
- folderName: string;
20797
- listDraftManualContentChildren: Array<{
20798
- id: string;
20799
- type: EDraftManualContentInstagramTypePost;
20800
- startStop: EStartStop;
20801
- timeStopStart: Date;
20802
- postInfo: {
20803
- childrenId: string;
20804
- listUrls: string[];
20805
- };
20806
- totalPosts: number;
20807
- totalPostsDoneSync: number;
20808
- totalPostsDraftSync: number;
20809
- totalPostsErrorSync: number;
20810
- }>;
20811
- }
20812
- interface FilterDraftManualContentInstagramDto extends IFilterBaseDto {
20813
- folderName: string[];
20814
- }
20815
- declare enum EFilterOptionDraftManualContentInstagram {
20816
- FolderName = "folderName",
20817
- DepartmentCreator = "departmentCreator",
20818
- TeamCreator = "teamCreator",
20819
- LeaderCreator = "leaderCreator",
20820
- CreatedBy = "createdBy",
20821
- UpdatedBy = "updatedBy",
20822
- DepartmentAssign = "departmentAssign",
20823
- TeamAssign = "teamAssign",
20824
- LeaderAssign = "leaderAssign",
20825
- UserAssign = "userAssign",
20826
- GroupSocial = "groupSocial"
20827
- }
20828
-
20829
- interface AddDraftManualContentInstagramChildrenDto {
20830
- caption: string;
20831
- listFiles: any;
20832
- }
20833
- interface AddBulkDraftManualContentInstagramChildrenDto {
20834
- numberPost: number;
20835
- }
20836
- interface GetAccountDriverUploadFileDraftManualContentInstagramChildrenDto {
20837
- typePost: EDraftManualContentInstagramTypePost;
20838
- }
20839
- interface ResultAccountDriverUploadFileDraftManualContentInstagramChildrenDto {
20840
- accountDriverId: string;
20841
- folderPath: string;
20842
- }
20843
- interface UpsertDraftManualContentInstagramChildrenDto {
20844
- type: EDraftManualContentInstagramTypePost;
20845
- }
20846
- interface ListDraftManualContentInstagramChildrenDto extends IFindBaseDto {
20847
- type: EDraftManualContentInstagramTypePost;
20848
- }
20849
- interface ListDraftManualContentChildrenDto extends IFindBaseDto {
20850
- id: string;
20851
- caption: string;
20852
- listFiles: Array<{
20853
- id: string;
20854
- url: string;
20855
- type: "Video" | "Image";
20856
- size: number;
20857
- originalName: string;
20858
- }>;
20859
- type: EDraftManualContentInstagramTypePost;
20860
- draftManualContentId: string;
20861
- }
20862
-
20863
- interface IDraftManualContentInstagram extends IBaseModel, ITrackingModel {
20864
- folderName: string;
20865
- }
20866
-
20867
- interface IDraftManualContentInstagramChildren extends IBaseModel, ITrackingModel {
20868
- typePost: EDraftManualContentInstagramTypePost;
20869
- draftManualContentId: string | IDraftManualContentInstagram;
20870
- }
20871
-
20872
- interface IDraftManualContentInstagramChildrenItemPost extends IBaseModel, ITrackingModel {
20873
- caption: string;
20874
- listFiles: Array<{
20875
- id: string;
20876
- url: string;
20877
- type: "Video" | "Image";
20878
- size: number;
20879
- originalName: string;
20880
- }>;
20881
- draftManualContentChildrenId: string | IDraftManualContentInstagramChildren;
20882
- statusSync: EDraftManualContentInstagramStatusSyncPost;
20883
- }
20884
-
20885
- interface IDraftManualContentPermissionInstagram extends IBaseModel {
20886
- draftManualContent: string | IDraftManualContentInstagram;
20887
- user: string | IUser;
20888
- }
20889
-
20890
20891
  interface IVoiceLanguage extends IBaseModel, ITrackingModel {
20891
20892
  vl_name: string;
20892
20893
  vl_key: ETypeVoiceLanguage;
package/dist/index.d.ts CHANGED
@@ -18359,6 +18359,156 @@ interface IManualContentSocialInstagramChildren extends IBaseModel, ITrackingMod
18359
18359
  timeStopStart: Date;
18360
18360
  }
18361
18361
 
18362
+ declare enum EDraftManualContentInstagramStatusSyncPost {
18363
+ DraftSync = "DraftSync",
18364
+ ErrorSync = "ErrorSync",
18365
+ DoneSync = "DoneSync"
18366
+ }
18367
+ declare enum EDraftManualContentInstagramTypePost {
18368
+ New = "New",
18369
+ Reel = "Reel",
18370
+ SquareProduct = "SquareProduct"
18371
+ }
18372
+
18373
+ interface EditStatusDraftManualContentInstagramChildrenItemPost {
18374
+ statusSync: EDraftManualContentInstagramStatusSyncPost;
18375
+ listItemIds: string;
18376
+ }
18377
+ interface UpsertDraftManualContentInstagramChildrenItemPostDto {
18378
+ caption: string;
18379
+ listFiles: any;
18380
+ }
18381
+
18382
+ interface UpsertDraftManualContentInstagramDto {
18383
+ folderName: string;
18384
+ listDraftManualContentChildren: Array<UpsertDraftManualContentInstagramChildrenItemPostDto>;
18385
+ }
18386
+ interface IViewAssignUserForDraftManualContentInstagramDto {
18387
+ id: string;
18388
+ department: string;
18389
+ leader: string;
18390
+ team: string;
18391
+ member: string;
18392
+ lastUpdated: Date;
18393
+ }
18394
+ interface BulkAssignUserDraftManualContentInstagramDto {
18395
+ userAssignIds: string[];
18396
+ draftManualContentIds: string[];
18397
+ }
18398
+ interface RemoveAssignUserDraftManualContentInstagramDto {
18399
+ userAssignId: string;
18400
+ }
18401
+ interface FindOverviewDraftManualContentInstagramDto {
18402
+ totalDepartments: number;
18403
+ totalLeaders: number;
18404
+ totalTeams: number;
18405
+ totalUsers: number;
18406
+ totalContentFolder: number;
18407
+ totalNewDaily: number;
18408
+ totalNewMonthly: number;
18409
+ statusSyncPosts: {
18410
+ [EDraftManualContentInstagramStatusSyncPost.DraftSync]: number;
18411
+ [EDraftManualContentInstagramStatusSyncPost.DoneSync]: number;
18412
+ [EDraftManualContentInstagramStatusSyncPost.ErrorSync]: number;
18413
+ total: number;
18414
+ };
18415
+ }
18416
+ interface FindDraftManualContentInstagramDto extends IFindBaseDto {
18417
+ id: string;
18418
+ folderName: string;
18419
+ listDraftManualContentChildren: Array<{
18420
+ id: string;
18421
+ type: EDraftManualContentInstagramTypePost;
18422
+ startStop: EStartStop;
18423
+ timeStopStart: Date;
18424
+ postInfo: {
18425
+ childrenId: string;
18426
+ listUrls: string[];
18427
+ };
18428
+ totalPosts: number;
18429
+ totalPostsDoneSync: number;
18430
+ totalPostsDraftSync: number;
18431
+ totalPostsErrorSync: number;
18432
+ }>;
18433
+ }
18434
+ interface FilterDraftManualContentInstagramDto extends IFilterBaseDto {
18435
+ folderName: string[];
18436
+ }
18437
+ declare enum EFilterOptionDraftManualContentInstagram {
18438
+ FolderName = "folderName",
18439
+ DepartmentCreator = "departmentCreator",
18440
+ TeamCreator = "teamCreator",
18441
+ LeaderCreator = "leaderCreator",
18442
+ CreatedBy = "createdBy",
18443
+ UpdatedBy = "updatedBy",
18444
+ DepartmentAssign = "departmentAssign",
18445
+ TeamAssign = "teamAssign",
18446
+ LeaderAssign = "leaderAssign",
18447
+ UserAssign = "userAssign",
18448
+ GroupSocial = "groupSocial"
18449
+ }
18450
+
18451
+ interface AddDraftManualContentInstagramChildrenDto {
18452
+ caption: string;
18453
+ listFiles: any;
18454
+ }
18455
+ interface AddBulkDraftManualContentInstagramChildrenDto {
18456
+ numberPost: number;
18457
+ }
18458
+ interface GetAccountDriverUploadFileDraftManualContentInstagramChildrenDto {
18459
+ typePost: EDraftManualContentInstagramTypePost;
18460
+ }
18461
+ interface ResultAccountDriverUploadFileDraftManualContentInstagramChildrenDto {
18462
+ accountDriverId: string;
18463
+ folderPath: string;
18464
+ }
18465
+ interface UpsertDraftManualContentInstagramChildrenDto {
18466
+ type: EDraftManualContentInstagramTypePost;
18467
+ }
18468
+ interface ListDraftManualContentInstagramChildrenDto extends IFindBaseDto {
18469
+ type: EDraftManualContentInstagramTypePost;
18470
+ }
18471
+ interface ListDraftManualContentChildrenDto extends IFindBaseDto {
18472
+ id: string;
18473
+ caption: string;
18474
+ listFiles: Array<{
18475
+ id: string;
18476
+ url: string;
18477
+ type: "Video" | "Image";
18478
+ size: number;
18479
+ originalName: string;
18480
+ }>;
18481
+ type: EDraftManualContentInstagramTypePost;
18482
+ draftManualContentId: string;
18483
+ }
18484
+
18485
+ interface IDraftManualContentInstagram extends IBaseModel, ITrackingModel {
18486
+ folderName: string;
18487
+ }
18488
+
18489
+ interface IDraftManualContentInstagramChildren extends IBaseModel, ITrackingModel {
18490
+ typePost: EDraftManualContentInstagramTypePost;
18491
+ draftManualContentId: string | IDraftManualContentInstagram;
18492
+ }
18493
+
18494
+ interface IDraftManualContentInstagramChildrenItemPost extends IBaseModel, ITrackingModel {
18495
+ caption: string;
18496
+ listFiles: Array<{
18497
+ id: string;
18498
+ url: string;
18499
+ type: "Video" | "Image";
18500
+ size: number;
18501
+ originalName: string;
18502
+ }>;
18503
+ draftManualContentChildrenId: string | IDraftManualContentInstagramChildren;
18504
+ statusSync: EDraftManualContentInstagramStatusSyncPost;
18505
+ }
18506
+
18507
+ interface IDraftManualContentPermissionInstagram extends IBaseModel {
18508
+ draftManualContent: string | IDraftManualContentInstagram;
18509
+ user: string | IUser;
18510
+ }
18511
+
18362
18512
  interface IManualContentSocialInstagramChildrenItemPost extends IBaseModel, ITrackingModel {
18363
18513
  caption: string;
18364
18514
  listFiles: Array<{
@@ -18369,6 +18519,7 @@ interface IManualContentSocialInstagramChildrenItemPost extends IBaseModel, ITra
18369
18519
  originalName: string;
18370
18520
  }>;
18371
18521
  manualContentSocialChildrenId: string;
18522
+ syncDraftContentSocialChildrenItemPostId: string | IDraftManualContentInstagramChildrenItemPost;
18372
18523
  status: EManualContentSocialInstagramStatusPost;
18373
18524
  }
18374
18525
 
@@ -20737,156 +20888,6 @@ interface FindTaskWorkflowGroupDto extends IFindBaseDto {
20737
20888
  typeSocial: ETypeSocial;
20738
20889
  }
20739
20890
 
20740
- declare enum EDraftManualContentInstagramStatusSyncPost {
20741
- DraftSync = "DraftSync",
20742
- ErrorSync = "ErrorSync",
20743
- DoneSync = "DoneSync"
20744
- }
20745
- declare enum EDraftManualContentInstagramTypePost {
20746
- New = "New",
20747
- Reel = "Reel",
20748
- SquareProduct = "SquareProduct"
20749
- }
20750
-
20751
- interface EditStatusDraftManualContentInstagramChildrenItemPost {
20752
- statusSync: EDraftManualContentInstagramStatusSyncPost;
20753
- listItemIds: string;
20754
- }
20755
- interface UpsertDraftManualContentInstagramChildrenItemPostDto {
20756
- caption: string;
20757
- listFiles: any;
20758
- }
20759
-
20760
- interface UpsertDraftManualContentInstagramDto {
20761
- folderName: string;
20762
- listDraftManualContentChildren: Array<UpsertDraftManualContentInstagramChildrenItemPostDto>;
20763
- }
20764
- interface IViewAssignUserForDraftManualContentInstagramDto {
20765
- id: string;
20766
- department: string;
20767
- leader: string;
20768
- team: string;
20769
- member: string;
20770
- lastUpdated: Date;
20771
- }
20772
- interface BulkAssignUserDraftManualContentInstagramDto {
20773
- userAssignIds: string[];
20774
- draftManualContentIds: string[];
20775
- }
20776
- interface RemoveAssignUserDraftManualContentInstagramDto {
20777
- userAssignId: string;
20778
- }
20779
- interface FindOverviewDraftManualContentInstagramDto {
20780
- totalDepartments: number;
20781
- totalLeaders: number;
20782
- totalTeams: number;
20783
- totalUsers: number;
20784
- totalContentFolder: number;
20785
- totalNewDaily: number;
20786
- totalNewMonthly: number;
20787
- statusSyncPosts: {
20788
- [EDraftManualContentInstagramStatusSyncPost.DraftSync]: number;
20789
- [EDraftManualContentInstagramStatusSyncPost.DoneSync]: number;
20790
- [EDraftManualContentInstagramStatusSyncPost.ErrorSync]: number;
20791
- total: number;
20792
- };
20793
- }
20794
- interface FindDraftManualContentInstagramDto extends IFindBaseDto {
20795
- id: string;
20796
- folderName: string;
20797
- listDraftManualContentChildren: Array<{
20798
- id: string;
20799
- type: EDraftManualContentInstagramTypePost;
20800
- startStop: EStartStop;
20801
- timeStopStart: Date;
20802
- postInfo: {
20803
- childrenId: string;
20804
- listUrls: string[];
20805
- };
20806
- totalPosts: number;
20807
- totalPostsDoneSync: number;
20808
- totalPostsDraftSync: number;
20809
- totalPostsErrorSync: number;
20810
- }>;
20811
- }
20812
- interface FilterDraftManualContentInstagramDto extends IFilterBaseDto {
20813
- folderName: string[];
20814
- }
20815
- declare enum EFilterOptionDraftManualContentInstagram {
20816
- FolderName = "folderName",
20817
- DepartmentCreator = "departmentCreator",
20818
- TeamCreator = "teamCreator",
20819
- LeaderCreator = "leaderCreator",
20820
- CreatedBy = "createdBy",
20821
- UpdatedBy = "updatedBy",
20822
- DepartmentAssign = "departmentAssign",
20823
- TeamAssign = "teamAssign",
20824
- LeaderAssign = "leaderAssign",
20825
- UserAssign = "userAssign",
20826
- GroupSocial = "groupSocial"
20827
- }
20828
-
20829
- interface AddDraftManualContentInstagramChildrenDto {
20830
- caption: string;
20831
- listFiles: any;
20832
- }
20833
- interface AddBulkDraftManualContentInstagramChildrenDto {
20834
- numberPost: number;
20835
- }
20836
- interface GetAccountDriverUploadFileDraftManualContentInstagramChildrenDto {
20837
- typePost: EDraftManualContentInstagramTypePost;
20838
- }
20839
- interface ResultAccountDriverUploadFileDraftManualContentInstagramChildrenDto {
20840
- accountDriverId: string;
20841
- folderPath: string;
20842
- }
20843
- interface UpsertDraftManualContentInstagramChildrenDto {
20844
- type: EDraftManualContentInstagramTypePost;
20845
- }
20846
- interface ListDraftManualContentInstagramChildrenDto extends IFindBaseDto {
20847
- type: EDraftManualContentInstagramTypePost;
20848
- }
20849
- interface ListDraftManualContentChildrenDto extends IFindBaseDto {
20850
- id: string;
20851
- caption: string;
20852
- listFiles: Array<{
20853
- id: string;
20854
- url: string;
20855
- type: "Video" | "Image";
20856
- size: number;
20857
- originalName: string;
20858
- }>;
20859
- type: EDraftManualContentInstagramTypePost;
20860
- draftManualContentId: string;
20861
- }
20862
-
20863
- interface IDraftManualContentInstagram extends IBaseModel, ITrackingModel {
20864
- folderName: string;
20865
- }
20866
-
20867
- interface IDraftManualContentInstagramChildren extends IBaseModel, ITrackingModel {
20868
- typePost: EDraftManualContentInstagramTypePost;
20869
- draftManualContentId: string | IDraftManualContentInstagram;
20870
- }
20871
-
20872
- interface IDraftManualContentInstagramChildrenItemPost extends IBaseModel, ITrackingModel {
20873
- caption: string;
20874
- listFiles: Array<{
20875
- id: string;
20876
- url: string;
20877
- type: "Video" | "Image";
20878
- size: number;
20879
- originalName: string;
20880
- }>;
20881
- draftManualContentChildrenId: string | IDraftManualContentInstagramChildren;
20882
- statusSync: EDraftManualContentInstagramStatusSyncPost;
20883
- }
20884
-
20885
- interface IDraftManualContentPermissionInstagram extends IBaseModel {
20886
- draftManualContent: string | IDraftManualContentInstagram;
20887
- user: string | IUser;
20888
- }
20889
-
20890
20891
  interface IVoiceLanguage extends IBaseModel, ITrackingModel {
20891
20892
  vl_name: string;
20892
20893
  vl_key: ETypeVoiceLanguage;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.511",
3
+ "version": "6.6.512",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",