automation-lib 4.9.105 → 4.9.107

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
@@ -1343,12 +1343,6 @@ interface IDeviceMappingAccount extends BoInterfaceModelsCommon.IBaseModel, BoIn
1343
1343
  accountSocial: IAccount | string;
1344
1344
  }
1345
1345
 
1346
- interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1347
- logging_name: string;
1348
- logging_account: IAccount | string;
1349
- logging_status: string;
1350
- }
1351
-
1352
1346
  interface ISheetsTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1353
1347
  sheet_name: string;
1354
1348
  sheet_slug: string;
@@ -1414,9 +1408,9 @@ interface ITaskAIImageVoice extends BoInterfaceModelsCommon.IBaseModel, BoInterf
1414
1408
  versionModel: string;
1415
1409
  typeRatioImage: ETypeRatioImage;
1416
1410
  channelImage: string | IAccountAIImageChannel;
1417
- channelVoice: string | IAccountAIImageChannel;
1411
+ channelVoice: string | IAccountAIVoiceChannel;
1418
1412
  accountAIImage: string | IAccountAIImage;
1419
- accountAIVoice: string | IAccountAIImage;
1413
+ accountAIVoice: string | IAccountAIVoice;
1420
1414
  promptThumbInput: string;
1421
1415
  promptThumbOutput: string;
1422
1416
  billetImageStyleThumb: string | IManagerImageAIItemStore;
@@ -1456,6 +1450,43 @@ interface ITaskAIImageVoice extends BoInterfaceModelsCommon.IBaseModel, BoInterf
1456
1450
  status: EStatusTaskAI;
1457
1451
  }
1458
1452
 
1453
+ interface IVoiceLanguage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1454
+ vl_name: string;
1455
+ vl_key: ETypeVoiceLanguage;
1456
+ }
1457
+
1458
+ interface IVoiceStores extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1459
+ vs_name: string;
1460
+ vs_avatar: string;
1461
+ vs_audio: string;
1462
+ vs_language: IVoiceLanguage | string;
1463
+ }
1464
+
1465
+ interface IVoiceGenerated extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1466
+ vg_content: Array<{
1467
+ prompt: string;
1468
+ voiceStore: IVoiceStores | string;
1469
+ }>;
1470
+ vg_setting: {
1471
+ speed: number;
1472
+ stability: number;
1473
+ similarity: number;
1474
+ speakerBoost: boolean;
1475
+ };
1476
+ vg_audio: string;
1477
+ }
1478
+
1479
+ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1480
+ vsd_symbol: string;
1481
+ vsd_timeDelay: number;
1482
+ }
1483
+
1484
+ interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1485
+ logging_name: string;
1486
+ logging_account: IAccount | string;
1487
+ logging_status: string;
1488
+ }
1489
+
1459
1490
  interface IHistoryCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1460
1491
  templateName: string;
1461
1492
  pageThumb: {
@@ -1489,37 +1520,6 @@ interface IHistoryCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
1489
1520
  };
1490
1521
  }
1491
1522
 
1492
- interface IVoiceLanguage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1493
- vl_name: string;
1494
- vl_key: ETypeVoiceLanguage;
1495
- }
1496
-
1497
- interface IVoiceStores extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1498
- vs_name: string;
1499
- vs_avatar: string;
1500
- vs_audio: string;
1501
- vs_language: IVoiceLanguage | string;
1502
- }
1503
-
1504
- interface IVoiceGenerated extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1505
- vg_content: Array<{
1506
- prompt: string;
1507
- voiceStore: IVoiceStores | string;
1508
- }>;
1509
- vg_setting: {
1510
- speed: number;
1511
- stability: number;
1512
- similarity: number;
1513
- speakerBoost: boolean;
1514
- };
1515
- vg_audio: string;
1516
- }
1517
-
1518
- interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1519
- vsd_symbol: string;
1520
- vsd_timeDelay: number;
1521
- }
1522
-
1523
1523
  type index$5_IAccount = IAccount;
1524
1524
  type index$5_IAccountAI = IAccountAI;
1525
1525
  type index$5_IAccountAIChannel = IAccountAIChannel;
