https://github.com/bluesky-social/goat but with tangled's CI
10
fork

Configure Feed

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

lexgen (2025-04-06) (#1011)

Ran lexgen against the `atproto` repo today (2025-04-06). Need to do
this periodically as maintenance; also I thought some Ozone event
changes needed to be pulled in, but maybe not.

Made two manual changes:

- did not include the removal of deprecated event types on
`subscribeRepos` (handle, tombstone, etc). that will have a broad impact
on the `events/` package, which persists events to disk using those
types
- manually commented out a `_Profile` type in the ozone types. I think
this is related to an open union thing

authored by

bnewbold and committed by
GitHub
4d8d860b a9a4e4d9

+4 -4
+2 -2
lexicon.go
··· 242 242 // NOTE: much of this code is copied from runRecordList 243 243 cursor := "" 244 244 for { 245 - // collection string, cursor string, limit int64, repo string, reverse bool, rkeyEnd string, rkeyStart string 246 - resp, err := agnostic.RepoListRecords(ctx, &xrpcc, "com.atproto.lexicon.schema", cursor, 100, ident.DID.String(), false, "", "") 245 + // collection string, cursor string, limit int64, repo string, reverse bool 246 + resp, err := agnostic.RepoListRecords(ctx, &xrpcc, "com.atproto.lexicon.schema", cursor, 100, ident.DID.String(), false) 247 247 if err != nil { 248 248 return err 249 249 }
+2 -2
record.go
··· 179 179 for _, nsid := range collections { 180 180 cursor := "" 181 181 for { 182 - // collection string, cursor string, limit int64, repo string, reverse bool, rkeyEnd string, rkeyStart string 183 - resp, err := agnostic.RepoListRecords(ctx, &xrpcc, nsid, cursor, 100, ident.DID.String(), false, "", "") 182 + // collection string, cursor string, limit int64, repo string, reverse bool 183 + resp, err := agnostic.RepoListRecords(ctx, &xrpcc, nsid, cursor, 100, ident.DID.String(), false) 184 184 if err != nil { 185 185 return err 186 186 }