Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

bump api, remove `as number` from types (#3580)

* bump api, remove `as number` from types

* bump dev env

authored by

Hailey and committed by
GitHub
45e572b2 38074854

+32 -33
+2 -2
package.json
··· 50 50 "open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web" 51 51 }, 52 52 "dependencies": { 53 - "@atproto/api": "^0.12.2", 53 + "@atproto/api": "^0.12.3", 54 54 "@bam.tech/react-native-image-resizer": "^3.0.4", 55 55 "@braintree/sanitize-url": "^6.0.2", 56 56 "@discord/bottom-sheet": "https://github.com/bluesky-social/react-native-bottom-sheet.git#discord-fork-4.6.1", ··· 191 191 "zod": "^3.20.2" 192 192 }, 193 193 "devDependencies": { 194 - "@atproto/dev-env": "^0.3.4", 194 + "@atproto/dev-env": "^0.3.5", 195 195 "@babel/core": "^7.23.2", 196 196 "@babel/preset-env": "^7.20.0", 197 197 "@babel/runtime": "^7.20.0",
+3 -4
src/state/queries/util.ts
··· 54 54 indexedAt: v.indexedAt, 55 55 labels: v.labels, 56 56 embed: v.embeds?.[0], 57 - // TODO we can remove the `as` once we update @atproto/api 58 - likeCount: v.likeCount as number | undefined, 59 - replyCount: v.replyCount as number | undefined, 60 - repostCount: v.repostCount as number | undefined, 57 + likeCount: v.likeCount, 58 + replyCount: v.replyCount, 59 + repostCount: v.repostCount, 61 60 } 62 61 }
+27 -27
yarn.lock
··· 34 34 jsonpointer "^5.0.0" 35 35 leven "^3.1.0" 36 36 37 - "@atproto/api@^0.12.2": 38 - version "0.12.2" 39 - resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.2.tgz#5df6d4f60dea0395c84fdebd9e81a7e853edf130" 40 - integrity sha512-UVzCiDZH2j0wrr/O8nb1edD5cYLVqB5iujueXUCbHS3rAwIxgmyLtA3Hzm2QYsGPo/+xsIg1fNvpq9rNT6KWUA== 37 + "@atproto/api@^0.12.3": 38 + version "0.12.3" 39 + resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.3.tgz#5b7b1c7d4210ee9315961504900c8409395cbb17" 40 + integrity sha512-y/kGpIEo+mKGQ7VOphpqCAigTI0LZRmDThNChTfSzDKm9TzEobwiw0zUID0Yw6ot1iLLFx3nKURmuZAYlEuobw== 41 41 dependencies: 42 42 "@atproto/common-web" "^0.3.0" 43 43 "@atproto/lexicon" "^0.4.0" ··· 63 63 multiformats "^9.9.0" 64 64 uint8arrays "3.0.0" 65 65 66 - "@atproto/bsky@^0.0.44": 67 - version "0.0.44" 68 - resolved "https://registry.yarnpkg.com/@atproto/bsky/-/bsky-0.0.44.tgz#990d6061d557cdf891d43656543ebb611f57bd82" 69 - integrity sha512-SVOnvdUlDf9sKI1Tto+IY1tVS4/9VRoTTiI08ezvK9sew9sQVUVurwYI5E3EtAbEi3ukBPZ9+Cuoh3Me65iyjQ== 66 + "@atproto/bsky@^0.0.45": 67 + version "0.0.45" 68 + resolved "https://registry.yarnpkg.com/@atproto/bsky/-/bsky-0.0.45.tgz#c3083d8038fe8c5ff921d9bcb0b5a043cc840827" 69 + integrity sha512-osWeigdYzQH2vZki+eszCR8ta9zdUB4om79aFmnE+zvxw7HFduwAAbcHf6kmmiLCfaOWvCsYb1wS2i3IC66TAg== 70 70 dependencies: 71 - "@atproto/api" "^0.12.2" 71 + "@atproto/api" "^0.12.3" 72 72 "@atproto/common" "^0.4.0" 73 73 "@atproto/crypto" "^0.4.0" 74 74 "@atproto/identity" "^0.4.0" ··· 177 177 "@noble/hashes" "^1.3.1" 178 178 uint8arrays "3.0.0" 179 179 180 - "@atproto/dev-env@^0.3.4": 181 - version "0.3.4" 182 - resolved "https://registry.yarnpkg.com/@atproto/dev-env/-/dev-env-0.3.4.tgz#153b7be8268b2dcfc8d0ba4abc5fd60ad7a6e241" 183 - integrity sha512-ix33GBQ1hjesoieTQKx38VGxZWNKeXCnaMdalr0/SAFwaDPCqMOrvUTPCx8VWClgAd0qYMcBM98+0lBTohW1qQ== 180 + "@atproto/dev-env@^0.3.5": 181 + version "0.3.5" 182 + resolved "https://registry.yarnpkg.com/@atproto/dev-env/-/dev-env-0.3.5.tgz#cd13313dbc52131731d039a1d22808ee8193505d" 183 + integrity sha512-dqRNihzX1xIHbWPHmfYsliUUXyZn5FFhCeButrGie5soQmHA4okQJTB1XWDly3mdHLjUM90g+5zjRSAKoui77Q== 184 184 dependencies: 185 - "@atproto/api" "^0.12.2" 186 - "@atproto/bsky" "^0.0.44" 185 + "@atproto/api" "^0.12.3" 186 + "@atproto/bsky" "^0.0.45" 187 187 "@atproto/bsync" "^0.0.3" 188 188 "@atproto/common-web" "^0.3.0" 189 189 "@atproto/crypto" "^0.4.0" 190 190 "@atproto/identity" "^0.4.0" 191 191 "@atproto/lexicon" "^0.4.0" 192 - "@atproto/ozone" "^0.1.6" 193 - "@atproto/pds" "^0.4.13" 192 + "@atproto/ozone" "^0.1.7" 193 + "@atproto/pds" "^0.4.14" 194 194 "@atproto/syntax" "^0.3.0" 195 195 "@atproto/xrpc-server" "^0.5.1" 196 196 "@did-plc/lib" "^0.0.1" ··· 222 222 multiformats "^9.9.0" 223 223 zod "^3.21.4" 224 224 225 - "@atproto/ozone@^0.1.6": 226 - version "0.1.6" 227 - resolved "https://registry.yarnpkg.com/@atproto/ozone/-/ozone-0.1.6.tgz#b54c68360af19bfe6914d74b58759df0729461de" 228 - integrity sha512-uAXhXdO75vU/VVGGrsifZfaq6h7cMbEdS3bH8GCJfgwtxOlCU0elV2YM88GHBfVGJ0ghYKNki+Dhvpe8i+Fe1Q== 225 + "@atproto/ozone@^0.1.7": 226 + version "0.1.7" 227 + resolved "https://registry.yarnpkg.com/@atproto/ozone/-/ozone-0.1.7.tgz#248d88e1acfe56936651754975472d03d047d689" 228 + integrity sha512-vvaV0MFynOzZJcL8m8mEW21o1FFIkP+wHTXEC9LJrL3h03+PMaby8Ujmif6WX5eikhfxvr9xsU/Jxbi/iValuQ== 229 229 dependencies: 230 - "@atproto/api" "^0.12.2" 230 + "@atproto/api" "^0.12.3" 231 231 "@atproto/common" "^0.4.0" 232 232 "@atproto/crypto" "^0.4.0" 233 233 "@atproto/identity" "^0.4.0" ··· 249 249 typed-emitter "^2.1.0" 250 250 uint8arrays "3.0.0" 251 251 252 - "@atproto/pds@^0.4.13": 253 - version "0.4.13" 254 - resolved "https://registry.yarnpkg.com/@atproto/pds/-/pds-0.4.13.tgz#9235d2c748d142a06d78da143ff1ad7e150b2d97" 255 - integrity sha512-86fmaSFBP1HML0U85bsYkd06oO6XFFA/+VpRMeABy7cUShvvlkVq8anxp301Qaf89t+AM/tvjICqQ2syW8bgfA== 252 + "@atproto/pds@^0.4.14": 253 + version "0.4.14" 254 + resolved "https://registry.yarnpkg.com/@atproto/pds/-/pds-0.4.14.tgz#5b55ef307323bda712f2ddaba5c1fff7740ed91b" 255 + integrity sha512-rqVcvtw5oMuuJIpWZbSSTSx19+JaZyUcg9OEjdlUmyEpToRN88zTEQySEksymrrLQkW/LPRyWGd7WthbGEuEfQ== 256 256 dependencies: 257 - "@atproto/api" "^0.12.2" 257 + "@atproto/api" "^0.12.3" 258 258 "@atproto/aws" "^0.2.0" 259 259 "@atproto/common" "^0.4.0" 260 260 "@atproto/crypto" "^0.4.0"