proposal-hints-create-context.mjs
21 lines 1.0 KB
Raw
sha256:c2dbf04d56308f3bbf2d06e6d2eb022b8948b1e827195fe525a44e5e18d5f9c0 feat(auth): Phase B Connect cloud agent (RFC 8628) + Hermes… Human minor ⚠ breaking 12 days ago
1 /**
2 * Build { path, body } for hosted review-hints after POST /proposals.
3 * The canister create response often omits `body`; the client request (bodyOut) still has it.
4 * Passing non-empty body lets proposal-review-hints-async skip a canister GET (saves ~1–3s+).
5 */
6
7 /**
8 * @param {unknown} j - parsed JSON from canister POST /proposals response
9 * @param {unknown} bodyOut - outgoing request body object (after augment), same shape sent to canister
10 * @returns {{ path: string, body: string } | null}
11 */
12 export function proposalDataForHostedReviewHintsFromCreate(j, bodyOut) {
13 if (!j || typeof j !== 'object' || typeof j.proposal_id !== 'string') return null;
14 let mergedBody = j.body != null && String(j.body).length > 0 ? String(j.body) : '';
15 if (!mergedBody && bodyOut && typeof bodyOut === 'object' && !Buffer.isBuffer(bodyOut)) {
16 const b = /** @type {Record<string, unknown>} */ (bodyOut).body;
17 if (b != null) mergedBody = String(b);
18 }
19 const pathStr = j.path != null ? String(j.path) : '';
20 return { path: pathStr, body: mergedBody };
21 }
File History 1 commit
sha256:93bcf8f9bd56d8c5b9339f4ec73b9ebd66571398d56262d38eedc2cfa9db9882 fix(test): align Band B landing assertion with desktop MCP … Human 12 days ago