automation-lib 4.7.76 → 4.7.77
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/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -356,7 +356,8 @@ declare enum EStatusTaskTool {
|
|
|
356
356
|
ExecutingPostSocial = "ExecutingPostSocial",
|
|
357
357
|
ExecutingCommonSocial = "ExecutingCommonSocial",
|
|
358
358
|
Error = "Error",
|
|
359
|
-
Done = "Done"
|
|
359
|
+
Done = "Done",
|
|
360
|
+
Repaired = "Repaired"
|
|
360
361
|
}
|
|
361
362
|
|
|
362
363
|
declare enum EStatusBlog {
|
package/dist/index.d.ts
CHANGED
|
@@ -356,7 +356,8 @@ declare enum EStatusTaskTool {
|
|
|
356
356
|
ExecutingPostSocial = "ExecutingPostSocial",
|
|
357
357
|
ExecutingCommonSocial = "ExecutingCommonSocial",
|
|
358
358
|
Error = "Error",
|
|
359
|
-
Done = "Done"
|
|
359
|
+
Done = "Done",
|
|
360
|
+
Repaired = "Repaired"
|
|
360
361
|
}
|
|
361
362
|
|
|
362
363
|
declare enum EStatusBlog {
|
package/dist/index.js
CHANGED
|
@@ -439,6 +439,7 @@ var EStatusTaskTool = /* @__PURE__ */ ((EStatusTaskTool2) => {
|
|
|
439
439
|
EStatusTaskTool2["ExecutingCommonSocial"] = "ExecutingCommonSocial";
|
|
440
440
|
EStatusTaskTool2["Error"] = "Error";
|
|
441
441
|
EStatusTaskTool2["Done"] = "Done";
|
|
442
|
+
EStatusTaskTool2["Repaired"] = "Repaired";
|
|
442
443
|
return EStatusTaskTool2;
|
|
443
444
|
})(EStatusTaskTool || {});
|
|
444
445
|
|
package/dist/index.mjs
CHANGED
|
@@ -416,6 +416,7 @@ var EStatusTaskTool = /* @__PURE__ */ ((EStatusTaskTool2) => {
|
|
|
416
416
|
EStatusTaskTool2["ExecutingCommonSocial"] = "ExecutingCommonSocial";
|
|
417
417
|
EStatusTaskTool2["Error"] = "Error";
|
|
418
418
|
EStatusTaskTool2["Done"] = "Done";
|
|
419
|
+
EStatusTaskTool2["Repaired"] = "Repaired";
|
|
419
420
|
return EStatusTaskTool2;
|
|
420
421
|
})(EStatusTaskTool || {});
|
|
421
422
|
|