a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(lexicons): incorrectly inlined flag

Mary 1b665da0 cfbbc3e9

+1 -1
+1 -1
packages/lexicons/lexicons/lib/validations/index.ts
··· 1349 1349 doc += `if($val!==undefined||${esckey} in $in){`; 1350 1350 } 1351 1351 1352 - doc += `const $res=${id}$schema["~run"]($val,$flags);if($res!==undefined)if($res.ok)${key !== '__proto__' ? `($out??={...$in})[${esckey}]=$res.value` : `Object.defineProperty($out??={...$in},${esckey},{value:$res.value})`};else if((($iss=$joinIssues($iss,$prependPath(${esckey},$res))),$flags&FLAG_ABORT_EARLY))return $iss;}`; 1352 + doc += `const $res=${id}$schema["~run"]($val,$flags);if($res!==undefined)if($res.ok)${key !== '__proto__' ? `($out??={...$in})[${esckey}]=$res.value` : `Object.defineProperty($out??={...$in},${esckey},{value:$res.value})`};else if((($iss=$joinIssues($iss,$prependPath(${esckey},$res))),$flags&${FLAG_ABORT_EARLY}))return $iss;}`; 1353 1353 1354 1354 if (entry.optional) { 1355 1355 const schema = entry.schema as OptionalSchema;