automation-lib 4.8.99 → 4.8.100
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 +4 -2
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1020,8 +1020,8 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
1020
1020
|
|
|
1021
1021
|
interface ITaskAIItemAction {
|
|
1022
1022
|
order: number;
|
|
1023
|
-
|
|
1024
|
-
|
|
1023
|
+
columnName: string;
|
|
1024
|
+
columnKey: string;
|
|
1025
1025
|
promptInput: string;
|
|
1026
1026
|
promptOutput: string;
|
|
1027
1027
|
status: EStatusTaskAI;
|
|
@@ -1036,6 +1036,8 @@ interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
|
|
|
1036
1036
|
accountAI: string | IAccountAI;
|
|
1037
1037
|
sheetUrl: string;
|
|
1038
1038
|
sheetName: string;
|
|
1039
|
+
row: string;
|
|
1040
|
+
rowID: string;
|
|
1039
1041
|
listGroupsActions: Array<ITaskAIItemGroup>;
|
|
1040
1042
|
status: EStatusTaskAI;
|
|
1041
1043
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1020,8 +1020,8 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
1020
1020
|
|
|
1021
1021
|
interface ITaskAIItemAction {
|
|
1022
1022
|
order: number;
|
|
1023
|
-
|
|
1024
|
-
|
|
1023
|
+
columnName: string;
|
|
1024
|
+
columnKey: string;
|
|
1025
1025
|
promptInput: string;
|
|
1026
1026
|
promptOutput: string;
|
|
1027
1027
|
status: EStatusTaskAI;
|
|
@@ -1036,6 +1036,8 @@ interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
|
|
|
1036
1036
|
accountAI: string | IAccountAI;
|
|
1037
1037
|
sheetUrl: string;
|
|
1038
1038
|
sheetName: string;
|
|
1039
|
+
row: string;
|
|
1040
|
+
rowID: string;
|
|
1039
1041
|
listGroupsActions: Array<ITaskAIItemGroup>;
|
|
1040
1042
|
status: EStatusTaskAI;
|
|
1041
1043
|
}
|