this repo has no description
0
fork

Configure Feed

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

update api/agnostic version of com.atproto.repo.listRecords

+1 -5
+1 -5
api/agnostic/repolistRecords.go
··· 31 31 // limit: The number of records to return. 32 32 // repo: The handle or DID of the repo. 33 33 // reverse: Flag to reverse the order of the returned records. 34 - // rkeyEnd: DEPRECATED: The highest sort-ordered rkey to stop at (exclusive) 35 - // rkeyStart: DEPRECATED: The lowest sort-ordered rkey to start from (exclusive) 36 - func RepoListRecords(ctx context.Context, c *xrpc.Client, collection string, cursor string, limit int64, repo string, reverse bool, rkeyEnd string, rkeyStart string) (*RepoListRecords_Output, error) { 34 + func RepoListRecords(ctx context.Context, c *xrpc.Client, collection string, cursor string, limit int64, repo string, reverse bool) (*RepoListRecords_Output, error) { 37 35 var out RepoListRecords_Output 38 36 39 37 params := map[string]interface{}{ ··· 42 40 "limit": limit, 43 41 "repo": repo, 44 42 "reverse": reverse, 45 - "rkeyEnd": rkeyEnd, 46 - "rkeyStart": rkeyStart, 47 43 } 48 44 if err := c.Do(ctx, xrpc.Query, "", "com.atproto.repo.listRecords", params, nil, &out); err != nil { 49 45 return nil, err