Bluesky app fork with some witchin' additions 💫

add `quoteCount` to view creators (#4972)

authored by hailey.at and committed by

GitHub 9f1c4113 85d70fe3

+7 -5
+1 -1
package.json
··· 52 52 "open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web" 53 53 }, 54 54 "dependencies": { 55 - "@atproto/api": "0.13.2", 55 + "@atproto/api": "0.13.3", 56 56 "@bam.tech/react-native-image-resizer": "^3.0.4", 57 57 "@braintree/sanitize-url": "^6.0.2", 58 58 "@discord/bottom-sheet": "bluesky-social/react-native-bottom-sheet",
+1
src/state/queries/postgate/util.ts
··· 106 106 replyCount: post.replyCount, 107 107 repostCount: post.repostCount, 108 108 likeCount: post.likeCount, 109 + quoteCount: post.quoteCount, 109 110 indexedAt: post.indexedAt, 110 111 } 111 112 }
+1
src/state/queries/util.ts
··· 74 74 labels: v.labels, 75 75 embed: v.embeds?.[0], 76 76 likeCount: v.likeCount, 77 + quoteCount: v.quoteCount, 77 78 replyCount: v.replyCount, 78 79 repostCount: v.repostCount, 79 80 }
+4 -4
yarn.lock
··· 72 72 resolved "https://registry.yarnpkg.com/@atproto-labs/simple-store/-/simple-store-0.1.1.tgz#e743a2722b5d8732166f0a72aca8bd10e9bff106" 73 73 integrity sha512-WKILW2b3QbAYKh+w5U2x6p5FqqLl0nAeLwGeDY+KjX01K4Dq3vQTR9b/qNp0jZm48CabPQVrqCv0PPU9LgRRRg== 74 74 75 - "@atproto/api@0.13.2": 76 - version "0.13.2" 77 - resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.13.2.tgz#392c7e37d03f28a9d3bc53b003f2d90cea4f1863" 78 - integrity sha512-AkCr+GbSJu+TSJzML/Ggh7CC61TKi4cQEOGmFHeI/0x9sa110UAAWHHRKom2vV09+cW5p/FMAtWvA05YR+v4jw== 75 + "@atproto/api@0.13.3": 76 + version "0.13.3" 77 + resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.13.3.tgz#d84f2a0e25f38cca59b69d178901634f2d20b4ff" 78 + integrity sha512-/PEVTTEQXICOjZCujAPsjArhwR0tR3LiF0SxxpZlWOjaqjVbqnBI/j0MNmddBFgeljC4/DcBobcDJ9HkILn4yQ== 79 79 dependencies: 80 80 "@atproto/common-web" "^0.3.0" 81 81 "@atproto/lexicon" "^0.4.1"