automation-lib 4.8.102 → 4.8.104
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1034,10 +1034,11 @@ interface ITaskAIItemGroup {
|
|
|
1034
1034
|
}
|
|
1035
1035
|
interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1036
1036
|
accountAI: string | IAccountAI;
|
|
1037
|
+
sheetID: string;
|
|
1037
1038
|
sheetUrl: string;
|
|
1038
1039
|
sheetName: string;
|
|
1039
|
-
row: string;
|
|
1040
1040
|
rowID: string;
|
|
1041
|
+
row: number;
|
|
1041
1042
|
listGroupsActions: Array<ITaskAIItemGroup>;
|
|
1042
1043
|
status: EStatusTaskAI;
|
|
1043
1044
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1034,10 +1034,11 @@ interface ITaskAIItemGroup {
|
|
|
1034
1034
|
}
|
|
1035
1035
|
interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1036
1036
|
accountAI: string | IAccountAI;
|
|
1037
|
+
sheetID: string;
|
|
1037
1038
|
sheetUrl: string;
|
|
1038
1039
|
sheetName: string;
|
|
1039
|
-
row: string;
|
|
1040
1040
|
rowID: string;
|
|
1041
|
+
row: number;
|
|
1041
1042
|
listGroupsActions: Array<ITaskAIItemGroup>;
|
|
1042
1043
|
status: EStatusTaskAI;
|
|
1043
1044
|
}
|