automation-lib 4.8.6 → 4.8.7
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 +29 -1
- package/dist/index.d.ts +29 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -932,6 +932,30 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
932
932
|
posImages: Array<ICanvaPosition>;
|
|
933
933
|
}
|
|
934
934
|
|
|
935
|
+
interface IVoiceStores extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
936
|
+
vs_name: string;
|
|
937
|
+
vs_avatar: string;
|
|
938
|
+
vs_audio: string;
|
|
939
|
+
vs_language?: IVoiceLanguage;
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
interface IVoiceLanguage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
943
|
+
vl_name: string;
|
|
944
|
+
vl_voiceStores?: IVoiceStores[];
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
interface IVoiceGenerated extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
948
|
+
vg_prompt: string;
|
|
949
|
+
vg_setting: any;
|
|
950
|
+
vg_voice_language?: IVoiceLanguage;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
interface IVoiceHistory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
954
|
+
vg_prompt: string;
|
|
955
|
+
vg_setting: any;
|
|
956
|
+
vh_voices_generated?: IVoiceGenerated[];
|
|
957
|
+
}
|
|
958
|
+
|
|
935
959
|
type index$4_IAccount = IAccount;
|
|
936
960
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
937
961
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
@@ -952,8 +976,12 @@ type index$4_IProxySetting = IProxySetting;
|
|
|
952
976
|
type index$4_IProxyTracking = IProxyTracking;
|
|
953
977
|
type index$4_ISheetsTool = ISheetsTool;
|
|
954
978
|
type index$4_ITaskTool = ITaskTool;
|
|
979
|
+
type index$4_IVoiceGenerated = IVoiceGenerated;
|
|
980
|
+
type index$4_IVoiceHistory = IVoiceHistory;
|
|
981
|
+
type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
982
|
+
type index$4_IVoiceStores = IVoiceStores;
|
|
955
983
|
declare namespace index$4 {
|
|
956
|
-
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 };
|
|
984
|
+
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_IVoiceHistory as IVoiceHistory, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceStores as IVoiceStores };
|
|
957
985
|
}
|
|
958
986
|
|
|
959
987
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -932,6 +932,30 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
932
932
|
posImages: Array<ICanvaPosition>;
|
|
933
933
|
}
|
|
934
934
|
|
|
935
|
+
interface IVoiceStores extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
936
|
+
vs_name: string;
|
|
937
|
+
vs_avatar: string;
|
|
938
|
+
vs_audio: string;
|
|
939
|
+
vs_language?: IVoiceLanguage;
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
interface IVoiceLanguage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
943
|
+
vl_name: string;
|
|
944
|
+
vl_voiceStores?: IVoiceStores[];
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
interface IVoiceGenerated extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
948
|
+
vg_prompt: string;
|
|
949
|
+
vg_setting: any;
|
|
950
|
+
vg_voice_language?: IVoiceLanguage;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
interface IVoiceHistory extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
954
|
+
vg_prompt: string;
|
|
955
|
+
vg_setting: any;
|
|
956
|
+
vh_voices_generated?: IVoiceGenerated[];
|
|
957
|
+
}
|
|
958
|
+
|
|
935
959
|
type index$4_IAccount = IAccount;
|
|
936
960
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
937
961
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
@@ -952,8 +976,12 @@ type index$4_IProxySetting = IProxySetting;
|
|
|
952
976
|
type index$4_IProxyTracking = IProxyTracking;
|
|
953
977
|
type index$4_ISheetsTool = ISheetsTool;
|
|
954
978
|
type index$4_ITaskTool = ITaskTool;
|
|
979
|
+
type index$4_IVoiceGenerated = IVoiceGenerated;
|
|
980
|
+
type index$4_IVoiceHistory = IVoiceHistory;
|
|
981
|
+
type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
982
|
+
type index$4_IVoiceStores = IVoiceStores;
|
|
955
983
|
declare namespace index$4 {
|
|
956
|
-
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 };
|
|
984
|
+
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_IVoiceHistory as IVoiceHistory, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceStores as IVoiceStores };
|
|
957
985
|
}
|
|
958
986
|
|
|
959
987
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|