prototypey.org - atproto lexicon typescript toolkit - mirror https://github.com/tylersayshi/prototypey
1
fork

Configure Feed

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

revert key ordering changes

authored by

JP Hastings-Spital and committed by
Tyler Lawson
9a1ca626 dbcc9bde

+3 -3
+2 -2
packages/prototypey/core/tests/from-json-infer.test.ts
··· 628 628 attest(lexicon["~infer"]).type.toString.snap(`{ 629 629 $type: "test.record" 630 630 published?: boolean | undefined 631 - title: string 632 631 content: string 632 + title: string 633 633 }`); 634 634 }); 635 635 ··· 1146 1146 | { 1147 1147 posts?: 1148 1148 | { 1149 + author: "[Circular reference detected: #user]" 1149 1150 title: string 1150 - author: "[Circular reference detected: #user]" 1151 1151 $type: "#post" 1152 1152 }[] 1153 1153 | undefined
+1 -1
packages/prototypey/core/tests/infer.test.ts
··· 510 510 attest(lexicon["~infer"]).type.toString.snap(`{ 511 511 $type: "test.record" 512 512 published?: boolean | undefined 513 + content: string 513 514 title: string 514 - content: string 515 515 }`); 516 516 }); 517 517