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

Configure Feed

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

chore: reformat

mary.my.id 003979b7 63d4d4a0

verified
+4 -14
+1 -6
packages/definitions/bluesky/CHANGELOG.md
··· 187 187 get them. 188 188 189 189 ```ts 190 - import type { 191 - InferInput, 192 - InferOutput, 193 - InferXRPCBodyInput, 194 - InferXRPCBodyOutput, 195 - } from '@atcute/lexicons'; 190 + import type { InferInput, InferOutput, InferXRPCBodyInput, InferXRPCBodyOutput } from '@atcute/lexicons'; 196 191 197 192 import type { AppBskyActorSearchActors } from '@atcute/bluesky'; 198 193
+1 -6
packages/definitions/ozone/CHANGELOG.md
··· 160 160 get them. 161 161 162 162 ```ts 163 - import type { 164 - InferInput, 165 - InferOutput, 166 - InferXRPCBodyInput, 167 - InferXRPCBodyOutput, 168 - } from '@atcute/lexicons'; 163 + import type { InferInput, InferOutput, InferXRPCBodyInput, InferXRPCBodyOutput } from '@atcute/lexicons'; 169 164 170 165 import type { AppBskyActorSearchActors } from '@atcute/bluesky'; 171 166
+2 -2
packages/utilities/cbor/lib/index.test.ts
··· 342 342 // manually craft CBOR with keys in wrong order: {"bb": 1, "a": 2} 343 343 // map with 2 items (0xa2), "bb" (0x62 0x62 0x62), 1 (0x01), "a" (0x61 0x61), 2 (0x02) 344 344 const malformedCbor = new Uint8Array([0xa2, 0x62, 0x62, 0x62, 0x01, 0x61, 0x61, 0x02]); 345 - 345 + 346 346 expect(() => decode(malformedCbor)).toThrow('map keys are not in canonical order or contain duplicates'); 347 347 }); 348 348 ··· 350 350 // manually craft CBOR with duplicate keys: {"a": 1, "a": 2} 351 351 // map with 2 items (0xa2), "a" (0x61 0x61), 1 (0x01), "a" (0x61 0x61), 2 (0x02) 352 352 const malformedCbor = new Uint8Array([0xa2, 0x61, 0x61, 0x01, 0x61, 0x61, 0x02]); 353 - 353 + 354 354 expect(() => decode(malformedCbor)).toThrow('map keys are not in canonical order or contain duplicates'); 355 355 }); 356 356