automation-lib 4.7.56 → 4.7.58
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 +14 -11
- package/dist/index.d.ts +14 -11
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -11,6 +11,7 @@ declare const CONST_API_AUTH: {
|
|
|
11
11
|
GET_ME: string;
|
|
12
12
|
LOGIN: string;
|
|
13
13
|
LOGOUT: string;
|
|
14
|
+
CLEAR_COOKIE: string;
|
|
14
15
|
RESET_PASSWORD: string;
|
|
15
16
|
CHANGE_PASSWORD: string;
|
|
16
17
|
};
|
|
@@ -861,21 +862,24 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
861
862
|
task_account: IAccount | string;
|
|
862
863
|
task_service: string;
|
|
863
864
|
task_action: string;
|
|
864
|
-
|
|
865
|
-
task_timeExecute: string;
|
|
865
|
+
task_timeExecute: Date;
|
|
866
866
|
task_status: EStatusTaskTool;
|
|
867
867
|
task_keyTimeSetting: string;
|
|
868
|
+
task_dataX: any;
|
|
869
|
+
task_dataFacebook: any;
|
|
870
|
+
task_dataInstagram: any;
|
|
871
|
+
task_dataTiktok: any;
|
|
872
|
+
task_dataThreads: any;
|
|
873
|
+
task_dataYoutube: any;
|
|
874
|
+
task_dataMedium: any;
|
|
875
|
+
task_dataReddit: any;
|
|
876
|
+
task_dataQuora: any;
|
|
877
|
+
task_dataTumblt: any;
|
|
878
|
+
task_dataPinterest: any;
|
|
868
879
|
task_data: any;
|
|
869
880
|
task_note: string;
|
|
870
881
|
}
|
|
871
882
|
|
|
872
|
-
interface ITaskPc extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
873
|
-
numberOther: number;
|
|
874
|
-
device: IDevice | string;
|
|
875
|
-
account: IAccount | string;
|
|
876
|
-
taskTool: ITaskTool | string;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
883
|
interface IHistoryCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
880
884
|
templateName: string;
|
|
881
885
|
pageThumb: {
|
|
@@ -939,10 +943,9 @@ type index$4_IProxy = IProxy;
|
|
|
939
943
|
type index$4_IProxySetting = IProxySetting;
|
|
940
944
|
type index$4_IProxyTracking = IProxyTracking;
|
|
941
945
|
type index$4_ISheetsTool = ISheetsTool;
|
|
942
|
-
type index$4_ITaskPc = ITaskPc;
|
|
943
946
|
type index$4_ITaskTool = ITaskTool;
|
|
944
947
|
declare namespace index$4 {
|
|
945
|
-
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$
|
|
948
|
+
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 };
|
|
946
949
|
}
|
|
947
950
|
|
|
948
951
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ declare const CONST_API_AUTH: {
|
|
|
11
11
|
GET_ME: string;
|
|
12
12
|
LOGIN: string;
|
|
13
13
|
LOGOUT: string;
|
|
14
|
+
CLEAR_COOKIE: string;
|
|
14
15
|
RESET_PASSWORD: string;
|
|
15
16
|
CHANGE_PASSWORD: string;
|
|
16
17
|
};
|
|
@@ -861,21 +862,24 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
861
862
|
task_account: IAccount | string;
|
|
862
863
|
task_service: string;
|
|
863
864
|
task_action: string;
|
|
864
|
-
|
|
865
|
-
task_timeExecute: string;
|
|
865
|
+
task_timeExecute: Date;
|
|
866
866
|
task_status: EStatusTaskTool;
|
|
867
867
|
task_keyTimeSetting: string;
|
|
868
|
+
task_dataX: any;
|
|
869
|
+
task_dataFacebook: any;
|
|
870
|
+
task_dataInstagram: any;
|
|
871
|
+
task_dataTiktok: any;
|
|
872
|
+
task_dataThreads: any;
|
|
873
|
+
task_dataYoutube: any;
|
|
874
|
+
task_dataMedium: any;
|
|
875
|
+
task_dataReddit: any;
|
|
876
|
+
task_dataQuora: any;
|
|
877
|
+
task_dataTumblt: any;
|
|
878
|
+
task_dataPinterest: any;
|
|
868
879
|
task_data: any;
|
|
869
880
|
task_note: string;
|
|
870
881
|
}
|
|
871
882
|
|
|
872
|
-
interface ITaskPc extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
873
|
-
numberOther: number;
|
|
874
|
-
device: IDevice | string;
|
|
875
|
-
account: IAccount | string;
|
|
876
|
-
taskTool: ITaskTool | string;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
883
|
interface IHistoryCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
880
884
|
templateName: string;
|
|
881
885
|
pageThumb: {
|
|
@@ -939,10 +943,9 @@ type index$4_IProxy = IProxy;
|
|
|
939
943
|
type index$4_IProxySetting = IProxySetting;
|
|
940
944
|
type index$4_IProxyTracking = IProxyTracking;
|
|
941
945
|
type index$4_ISheetsTool = ISheetsTool;
|
|
942
|
-
type index$4_ITaskPc = ITaskPc;
|
|
943
946
|
type index$4_ITaskTool = ITaskTool;
|
|
944
947
|
declare namespace index$4 {
|
|
945
|
-
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$
|
|
948
|
+
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 };
|
|
946
949
|
}
|
|
947
950
|
|
|
948
951
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED