···3131// limit: The number of records to return.
3232// repo: The handle or DID of the repo.
3333// reverse: Flag to reverse the order of the returned records.
3434-// rkeyEnd: DEPRECATED: The highest sort-ordered rkey to stop at (exclusive)
3535-// rkeyStart: DEPRECATED: The lowest sort-ordered rkey to start from (exclusive)
3636-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) {
3434+func RepoListRecords(ctx context.Context, c *xrpc.Client, collection string, cursor string, limit int64, repo string, reverse bool) (*RepoListRecords_Output, error) {
3735 var out RepoListRecords_Output
38363937 params := map[string]interface{}{
···4240 "limit": limit,
4341 "repo": repo,
4442 "reverse": reverse,
4545- "rkeyEnd": rkeyEnd,
4646- "rkeyStart": rkeyStart,
4743 }
4844 if err := c.Do(ctx, xrpc.Query, "", "com.atproto.repo.listRecords", params, nil, &out); err != nil {
4945 return nil, err