automation-lib 6.6.134 → 6.6.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/commit.bat +5 -5
- package/dist/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
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
|
-
|
|
10
|
+
timeout /t 2 /nobreak >nul
|
|
11
11
|
|
|
12
12
|
:: Push changes to the 'main' branch of the 'cp' remote
|
|
13
|
-
git pull
|
|
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
|
-
|
|
44
|
+
timeout /t 1 /nobreak >nul
|
|
45
45
|
git commit -m "%commit_message%"
|
|
46
|
-
|
|
46
|
+
timeout /t 2 /nobreak >nul
|
|
47
47
|
|
|
48
|
-
git push
|
|
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
|
};
|
|
@@ -479,6 +480,7 @@ declare enum EObjectName {
|
|
|
479
480
|
AccountAIModelContent = "AccountAIModelContent",
|
|
480
481
|
AccountAIModelImageVideo = "AccountAIModelImageVideo",
|
|
481
482
|
AccountAIModelVoice = "AccountAIModelVoice",
|
|
483
|
+
AccountAIContent = "AccountAIContent",
|
|
482
484
|
AccountEmail = "AccountEmail",
|
|
483
485
|
AccountEmailTag = "AccountEmailTag",
|
|
484
486
|
AccountEmailProxy = "AccountEmailProxy",
|
|
@@ -649,6 +651,8 @@ declare enum EObjectName {
|
|
|
649
651
|
TaskWorkflow = "TaskWorkflow",
|
|
650
652
|
TaskWorkflowGroup = "TaskWorkflowGroup",
|
|
651
653
|
TaskWorkflowLog = "TaskWorkflowLog",
|
|
654
|
+
TaskWorkflowLogDetail = "TaskWorkflowLogDetail",
|
|
655
|
+
TaskWorkflowLogNodeDetail = "TaskWorkflowLogNodeDetail",
|
|
652
656
|
TaskWorkflowNodeInstagram = "TaskWorkflowNodeInstagram",
|
|
653
657
|
TaskWorkflowNodeThreads = "TaskWorkflowNodeThreads",
|
|
654
658
|
ReportManager = "ReportManager"
|
|
@@ -4022,6 +4026,7 @@ interface IAccountAIContentChannel extends IBaseModel, ITrackingModel {
|
|
|
4022
4026
|
status: EAccountAIContentChannelStatus;
|
|
4023
4027
|
timeStatusChange: Date;
|
|
4024
4028
|
note: string;
|
|
4029
|
+
isAddedAccountAIContent: boolean;
|
|
4025
4030
|
}
|
|
4026
4031
|
|
|
4027
4032
|
interface IAccountAIContent extends IBaseModel, ITrackingModel {
|
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
|
};
|
|
@@ -479,6 +480,7 @@ declare enum EObjectName {
|
|
|
479
480
|
AccountAIModelContent = "AccountAIModelContent",
|
|
480
481
|
AccountAIModelImageVideo = "AccountAIModelImageVideo",
|
|
481
482
|
AccountAIModelVoice = "AccountAIModelVoice",
|
|
483
|
+
AccountAIContent = "AccountAIContent",
|
|
482
484
|
AccountEmail = "AccountEmail",
|
|
483
485
|
AccountEmailTag = "AccountEmailTag",
|
|
484
486
|
AccountEmailProxy = "AccountEmailProxy",
|
|
@@ -649,6 +651,8 @@ declare enum EObjectName {
|
|
|
649
651
|
TaskWorkflow = "TaskWorkflow",
|
|
650
652
|
TaskWorkflowGroup = "TaskWorkflowGroup",
|
|
651
653
|
TaskWorkflowLog = "TaskWorkflowLog",
|
|
654
|
+
TaskWorkflowLogDetail = "TaskWorkflowLogDetail",
|
|
655
|
+
TaskWorkflowLogNodeDetail = "TaskWorkflowLogNodeDetail",
|
|
652
656
|
TaskWorkflowNodeInstagram = "TaskWorkflowNodeInstagram",
|
|
653
657
|
TaskWorkflowNodeThreads = "TaskWorkflowNodeThreads",
|
|
654
658
|
ReportManager = "ReportManager"
|
|
@@ -4022,6 +4026,7 @@ interface IAccountAIContentChannel extends IBaseModel, ITrackingModel {
|
|
|
4022
4026
|
status: EAccountAIContentChannelStatus;
|
|
4023
4027
|
timeStatusChange: Date;
|
|
4024
4028
|
note: string;
|
|
4029
|
+
isAddedAccountAIContent: boolean;
|
|
4025
4030
|
}
|
|
4026
4031
|
|
|
4027
4032
|
interface IAccountAIContent extends IBaseModel, ITrackingModel {
|
package/dist/index.js
CHANGED
|
@@ -452,6 +452,7 @@ var CONST_API_CONTROLLERS = {
|
|
|
452
452
|
WORKFLOW: {
|
|
453
453
|
TASK_WORKFLOW: "task-workflow",
|
|
454
454
|
TASK_WORKFLOW_GROUP: "task-workflow-group",
|
|
455
|
+
TASK_WORKFLOW_LOG: "task-workflow-log",
|
|
455
456
|
TASK_WORKFLOW_NODE_INSTAGRAM: "task-workflow-node-instagram",
|
|
456
457
|
TASK_WORKFLOW_NODE_THREADS: "task-workflow-node-threads"
|
|
457
458
|
}
|
|
@@ -909,6 +910,7 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
|
|
|
909
910
|
_EObjectName["AccountAIModelContent"] = "AccountAIModelContent";
|
|
910
911
|
_EObjectName["AccountAIModelImageVideo"] = "AccountAIModelImageVideo";
|
|
911
912
|
_EObjectName["AccountAIModelVoice"] = "AccountAIModelVoice";
|
|
913
|
+
_EObjectName["AccountAIContent"] = "AccountAIContent";
|
|
912
914
|
_EObjectName["AccountEmail"] = "AccountEmail";
|
|
913
915
|
_EObjectName["AccountEmailTag"] = "AccountEmailTag";
|
|
914
916
|
_EObjectName["AccountEmailProxy"] = "AccountEmailProxy";
|
|
@@ -1079,6 +1081,8 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
|
|
|
1079
1081
|
_EObjectName["TaskWorkflow"] = "TaskWorkflow";
|
|
1080
1082
|
_EObjectName["TaskWorkflowGroup"] = "TaskWorkflowGroup";
|
|
1081
1083
|
_EObjectName["TaskWorkflowLog"] = "TaskWorkflowLog";
|
|
1084
|
+
_EObjectName["TaskWorkflowLogDetail"] = "TaskWorkflowLogDetail";
|
|
1085
|
+
_EObjectName["TaskWorkflowLogNodeDetail"] = "TaskWorkflowLogNodeDetail";
|
|
1082
1086
|
_EObjectName["TaskWorkflowNodeInstagram"] = "TaskWorkflowNodeInstagram";
|
|
1083
1087
|
_EObjectName["TaskWorkflowNodeThreads"] = "TaskWorkflowNodeThreads";
|
|
1084
1088
|
_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
|
}
|
|
@@ -655,6 +656,7 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
|
|
|
655
656
|
_EObjectName["AccountAIModelContent"] = "AccountAIModelContent";
|
|
656
657
|
_EObjectName["AccountAIModelImageVideo"] = "AccountAIModelImageVideo";
|
|
657
658
|
_EObjectName["AccountAIModelVoice"] = "AccountAIModelVoice";
|
|
659
|
+
_EObjectName["AccountAIContent"] = "AccountAIContent";
|
|
658
660
|
_EObjectName["AccountEmail"] = "AccountEmail";
|
|
659
661
|
_EObjectName["AccountEmailTag"] = "AccountEmailTag";
|
|
660
662
|
_EObjectName["AccountEmailProxy"] = "AccountEmailProxy";
|
|
@@ -825,6 +827,8 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
|
|
|
825
827
|
_EObjectName["TaskWorkflow"] = "TaskWorkflow";
|
|
826
828
|
_EObjectName["TaskWorkflowGroup"] = "TaskWorkflowGroup";
|
|
827
829
|
_EObjectName["TaskWorkflowLog"] = "TaskWorkflowLog";
|
|
830
|
+
_EObjectName["TaskWorkflowLogDetail"] = "TaskWorkflowLogDetail";
|
|
831
|
+
_EObjectName["TaskWorkflowLogNodeDetail"] = "TaskWorkflowLogNodeDetail";
|
|
828
832
|
_EObjectName["TaskWorkflowNodeInstagram"] = "TaskWorkflowNodeInstagram";
|
|
829
833
|
_EObjectName["TaskWorkflowNodeThreads"] = "TaskWorkflowNodeThreads";
|
|
830
834
|
_EObjectName["ReportManager"] = "ReportManager";
|