automation-lib 4.8.2 → 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 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> {
package/dist/index.js CHANGED
@@ -18,14 +18,14 @@ var __copyProps = (to, from, except, desc) => {
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
19
 
20
20
  // src/index.ts
21
- var src_exports = {};
22
- __export(src_exports, {
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
23
  AutoConstants: () => constants_exports,
24
24
  AutoEnums: () => enums_exports,
25
25
  AutoInterfacesCommon: () => common_exports2,
26
26
  AutoInterfacesModels: () => models_exports
27
27
  });
28
- module.exports = __toCommonJS(src_exports);
28
+ module.exports = __toCommonJS(index_exports);
29
29
 
30
30
  // src/constants/index.ts
31
31
  var constants_exports = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "4.8.2",
3
+ "version": "4.8.7",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",