@resolveio/server-lib 22.3.105 → 22.3.107

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/server-lib",
3
- "version": "22.3.105",
3
+ "version": "22.3.107",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "package": "./build_package.sh",
@@ -2109,6 +2109,20 @@ function buildResolveIORunnerQaWorkflowProbeScript() {
2109
2109
  'function delay(ms) { return new Promise((resolve) => setTimeout(resolve, ms)); }',
2110
2110
  'function writeJson(filePath, payload) { fs.mkdirSync(path.dirname(filePath), { recursive: true }); fs.writeFileSync(filePath, JSON.stringify(payload, null, 2)); }',
2111
2111
  'function readJson(filePath) { try { return JSON.parse(fs.readFileSync(filePath, "utf8")); } catch (error) { return null; } }',
2112
+ 'function readSeedHintText() {',
2113
+ ' const repoRoot = path.dirname(projectRoot);',
2114
+ ' const chunks = [process.env.RESOLVEIO_QA_SEED_HINTS || "", process.env.RESOLVEIO_SUPPORT_QA_SEED_HINTS || "", process.env.RESOLVEIO_RUNNER_QA_SEED_HINTS || ""];',
2115
+ ' const candidates = [',
2116
+ ' path.join(repoRoot, ".resolveio-support-context", "manual-ticket.request.txt"),',
2117
+ ' path.join(projectRoot, ".resolveio-support-context", "manual-ticket.request.txt"),',
2118
+ ' path.join(repoRoot, ".resolveio-context", "manual-ticket.request.txt"),',
2119
+ ' path.join(projectRoot, ".resolveio-context", "manual-ticket.request.txt")',
2120
+ ' ];',
2121
+ ' for (const candidate of candidates) {',
2122
+ ' try { chunks.push(fs.readFileSync(candidate, "utf8")); } catch (error) {}',
2123
+ ' }',
2124
+ ' return chunks.filter(Boolean).join("\\n");',
2125
+ '}',
2112
2126
  'function normalizeRoute(candidate) {',
2113
2127
  ' const value = String(candidate || "").trim();',
2114
2128
  ' if (!value) return "";',