automation-lib 6.3.10 → 6.3.12
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 +6 -3
- package/dist/index.d.ts +6 -3
- package/dist/index.js +6 -2
- package/dist/index.mjs +6 -2
- 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
|
@@ -82,6 +82,11 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
82
82
|
PC_PHONE_LOG: string;
|
|
83
83
|
PATTERN_CANVA_AVATAR: string;
|
|
84
84
|
PATTERN_CANVA_COVER_BACKGROUND: string;
|
|
85
|
+
ACCOUNT_VPS: string;
|
|
86
|
+
ACCOUNT_VPS_LIST_JOB: string;
|
|
87
|
+
ACCOUNT_VPS_GROUP: string;
|
|
88
|
+
ACCOUNT_VPN: string;
|
|
89
|
+
ACCOUNT_PROXY: string;
|
|
85
90
|
ACCOUNTS_VPN: string;
|
|
86
91
|
ACCOUNTS_CHPLAY_ICLOUD: string;
|
|
87
92
|
ACCOUNTS_CANVA: string;
|
|
@@ -137,8 +142,6 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
137
142
|
ACCOUNT_AI_CONTENT_GROUP: string;
|
|
138
143
|
ACCOUNT_AI_CONTENT_CHANNEL: string;
|
|
139
144
|
ACCOUNT_AI_CONTENT_TAG: string;
|
|
140
|
-
ACCOUNT_VPS: string;
|
|
141
|
-
ACCOUNT_VPS_GROUP: string;
|
|
142
145
|
EMAIL_RAW_MANAGER: string;
|
|
143
146
|
EMAIL_RAW_MANAGER_LOG: string;
|
|
144
147
|
};
|
|
@@ -474,6 +477,7 @@ declare enum EObjectName {
|
|
|
474
477
|
AccountsVPS = "AccountsVPS",
|
|
475
478
|
AccountsVPSSocial = "AccountsVPSSocial",
|
|
476
479
|
AccountsVPSChange = "AccountsVPSChange",
|
|
480
|
+
AccountsVPSListJob = "AccountsVPSListJob",
|
|
477
481
|
AccountsVPN = "AccountsVPN",
|
|
478
482
|
AccountsProxy = "AccountsProxy",
|
|
479
483
|
AccountsDrive = "AccountsDrive",
|
|
@@ -5112,7 +5116,6 @@ interface IAccountVPSGroup extends IBaseModel, ITrackingModel {
|
|
|
5112
5116
|
}
|
|
5113
5117
|
|
|
5114
5118
|
interface IAccountVPSListJob extends IBaseModel {
|
|
5115
|
-
accountVPS: string | IAccountVPS;
|
|
5116
5119
|
nameJob: string;
|
|
5117
5120
|
}
|
|
5118
5121
|
|
package/dist/index.d.ts
CHANGED
|
@@ -82,6 +82,11 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
82
82
|
PC_PHONE_LOG: string;
|
|
83
83
|
PATTERN_CANVA_AVATAR: string;
|
|
84
84
|
PATTERN_CANVA_COVER_BACKGROUND: string;
|
|
85
|
+
ACCOUNT_VPS: string;
|
|
86
|
+
ACCOUNT_VPS_LIST_JOB: string;
|
|
87
|
+
ACCOUNT_VPS_GROUP: string;
|
|
88
|
+
ACCOUNT_VPN: string;
|
|
89
|
+
ACCOUNT_PROXY: string;
|
|
85
90
|
ACCOUNTS_VPN: string;
|
|
86
91
|
ACCOUNTS_CHPLAY_ICLOUD: string;
|
|
87
92
|
ACCOUNTS_CANVA: string;
|
|
@@ -137,8 +142,6 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
137
142
|
ACCOUNT_AI_CONTENT_GROUP: string;
|
|
138
143
|
ACCOUNT_AI_CONTENT_CHANNEL: string;
|
|
139
144
|
ACCOUNT_AI_CONTENT_TAG: string;
|
|
140
|
-
ACCOUNT_VPS: string;
|
|
141
|
-
ACCOUNT_VPS_GROUP: string;
|
|
142
145
|
EMAIL_RAW_MANAGER: string;
|
|
143
146
|
EMAIL_RAW_MANAGER_LOG: string;
|
|
144
147
|
};
|
|
@@ -474,6 +477,7 @@ declare enum EObjectName {
|
|
|
474
477
|
AccountsVPS = "AccountsVPS",
|
|
475
478
|
AccountsVPSSocial = "AccountsVPSSocial",
|
|
476
479
|
AccountsVPSChange = "AccountsVPSChange",
|
|
480
|
+
AccountsVPSListJob = "AccountsVPSListJob",
|
|
477
481
|
AccountsVPN = "AccountsVPN",
|
|
478
482
|
AccountsProxy = "AccountsProxy",
|
|
479
483
|
AccountsDrive = "AccountsDrive",
|
|
@@ -5112,7 +5116,6 @@ interface IAccountVPSGroup extends IBaseModel, ITrackingModel {
|
|
|
5112
5116
|
}
|
|
5113
5117
|
|
|
5114
5118
|
interface IAccountVPSListJob extends IBaseModel {
|
|
5115
|
-
accountVPS: string | IAccountVPS;
|
|
5116
5119
|
nameJob: string;
|
|
5117
5120
|
}
|
|
5118
5121
|
|
package/dist/index.js
CHANGED
|
@@ -336,6 +336,11 @@ var CONST_API_CONTROLLERS = {
|
|
|
336
336
|
PC_PHONE_LOG: "pc-phone-log",
|
|
337
337
|
PATTERN_CANVA_AVATAR: "pattern-canva-avatar",
|
|
338
338
|
PATTERN_CANVA_COVER_BACKGROUND: "pattern-canva-cover-background",
|
|
339
|
+
ACCOUNT_VPS: "account-vps",
|
|
340
|
+
ACCOUNT_VPS_LIST_JOB: "account-vps-list-job",
|
|
341
|
+
ACCOUNT_VPS_GROUP: "account-vps-group",
|
|
342
|
+
ACCOUNT_VPN: "account-vpn",
|
|
343
|
+
ACCOUNT_PROXY: "account-proxy",
|
|
339
344
|
ACCOUNTS_VPN: "accounts-vpn",
|
|
340
345
|
ACCOUNTS_CHPLAY_ICLOUD: "accounts-chplay-icloud",
|
|
341
346
|
ACCOUNTS_CANVA: "accounts-canva",
|
|
@@ -391,8 +396,6 @@ var CONST_API_CONTROLLERS = {
|
|
|
391
396
|
ACCOUNT_AI_CONTENT_GROUP: "account-ai-content-group",
|
|
392
397
|
ACCOUNT_AI_CONTENT_CHANNEL: "account-ai-content-channel",
|
|
393
398
|
ACCOUNT_AI_CONTENT_TAG: "account-ai-content-tag",
|
|
394
|
-
ACCOUNT_VPS: "account-vps",
|
|
395
|
-
ACCOUNT_VPS_GROUP: "account-group",
|
|
396
399
|
EMAIL_RAW_MANAGER: "email-raw-manager",
|
|
397
400
|
EMAIL_RAW_MANAGER_LOG: "email-raw-manager-log"
|
|
398
401
|
},
|
|
@@ -878,6 +881,7 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
|
|
|
878
881
|
_EObjectName["AccountsVPS"] = "AccountsVPS";
|
|
879
882
|
_EObjectName["AccountsVPSSocial"] = "AccountsVPSSocial";
|
|
880
883
|
_EObjectName["AccountsVPSChange"] = "AccountsVPSChange";
|
|
884
|
+
_EObjectName["AccountsVPSListJob"] = "AccountsVPSListJob";
|
|
881
885
|
_EObjectName["AccountsVPN"] = "AccountsVPN";
|
|
882
886
|
_EObjectName["AccountsProxy"] = "AccountsProxy";
|
|
883
887
|
_EObjectName["AccountsDrive"] = "AccountsDrive";
|
package/dist/index.mjs
CHANGED
|
@@ -108,6 +108,11 @@ var CONST_API_CONTROLLERS = {
|
|
|
108
108
|
PC_PHONE_LOG: "pc-phone-log",
|
|
109
109
|
PATTERN_CANVA_AVATAR: "pattern-canva-avatar",
|
|
110
110
|
PATTERN_CANVA_COVER_BACKGROUND: "pattern-canva-cover-background",
|
|
111
|
+
ACCOUNT_VPS: "account-vps",
|
|
112
|
+
ACCOUNT_VPS_LIST_JOB: "account-vps-list-job",
|
|
113
|
+
ACCOUNT_VPS_GROUP: "account-vps-group",
|
|
114
|
+
ACCOUNT_VPN: "account-vpn",
|
|
115
|
+
ACCOUNT_PROXY: "account-proxy",
|
|
111
116
|
ACCOUNTS_VPN: "accounts-vpn",
|
|
112
117
|
ACCOUNTS_CHPLAY_ICLOUD: "accounts-chplay-icloud",
|
|
113
118
|
ACCOUNTS_CANVA: "accounts-canva",
|
|
@@ -163,8 +168,6 @@ var CONST_API_CONTROLLERS = {
|
|
|
163
168
|
ACCOUNT_AI_CONTENT_GROUP: "account-ai-content-group",
|
|
164
169
|
ACCOUNT_AI_CONTENT_CHANNEL: "account-ai-content-channel",
|
|
165
170
|
ACCOUNT_AI_CONTENT_TAG: "account-ai-content-tag",
|
|
166
|
-
ACCOUNT_VPS: "account-vps",
|
|
167
|
-
ACCOUNT_VPS_GROUP: "account-group",
|
|
168
171
|
EMAIL_RAW_MANAGER: "email-raw-manager",
|
|
169
172
|
EMAIL_RAW_MANAGER_LOG: "email-raw-manager-log"
|
|
170
173
|
},
|
|
@@ -650,6 +653,7 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
|
|
|
650
653
|
_EObjectName["AccountsVPS"] = "AccountsVPS";
|
|
651
654
|
_EObjectName["AccountsVPSSocial"] = "AccountsVPSSocial";
|
|
652
655
|
_EObjectName["AccountsVPSChange"] = "AccountsVPSChange";
|
|
656
|
+
_EObjectName["AccountsVPSListJob"] = "AccountsVPSListJob";
|
|
653
657
|
_EObjectName["AccountsVPN"] = "AccountsVPN";
|
|
654
658
|
_EObjectName["AccountsProxy"] = "AccountsProxy";
|
|
655
659
|
_EObjectName["AccountsDrive"] = "AccountsDrive";
|