automation-lib 4.9.135 → 4.9.136
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 -1
- package/dist/index.d.ts +14 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1534,6 +1534,19 @@ interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
|
|
|
1534
1534
|
status: EStatusTaskAI;
|
|
1535
1535
|
}
|
|
1536
1536
|
|
|
1537
|
+
declare enum EStatusTaskImageVoiceCanva {
|
|
1538
|
+
Pending = "Pending",
|
|
1539
|
+
GeneratingImage = "GeneratingImage",
|
|
1540
|
+
GeneratedImage = "GeneratedImage",
|
|
1541
|
+
GeneratingVoice = "GeneratingVoice",
|
|
1542
|
+
GeneratedVoice = "GeneratedVoice",
|
|
1543
|
+
GeneratingCanva = "GeneratingCanva",
|
|
1544
|
+
GeneratedCanva = "GeneratedCanva",
|
|
1545
|
+
Error = "Error",
|
|
1546
|
+
Done = "Done",// Hoàn thành nhưng chưa chuẩn bị cho việc chạy
|
|
1547
|
+
Ready = "Ready"
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1537
1550
|
interface ITaskAIImageVoiceCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1538
1551
|
sheetID: string;
|
|
1539
1552
|
sheetUrl: string;
|
|
@@ -1584,7 +1597,7 @@ interface ITaskAIImageVoiceCanva extends BoInterfaceModelsCommon.IBaseModel, BoI
|
|
|
1584
1597
|
bgRemoveBackground345: string;
|
|
1585
1598
|
fontText1: string;
|
|
1586
1599
|
fontText2: string;
|
|
1587
|
-
status:
|
|
1600
|
+
status: EStatusTaskImageVoiceCanva;
|
|
1588
1601
|
}
|
|
1589
1602
|
|
|
1590
1603
|
type index$6_ITaskAI = ITaskAI;
|
package/dist/index.d.ts
CHANGED
|
@@ -1534,6 +1534,19 @@ interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
|
|
|
1534
1534
|
status: EStatusTaskAI;
|
|
1535
1535
|
}
|
|
1536
1536
|
|
|
1537
|
+
declare enum EStatusTaskImageVoiceCanva {
|
|
1538
|
+
Pending = "Pending",
|
|
1539
|
+
GeneratingImage = "GeneratingImage",
|
|
1540
|
+
GeneratedImage = "GeneratedImage",
|
|
1541
|
+
GeneratingVoice = "GeneratingVoice",
|
|
1542
|
+
GeneratedVoice = "GeneratedVoice",
|
|
1543
|
+
GeneratingCanva = "GeneratingCanva",
|
|
1544
|
+
GeneratedCanva = "GeneratedCanva",
|
|
1545
|
+
Error = "Error",
|
|
1546
|
+
Done = "Done",// Hoàn thành nhưng chưa chuẩn bị cho việc chạy
|
|
1547
|
+
Ready = "Ready"
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1537
1550
|
interface ITaskAIImageVoiceCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1538
1551
|
sheetID: string;
|
|
1539
1552
|
sheetUrl: string;
|
|
@@ -1584,7 +1597,7 @@ interface ITaskAIImageVoiceCanva extends BoInterfaceModelsCommon.IBaseModel, BoI
|
|
|
1584
1597
|
bgRemoveBackground345: string;
|
|
1585
1598
|
fontText1: string;
|
|
1586
1599
|
fontText2: string;
|
|
1587
|
-
status:
|
|
1600
|
+
status: EStatusTaskImageVoiceCanva;
|
|
1588
1601
|
}
|
|
1589
1602
|
|
|
1590
1603
|
type index$6_ITaskAI = ITaskAI;
|