@xuda.io/xuda-studio-checker 1.0.37 → 1.0.39
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/index.mjs +2 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -2237,7 +2237,7 @@ const check_prog_triggers = function (doc, workflow, source_type, source_id, sou
|
|
|
2237
2237
|
});
|
|
2238
2238
|
} else {
|
|
2239
2239
|
if (_conf.cpi_methods[_api_method].private) {
|
|
2240
|
-
|
|
2240
|
+
ret.push({
|
|
2241
2241
|
code: 'CHK_MSG_PRG_TRG_384',
|
|
2242
2242
|
data: `api method ${_api_method} is private in ${source_type} "${source_name}" trigger`,
|
|
2243
2243
|
type: err_type,
|
|
@@ -2246,6 +2246,7 @@ const check_prog_triggers = function (doc, workflow, source_type, source_id, sou
|
|
|
2246
2246
|
source_id,
|
|
2247
2247
|
id: `${doc._id}-${source_id}-${trigger_item.id}`,
|
|
2248
2248
|
});
|
|
2249
|
+
continue;
|
|
2249
2250
|
}
|
|
2250
2251
|
if (_conf.cpi_methods[_api_method].fields) {
|
|
2251
2252
|
for (let [key, val] of Object.entries(_conf.cpi_methods[_api_method].fields)) {
|