automation-lib 4.8.54 → 4.8.55
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 +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -83,6 +83,7 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
83
83
|
PROXY_SETTING: string;
|
|
84
84
|
PROXY_TRACKING: string;
|
|
85
85
|
TASKS_TOOL: string;
|
|
86
|
+
VOICES_SETTING_DELAY: string;
|
|
86
87
|
VOICES_LANGUAGE: string;
|
|
87
88
|
VOICES_STORE: string;
|
|
88
89
|
VOICES_GENERATED: string;
|
|
@@ -961,6 +962,11 @@ interface IVoiceGenerated extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
961
962
|
vg_voiceStore: IVoiceStores | string;
|
|
962
963
|
}
|
|
963
964
|
|
|
965
|
+
interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
966
|
+
vs_symbol: string;
|
|
967
|
+
vs_timeDelay: number;
|
|
968
|
+
}
|
|
969
|
+
|
|
964
970
|
type index$4_IAccount = IAccount;
|
|
965
971
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
966
972
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
@@ -983,9 +989,10 @@ type index$4_ISheetsTool = ISheetsTool;
|
|
|
983
989
|
type index$4_ITaskTool = ITaskTool;
|
|
984
990
|
type index$4_IVoiceGenerated = IVoiceGenerated;
|
|
985
991
|
type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
992
|
+
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
986
993
|
type index$4_IVoiceStores = IVoiceStores;
|
|
987
994
|
declare namespace index$4 {
|
|
988
|
-
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_IVoiceStores as IVoiceStores };
|
|
995
|
+
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 };
|
|
989
996
|
}
|
|
990
997
|
|
|
991
998
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -83,6 +83,7 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
83
83
|
PROXY_SETTING: string;
|
|
84
84
|
PROXY_TRACKING: string;
|
|
85
85
|
TASKS_TOOL: string;
|
|
86
|
+
VOICES_SETTING_DELAY: string;
|
|
86
87
|
VOICES_LANGUAGE: string;
|
|
87
88
|
VOICES_STORE: string;
|
|
88
89
|
VOICES_GENERATED: string;
|
|
@@ -961,6 +962,11 @@ interface IVoiceGenerated extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
961
962
|
vg_voiceStore: IVoiceStores | string;
|
|
962
963
|
}
|
|
963
964
|
|
|
965
|
+
interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
966
|
+
vs_symbol: string;
|
|
967
|
+
vs_timeDelay: number;
|
|
968
|
+
}
|
|
969
|
+
|
|
964
970
|
type index$4_IAccount = IAccount;
|
|
965
971
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
966
972
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
@@ -983,9 +989,10 @@ type index$4_ISheetsTool = ISheetsTool;
|
|
|
983
989
|
type index$4_ITaskTool = ITaskTool;
|
|
984
990
|
type index$4_IVoiceGenerated = IVoiceGenerated;
|
|
985
991
|
type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
992
|
+
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
986
993
|
type index$4_IVoiceStores = IVoiceStores;
|
|
987
994
|
declare namespace index$4 {
|
|
988
|
-
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_IVoiceStores as IVoiceStores };
|
|
995
|
+
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 };
|
|
989
996
|
}
|
|
990
997
|
|
|
991
998
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -128,6 +128,7 @@ var CONST_API_CONTROLLERS = {
|
|
|
128
128
|
PROXY_SETTING: "proxy-setting",
|
|
129
129
|
PROXY_TRACKING: "proxy-tracking",
|
|
130
130
|
TASKS_TOOL: "tasks-tool",
|
|
131
|
+
VOICES_SETTING_DELAY: "voices-setting-delay",
|
|
131
132
|
VOICES_LANGUAGE: "voices-language",
|
|
132
133
|
VOICES_STORE: "voices-store",
|
|
133
134
|
VOICES_GENERATED: "voices-generated"
|
package/dist/index.mjs
CHANGED
|
@@ -105,6 +105,7 @@ var CONST_API_CONTROLLERS = {
|
|
|
105
105
|
PROXY_SETTING: "proxy-setting",
|
|
106
106
|
PROXY_TRACKING: "proxy-tracking",
|
|
107
107
|
TASKS_TOOL: "tasks-tool",
|
|
108
|
+
VOICES_SETTING_DELAY: "voices-setting-delay",
|
|
108
109
|
VOICES_LANGUAGE: "voices-language",
|
|
109
110
|
VOICES_STORE: "voices-store",
|
|
110
111
|
VOICES_GENERATED: "voices-generated"
|