automation-lib 6.6.124 → 6.6.125

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/commit.bat CHANGED
@@ -7,10 +7,10 @@ git add .
7
7
  echo Committing changes...
8
8
  set /p commit_message="Enter commit message: "
9
9
  git commit -m "%commit_message%"
10
- sleep 2
10
+ timeout /t 2 /nobreak >nul
11
11
 
12
12
  :: Push changes to the 'main' branch of the 'cp' remote
13
- git pull origin toan
13
+ git pull hs main
14
14
 
15
15
  :: Read the current version from package.json
16
16
  for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
@@ -41,10 +41,10 @@ echo New version: %newVersion%
41
41
  call npm run pub
42
42
 
43
43
  git add .
44
- sleep 1
44
+ timeout /t 1 /nobreak >nul
45
45
  git commit -m "%commit_message%"
46
- sleep 2
46
+ timeout /t 2 /nobreak >nul
47
47
 
48
- git push origin toan
48
+ git push hs main
49
49
 
50
50
 
package/dist/index.d.mts CHANGED
@@ -172,6 +172,7 @@ declare const CONST_API_CONTROLLERS: {
172
172
  WORKFLOW: {
173
173
  TASK_WORKFLOW: string;
174
174
  TASK_WORKFLOW_GROUP: string;
175
+ TASK_WORKFLOW_LOG: string;
175
176
  TASK_WORKFLOW_NODE_INSTAGRAM: string;
176
177
  TASK_WORKFLOW_NODE_THREADS: string;
177
178
  };
@@ -649,6 +650,8 @@ declare enum EObjectName {
649
650
  TaskWorkflow = "TaskWorkflow",
650
651
  TaskWorkflowGroup = "TaskWorkflowGroup",
651
652
  TaskWorkflowLog = "TaskWorkflowLog",
653
+ TaskWorkflowLogDetail = "TaskWorkflowLogDetail",
654
+ TaskWorkflowLogNodeDetail = "TaskWorkflowLogNodeDetail",
652
655
  TaskWorkflowNodeInstagram = "TaskWorkflowNodeInstagram",
653
656
  TaskWorkflowNodeThreads = "TaskWorkflowNodeThreads",
654
657
  ReportManager = "ReportManager"
package/dist/index.d.ts CHANGED
@@ -172,6 +172,7 @@ declare const CONST_API_CONTROLLERS: {
172
172
  WORKFLOW: {
173
173
  TASK_WORKFLOW: string;
174
174
  TASK_WORKFLOW_GROUP: string;
175
+ TASK_WORKFLOW_LOG: string;
175
176
  TASK_WORKFLOW_NODE_INSTAGRAM: string;
176
177
  TASK_WORKFLOW_NODE_THREADS: string;
177
178
  };
@@ -649,6 +650,8 @@ declare enum EObjectName {
649
650
  TaskWorkflow = "TaskWorkflow",
650
651
  TaskWorkflowGroup = "TaskWorkflowGroup",
651
652
  TaskWorkflowLog = "TaskWorkflowLog",
653
+ TaskWorkflowLogDetail = "TaskWorkflowLogDetail",
654
+ TaskWorkflowLogNodeDetail = "TaskWorkflowLogNodeDetail",
652
655
  TaskWorkflowNodeInstagram = "TaskWorkflowNodeInstagram",
653
656
  TaskWorkflowNodeThreads = "TaskWorkflowNodeThreads",
654
657
  ReportManager = "ReportManager"
package/dist/index.js CHANGED
@@ -450,6 +450,7 @@ var CONST_API_CONTROLLERS = {
450
450
  WORKFLOW: {
451
451
  TASK_WORKFLOW: "task-workflow",
452
452
  TASK_WORKFLOW_GROUP: "task-workflow-group",
453
+ TASK_WORKFLOW_LOG: "task-workflow-log",
453
454
  TASK_WORKFLOW_NODE_INSTAGRAM: "task-workflow-node-instagram",
454
455
  TASK_WORKFLOW_NODE_THREADS: "task-workflow-node-threads"
455
456
  }
@@ -1077,6 +1078,8 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
1077
1078
  _EObjectName["TaskWorkflow"] = "TaskWorkflow";
1078
1079
  _EObjectName["TaskWorkflowGroup"] = "TaskWorkflowGroup";
1079
1080
  _EObjectName["TaskWorkflowLog"] = "TaskWorkflowLog";
1081
+ _EObjectName["TaskWorkflowLogDetail"] = "TaskWorkflowLogDetail";
1082
+ _EObjectName["TaskWorkflowLogNodeDetail"] = "TaskWorkflowLogNodeDetail";
1080
1083
  _EObjectName["TaskWorkflowNodeInstagram"] = "TaskWorkflowNodeInstagram";
1081
1084
  _EObjectName["TaskWorkflowNodeThreads"] = "TaskWorkflowNodeThreads";
1082
1085
  _EObjectName["ReportManager"] = "ReportManager";
package/dist/index.mjs CHANGED
@@ -198,6 +198,7 @@ var CONST_API_CONTROLLERS = {
198
198
  WORKFLOW: {
199
199
  TASK_WORKFLOW: "task-workflow",
200
200
  TASK_WORKFLOW_GROUP: "task-workflow-group",
201
+ TASK_WORKFLOW_LOG: "task-workflow-log",
201
202
  TASK_WORKFLOW_NODE_INSTAGRAM: "task-workflow-node-instagram",
202
203
  TASK_WORKFLOW_NODE_THREADS: "task-workflow-node-threads"
203
204
  }
@@ -825,6 +826,8 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
825
826
  _EObjectName["TaskWorkflow"] = "TaskWorkflow";
826
827
  _EObjectName["TaskWorkflowGroup"] = "TaskWorkflowGroup";
827
828
  _EObjectName["TaskWorkflowLog"] = "TaskWorkflowLog";
829
+ _EObjectName["TaskWorkflowLogDetail"] = "TaskWorkflowLogDetail";
830
+ _EObjectName["TaskWorkflowLogNodeDetail"] = "TaskWorkflowLogNodeDetail";
828
831
  _EObjectName["TaskWorkflowNodeInstagram"] = "TaskWorkflowNodeInstagram";
829
832
  _EObjectName["TaskWorkflowNodeThreads"] = "TaskWorkflowNodeThreads";
830
833
  _EObjectName["ReportManager"] = "ReportManager";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.124",
3
+ "version": "6.6.125",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",