package/dist/index.d.ts CHANGED
@@ -1343,12 +1343,6 @@ interface IDeviceMappingAccount extends BoInterfaceModelsCommon.IBaseModel, BoIn
1343
1343
  accountSocial: IAccount | string;
1344
1344
  }
1345
1345
 
1346
- interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1347
- logging_name: string;
1348
- logging_account: IAccount | string;
1349
- logging_status: string;
1350
- }
1351
-
1352
1346
  interface ISheetsTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1353
1347
  sheet_name: string;
1354
1348
  sheet_slug: string;
@@ -1414,9 +1408,9 @@ interface ITaskAIImageVoice extends BoInterfaceModelsCommon.IBaseModel, BoInterf
1414
1408
  versionModel: string;
1415
1409
  typeRatioImage: ETypeRatioImage;
1416
1410
  channelImage: string | IAccountAIImageChannel;
1417
- channelVoice: string | IAccountAIImageChannel;
1411
+ channelVoice: string | IAccountAIVoiceChannel;
1418
1412
  accountAIImage: string | IAccountAIImage;
1419
- accountAIVoice: string | IAccountAIImage;
1413
+ accountAIVoice: string | IAccountAIVoice;
1420
1414
  promptThumbInput: string;
1421
1415
  promptThumbOutput: string;
1422
1416
  billetImageStyleThumb: string | IManagerImageAIItemStore;
@@ -1456,6 +1450,43 @@ interface ITaskAIImageVoice extends BoInterfaceModelsCommon.IBaseModel, BoInterf
1456
1450
  status: EStatusTaskAI;
1457
1451
  }
1458
1452
 
1453
+ interface IVoiceLanguage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1454
+ vl_name: string;
1455
+ vl_key: ETypeVoiceLanguage;
1456
+ }
1457
+
1458
+ interface IVoiceStores extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1459
+ vs_name: string;
1460
+ vs_avatar: string;
1461
+ vs_audio: string;
1462
+ vs_language: IVoiceLanguage | string;
1463
+ }
1464
+
1465
+ interface IVoiceGenerated extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1466
+ vg_content: Array<{
1467
+ prompt: string;
1468
+ voiceStore: IVoiceStores | string;
1469
+ }>;
1470
+ vg_setting: {
1471
+ speed: number;
1472
+ stability: number;
1473
+ similarity: number;
1474
+ speakerBoost: boolean;
1475
+ };
1476
+ vg_audio: string;
1477
+ }
1478
+
1479
+ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1480
+ vsd_symbol: string;
1481
+ vsd_timeDelay: number;
1482
+ }
1483
+
1484
+ interface ILogging extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1485
+ logging_name: string;
1486
+ logging_account: IAccount | string;
1487
+ logging_status: string;
1488
+ }
1489
+
1459
1490
  interface IHistoryCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1460
1491
  templateName: string;
1461
1492
  pageThumb: {
@@ -1489,37 +1520,6 @@ interface IHistoryCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
1489
1520
  };
1490
1521
  }
1491
1522
 
1492
- interface IVoiceLanguage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1493
- vl_name: string;
1494
- vl_key: ETypeVoiceLanguage;
1495
- }
1496
-
1497
- interface IVoiceStores extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1498
- vs_name: string;
1499
- vs_avatar: string;
1500
- vs_audio: string;
1501
- vs_language: IVoiceLanguage | string;
1502
- }
1503
-
1504
- interface IVoiceGenerated extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1505
- vg_content: Array<{
1506
- prompt: string;
1507
- voiceStore: IVoiceStores | string;
1508
- }>;
1509
- vg_setting: {
1510
- speed: number;
1511
- stability: number;
1512
- similarity: number;
1513
- speakerBoost: boolean;
1514
- };
1515
- vg_audio: string;
1516
- }
1517
-
1518
- interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1519
- vsd_symbol: string;
1520
- vsd_timeDelay: number;
1521
- }
1522
-
1523
1523
  type index$5_IAccount = IAccount;
1524
1524
  type index$5_IAccountAI = IAccountAI;
1525
1525
  type index$5_IAccountAIChannel = IAccountAIChannel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "4.9.105",
3
+ "version": "4.9.107",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",