automation-lib 4.8.65 → 4.8.67
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 +88 -50
- package/dist/index.d.ts +88 -50
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -503,6 +503,55 @@ declare namespace index$6 {
|
|
|
503
503
|
export type { index$6_IFile as IFile };
|
|
504
504
|
}
|
|
505
505
|
|
|
506
|
+
interface ICanvaPosition {
|
|
507
|
+
xLoc: number;
|
|
508
|
+
yLoc: number;
|
|
509
|
+
}
|
|
510
|
+
interface ICanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
511
|
+
canva_name: string;
|
|
512
|
+
canva_type: ETypeCanva;
|
|
513
|
+
canva_status: EStatusCommon;
|
|
514
|
+
canva_page1: {
|
|
515
|
+
textPos: ICanvaPosition;
|
|
516
|
+
userNamePos: ICanvaPosition;
|
|
517
|
+
titlePoolPos: ICanvaPosition;
|
|
518
|
+
contentPoolsPos: ICanvaPosition[];
|
|
519
|
+
imagesPos: ICanvaPosition[];
|
|
520
|
+
};
|
|
521
|
+
canva_page2: {
|
|
522
|
+
userNamePos: ICanvaPosition;
|
|
523
|
+
firstTextPos: ICanvaPosition;
|
|
524
|
+
secondTextPos: ICanvaPosition;
|
|
525
|
+
imagesPos: ICanvaPosition[];
|
|
526
|
+
};
|
|
527
|
+
canva_page3: {
|
|
528
|
+
nicheLink: ICanvaPosition;
|
|
529
|
+
imagesPos: ICanvaPosition[];
|
|
530
|
+
};
|
|
531
|
+
canva_page4: {
|
|
532
|
+
nicheLink: ICanvaPosition;
|
|
533
|
+
imagesPos: ICanvaPosition[];
|
|
534
|
+
};
|
|
535
|
+
canva_page5: {
|
|
536
|
+
nicheLink: ICanvaPosition;
|
|
537
|
+
imagesPos: ICanvaPosition[];
|
|
538
|
+
};
|
|
539
|
+
canva_page6: {
|
|
540
|
+
textsPos: ICanvaPosition[];
|
|
541
|
+
};
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
interface IPatternCanvaAvatar extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
545
|
+
name: string;
|
|
546
|
+
posUsername: ICanvaPosition;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
550
|
+
name: string;
|
|
551
|
+
posUsername: ICanvaPosition;
|
|
552
|
+
posImages: Array<ICanvaPosition>;
|
|
553
|
+
}
|
|
554
|
+
|
|
506
555
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
507
556
|
ag_name: string;
|
|
508
557
|
ag_slug: string;
|
|
@@ -838,44 +887,6 @@ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
838
887
|
account_packageApp: string;
|
|
839
888
|
}
|
|
840
889
|
|
|
841
|
-
interface ICanvaPosition {
|
|
842
|
-
xLoc: number;
|
|
843
|
-
yLoc: number;
|
|
844
|
-
}
|
|
845
|
-
interface ICanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
846
|
-
canva_name: string;
|
|
847
|
-
canva_type: ETypeCanva;
|
|
848
|
-
canva_status: EStatusCommon;
|
|
849
|
-
canva_page1: {
|
|
850
|
-
textPos: ICanvaPosition;
|
|
851
|
-
userNamePos: ICanvaPosition;
|
|
852
|
-
titlePoolPos: ICanvaPosition;
|
|
853
|
-
contentPoolsPos: ICanvaPosition[];
|
|
854
|
-
imagesPos: ICanvaPosition[];
|
|
855
|
-
};
|
|
856
|
-
canva_page2: {
|
|
857
|
-
userNamePos: ICanvaPosition;
|
|
858
|
-
firstTextPos: ICanvaPosition;
|
|
859
|
-
secondTextPos: ICanvaPosition;
|
|
860
|
-
imagesPos: ICanvaPosition[];
|
|
861
|
-
};
|
|
862
|
-
canva_page3: {
|
|
863
|
-
nicheLink: ICanvaPosition;
|
|
864
|
-
imagesPos: ICanvaPosition[];
|
|
865
|
-
};
|
|
866
|
-
canva_page4: {
|
|
867
|
-
nicheLink: ICanvaPosition;
|
|
868
|
-
imagesPos: ICanvaPosition[];
|
|
869
|
-
};
|
|
870
|
-
canva_page5: {
|
|
871
|
-
nicheLink: ICanvaPosition;
|
|
872
|
-
imagesPos: ICanvaPosition[];
|
|
873
|
-
};
|
|
874
|
-
canva_page6: {
|
|
875
|
-
textsPos: ICanvaPosition[];
|
|
876
|
-
};
|
|
877
|
-
}
|
|
878
|
-
|
|
879
890
|
interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
880
891
|
logging_name: string;
|
|
881
892
|
logging_account: IAccount | string;
|
|
@@ -947,17 +958,6 @@ interface IHistoryCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
|
|
|
947
958
|
};
|
|
948
959
|
}
|
|
949
960
|
|
|
950
|
-
interface IPatternCanvaAvatar extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
951
|
-
name: string;
|
|
952
|
-
posUsername: ICanvaPosition;
|
|
953
|
-
}
|
|
954
|
-
|
|
955
|
-
interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
956
|
-
name: string;
|
|
957
|
-
posUsername: ICanvaPosition;
|
|
958
|
-
posImages: Array<ICanvaPosition>;
|
|
959
|
-
}
|
|
960
|
-
|
|
961
961
|
interface IVoiceLanguage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
962
962
|
vl_name: string;
|
|
963
963
|
vl_key: ETypeVoiceLanguage;
|
|
@@ -989,6 +989,39 @@ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
989
989
|
vsd_timeDelay: number;
|
|
990
990
|
}
|
|
991
991
|
|
|
992
|
+
interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
993
|
+
msg_name: string;
|
|
994
|
+
msg_slug: string;
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
998
|
+
group: string | IManagerSheetGroup;
|
|
999
|
+
url: string;
|
|
1000
|
+
name: string;
|
|
1001
|
+
isActive: boolean;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1005
|
+
managerSheet: string | IManagerSheet;
|
|
1006
|
+
name: string;
|
|
1007
|
+
numberColumn: number;
|
|
1008
|
+
isActive: boolean;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1012
|
+
sheetChildren: string | IManagerSheetChildren;
|
|
1013
|
+
name: string;
|
|
1014
|
+
slug: string;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1018
|
+
group: string | IManagerSheetChildrenGroup;
|
|
1019
|
+
order: number;
|
|
1020
|
+
columnKey: string;
|
|
1021
|
+
columnName: string;
|
|
1022
|
+
keyWords: string;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
992
1025
|
type index$4_IAccount = IAccount;
|
|
993
1026
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
994
1027
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
@@ -1001,6 +1034,11 @@ type index$4_IDeviceInfoEmail = IDeviceInfoEmail;
|
|
|
1001
1034
|
type index$4_IDeviceSetting = IDeviceSetting;
|
|
1002
1035
|
type index$4_IHistoryCanva = IHistoryCanva;
|
|
1003
1036
|
type index$4_ILogging = ILogging;
|
|
1037
|
+
type index$4_IManagerSheet = IManagerSheet;
|
|
1038
|
+
type index$4_IManagerSheetChildren = IManagerSheetChildren;
|
|
1039
|
+
type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
1040
|
+
type index$4_IManagerSheetChildrenGroupItem = IManagerSheetChildrenGroupItem;
|
|
1041
|
+
type index$4_IManagerSheetGroup = IManagerSheetGroup;
|
|
1004
1042
|
type index$4_IPC = IPC;
|
|
1005
1043
|
type index$4_IPatternCanvaAvatar = IPatternCanvaAvatar;
|
|
1006
1044
|
type index$4_IPatternCanvaCoverBackground = IPatternCanvaCoverBackground;
|
|
@@ -1014,7 +1052,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1014
1052
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1015
1053
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1016
1054
|
declare namespace index$4 {
|
|
1017
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1055
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1018
1056
|
}
|
|
1019
1057
|
|
|
1020
1058
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -503,6 +503,55 @@ declare namespace index$6 {
|
|
|
503
503
|
export type { index$6_IFile as IFile };
|
|
504
504
|
}
|
|
505
505
|
|
|
506
|
+
interface ICanvaPosition {
|
|
507
|
+
xLoc: number;
|
|
508
|
+
yLoc: number;
|
|
509
|
+
}
|
|
510
|
+
interface ICanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
511
|
+
canva_name: string;
|
|
512
|
+
canva_type: ETypeCanva;
|
|
513
|
+
canva_status: EStatusCommon;
|
|
514
|
+
canva_page1: {
|
|
515
|
+
textPos: ICanvaPosition;
|
|
516
|
+
userNamePos: ICanvaPosition;
|
|
517
|
+
titlePoolPos: ICanvaPosition;
|
|
518
|
+
contentPoolsPos: ICanvaPosition[];
|
|
519
|
+
imagesPos: ICanvaPosition[];
|
|
520
|
+
};
|
|
521
|
+
canva_page2: {
|
|
522
|
+
userNamePos: ICanvaPosition;
|
|
523
|
+
firstTextPos: ICanvaPosition;
|
|
524
|
+
secondTextPos: ICanvaPosition;
|
|
525
|
+
imagesPos: ICanvaPosition[];
|
|
526
|
+
};
|
|
527
|
+
canva_page3: {
|
|
528
|
+
nicheLink: ICanvaPosition;
|
|
529
|
+
imagesPos: ICanvaPosition[];
|
|
530
|
+
};
|
|
531
|
+
canva_page4: {
|
|
532
|
+
nicheLink: ICanvaPosition;
|
|
533
|
+
imagesPos: ICanvaPosition[];
|
|
534
|
+
};
|
|
535
|
+
canva_page5: {
|
|
536
|
+
nicheLink: ICanvaPosition;
|
|
537
|
+
imagesPos: ICanvaPosition[];
|
|
538
|
+
};
|
|
539
|
+
canva_page6: {
|
|
540
|
+
textsPos: ICanvaPosition[];
|
|
541
|
+
};
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
interface IPatternCanvaAvatar extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
545
|
+
name: string;
|
|
546
|
+
posUsername: ICanvaPosition;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
550
|
+
name: string;
|
|
551
|
+
posUsername: ICanvaPosition;
|
|
552
|
+
posImages: Array<ICanvaPosition>;
|
|
553
|
+
}
|
|
554
|
+
|
|
506
555
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
507
556
|
ag_name: string;
|
|
508
557
|
ag_slug: string;
|
|
@@ -838,44 +887,6 @@ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
838
887
|
account_packageApp: string;
|
|
839
888
|
}
|
|
840
889
|
|
|
841
|
-
interface ICanvaPosition {
|
|
842
|
-
xLoc: number;
|
|
843
|
-
yLoc: number;
|
|
844
|
-
}
|
|
845
|
-
interface ICanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
846
|
-
canva_name: string;
|
|
847
|
-
canva_type: ETypeCanva;
|
|
848
|
-
canva_status: EStatusCommon;
|
|
849
|
-
canva_page1: {
|
|
850
|
-
textPos: ICanvaPosition;
|
|
851
|
-
userNamePos: ICanvaPosition;
|
|
852
|
-
titlePoolPos: ICanvaPosition;
|
|
853
|
-
contentPoolsPos: ICanvaPosition[];
|
|
854
|
-
imagesPos: ICanvaPosition[];
|
|
855
|
-
};
|
|
856
|
-
canva_page2: {
|
|
857
|
-
userNamePos: ICanvaPosition;
|
|
858
|
-
firstTextPos: ICanvaPosition;
|
|
859
|
-
secondTextPos: ICanvaPosition;
|
|
860
|
-
imagesPos: ICanvaPosition[];
|
|
861
|
-
};
|
|
862
|
-
canva_page3: {
|
|
863
|
-
nicheLink: ICanvaPosition;
|
|
864
|
-
imagesPos: ICanvaPosition[];
|
|
865
|
-
};
|
|
866
|
-
canva_page4: {
|
|
867
|
-
nicheLink: ICanvaPosition;
|
|
868
|
-
imagesPos: ICanvaPosition[];
|
|
869
|
-
};
|
|
870
|
-
canva_page5: {
|
|
871
|
-
nicheLink: ICanvaPosition;
|
|
872
|
-
imagesPos: ICanvaPosition[];
|
|
873
|
-
};
|
|
874
|
-
canva_page6: {
|
|
875
|
-
textsPos: ICanvaPosition[];
|
|
876
|
-
};
|
|
877
|
-
}
|
|
878
|
-
|
|
879
890
|
interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
880
891
|
logging_name: string;
|
|
881
892
|
logging_account: IAccount | string;
|
|
@@ -947,17 +958,6 @@ interface IHistoryCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
|
|
|
947
958
|
};
|
|
948
959
|
}
|
|
949
960
|
|
|
950
|
-
interface IPatternCanvaAvatar extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
951
|
-
name: string;
|
|
952
|
-
posUsername: ICanvaPosition;
|
|
953
|
-
}
|
|
954
|
-
|
|
955
|
-
interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
956
|
-
name: string;
|
|
957
|
-
posUsername: ICanvaPosition;
|
|
958
|
-
posImages: Array<ICanvaPosition>;
|
|
959
|
-
}
|
|
960
|
-
|
|
961
961
|
interface IVoiceLanguage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
962
962
|
vl_name: string;
|
|
963
963
|
vl_key: ETypeVoiceLanguage;
|
|
@@ -989,6 +989,39 @@ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
989
989
|
vsd_timeDelay: number;
|
|
990
990
|
}
|
|
991
991
|
|
|
992
|
+
interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
993
|
+
msg_name: string;
|
|
994
|
+
msg_slug: string;
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
998
|
+
group: string | IManagerSheetGroup;
|
|
999
|
+
url: string;
|
|
1000
|
+
name: string;
|
|
1001
|
+
isActive: boolean;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1005
|
+
managerSheet: string | IManagerSheet;
|
|
1006
|
+
name: string;
|
|
1007
|
+
numberColumn: number;
|
|
1008
|
+
isActive: boolean;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1012
|
+
sheetChildren: string | IManagerSheetChildren;
|
|
1013
|
+
name: string;
|
|
1014
|
+
slug: string;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1018
|
+
group: string | IManagerSheetChildrenGroup;
|
|
1019
|
+
order: number;
|
|
1020
|
+
columnKey: string;
|
|
1021
|
+
columnName: string;
|
|
1022
|
+
keyWords: string;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
992
1025
|
type index$4_IAccount = IAccount;
|
|
993
1026
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
994
1027
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
@@ -1001,6 +1034,11 @@ type index$4_IDeviceInfoEmail = IDeviceInfoEmail;
|
|
|
1001
1034
|
type index$4_IDeviceSetting = IDeviceSetting;
|
|
1002
1035
|
type index$4_IHistoryCanva = IHistoryCanva;
|
|
1003
1036
|
type index$4_ILogging = ILogging;
|
|
1037
|
+
type index$4_IManagerSheet = IManagerSheet;
|
|
1038
|
+
type index$4_IManagerSheetChildren = IManagerSheetChildren;
|
|
1039
|
+
type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
1040
|
+
type index$4_IManagerSheetChildrenGroupItem = IManagerSheetChildrenGroupItem;
|
|
1041
|
+
type index$4_IManagerSheetGroup = IManagerSheetGroup;
|
|
1004
1042
|
type index$4_IPC = IPC;
|
|
1005
1043
|
type index$4_IPatternCanvaAvatar = IPatternCanvaAvatar;
|
|
1006
1044
|
type index$4_IPatternCanvaCoverBackground = IPatternCanvaCoverBackground;
|
|
@@ -1014,7 +1052,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1014
1052
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1015
1053
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1016
1054
|
declare namespace index$4 {
|
|
1017
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1055
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1018
1056
|
}
|
|
1019
1057
|
|
|
1020
1058
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|