@resolveio/server-lib 22.3.116 → 22.3.117
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/package.json
CHANGED
|
@@ -2494,7 +2494,10 @@ function buildResolveIORunnerQaWorkflowProbeScript() {
|
|
|
2494
2494
|
'}',
|
|
2495
2495
|
'function isShellOnlySummary(summary) {',
|
|
2496
2496
|
' const text = summary && summary.bodyTextSnippet || "";',
|
|
2497
|
-
'
|
|
2497
|
+
' if (!text) return true;',
|
|
2498
|
+
' if (summary && Number(summary.rowCount || 0) > 0) return false;',
|
|
2499
|
+
' if (/\\b(List|Detail|Edit|New|Filter|Search|Showing|records|CLASSIFICATION|STATUS|Entries Per Page|Dashboard|Report|Invoice|Asset|BOL)\\b/i.test(text)) return false;',
|
|
2500
|
+
' return /^(Home|MENU|Logout|\\u00A9|The All-in-One Software)\\b/i.test(text) && text.length < 350;',
|
|
2498
2501
|
'}',
|
|
2499
2502
|
'function freshAuthBootstrapProof() {',
|
|
2500
2503
|
' const proof = readJson(authBootstrapResultPath);',
|