···7272// path: Path to the file within the repository
7373// raw: Return raw file content instead of JSON response
7474// ref: Git reference (branch, tag, or commit SHA)
7575-// repo: Repository identifier in format 'did:plc:.../repoName'
7575+// repo: DID of the repository
7676func RepoBlob(ctx context.Context, c util.LexClient, path string, raw bool, ref string, repo string) (*RepoBlob_Output, error) {
7777 var out RepoBlob_Output
7878
+1-1
api/tangled/tempanalyzeMerge.go
···3434//
3535// branch: Target branch to merge into
3636// patch: Patch or pull request to check for merge conflicts
3737-// repo: AT-URI of the repository
3737+// repo: DID of the repository
3838func GitTempAnalyzeMerge(ctx context.Context, c util.LexClient, branch string, patch string, repo string) (*GitTempAnalyzeMerge_Output, error) {
3939 var out GitTempAnalyzeMerge_Output
4040
+1-1
api/tangled/tempgetArchive.go
···2020// format: Archive format
2121// prefix: Prefix for files in the archive
2222// ref: Git reference (branch, tag, or commit SHA)
2323-// repo: AT-URI of the repository
2323+// repo: DID of the repository
2424func GitTempGetArchive(ctx context.Context, c util.LexClient, format string, prefix string, ref string, repo string) ([]byte, error) {
2525 buf := new(bytes.Buffer)
2626
+1-1
api/tangled/tempgetBlob.go
···1919//
2020// path: Path within the repository tree
2121// ref: Git reference (branch, tag, or commit SHA)
2222-// repo: AT-URI of the repository
2222+// repo: DID of the repository
2323func GitTempGetBlob(ctx context.Context, c util.LexClient, path string, ref string, repo string) ([]byte, error) {
2424 buf := new(bytes.Buffer)
2525
+1-1
api/tangled/tempgetBranch.go
···3030// GitTempGetBranch calls the XRPC method "sh.tangled.git.temp.getBranch".
3131//
3232// name: Branch name to get information for
3333-// repo: AT-URI of the repository
3333+// repo: DID of the repository
3434func GitTempGetBranch(ctx context.Context, c util.LexClient, name string, repo string) (*GitTempGetBranch_Output, error) {
3535 var out GitTempGetBranch_Output
3636
+1-1
api/tangled/tempgetCommit.go
···1717// GitTempGetCommit calls the XRPC method "sh.tangled.git.temp.getCommit".
1818//
1919// ref: reference name to resolve
2020-// repo: AT-URI of the repository
2020+// repo: DID of the repository
2121func GitTempGetCommit(ctx context.Context, c util.LexClient, ref string, repo string) (*GitTempDefs_Commit, error) {
2222 var out GitTempDefs_Commit
2323
+1-1
api/tangled/tempgetDiff.go
···17171818// GitTempGetDiff calls the XRPC method "sh.tangled.git.temp.getDiff".
1919//
2020-// repo: AT-URI of the repository
2020+// repo: DID of the repository
2121// rev1: First revision (commit, branch, or tag)
2222// rev2: Second revision (commit, branch, or tag)
2323func GitTempGetDiff(ctx context.Context, c util.LexClient, repo string, rev1 string, rev2 string) ([]byte, error) {
+1-1
api/tangled/tempgetEntity.go
···1818//
1919// path: path of the entity
2020// ref: Git reference (branch, tag, or commit SHA)
2121-// repo: AT-URI of the repository
2121+// repo: DID of the repository
2222func GitTempGetEntity(ctx context.Context, c util.LexClient, path string, ref string, repo string) (*GitTempDefs_Blob, error) {
2323 var out GitTempDefs_Blob
2424
+1-1
api/tangled/tempgetHead.go
···16161717// GitTempGetHead calls the XRPC method "sh.tangled.git.temp.getHead".
1818//
1919-// repo: AT-URI of the repository
1919+// repo: DID of the repository
2020func GitTempGetHead(ctx context.Context, c util.LexClient, repo string) (*GitTempDefs_Branch, error) {
2121 var out GitTempDefs_Branch
2222
+1-1
api/tangled/tempgetTag.go
···17171818// GitTempGetTag calls the XRPC method "sh.tangled.git.temp.getTag".
1919//
2020-// repo: AT-URI of the repository
2020+// repo: DID of the repository
2121// tag: Name of tag, such as v1.3.0
2222func GitTempGetTag(ctx context.Context, c util.LexClient, repo string, tag string) ([]byte, error) {
2323 buf := new(bytes.Buffer)
+1-1
api/tangled/tempgetTree.go
···7272//
7373// path: Path within the repository tree
7474// ref: Git reference (branch, tag, or commit SHA)
7575-// repo: AT-URI of the repository
7575+// repo: DID of the repository
7676func GitTempGetTree(ctx context.Context, c util.LexClient, path string, ref string, repo string) (*GitTempGetTree_Output, error) {
7777 var out GitTempGetTree_Output
7878
+1-1
api/tangled/templistBranches.go
···1919//
2020// cursor: Pagination cursor
2121// limit: Maximum number of branches to return
2222-// repo: AT-URI of the repository
2222+// repo: DID of the repository
2323func GitTempListBranches(ctx context.Context, c util.LexClient, cursor string, limit int64, repo string) ([]byte, error) {
2424 buf := new(bytes.Buffer)
2525
+1-1
api/tangled/templistCommits.go
···2020// cursor: Pagination cursor (commit SHA)
2121// limit: Maximum number of commits to return
2222// ref: Git reference (branch, tag, or commit SHA)
2323-// repo: AT-URI of the repository
2323+// repo: DID of the repository
2424func GitTempListCommits(ctx context.Context, c util.LexClient, cursor string, limit int64, ref string, repo string) ([]byte, error) {
2525 buf := new(bytes.Buffer)
2626
+1-1
api/tangled/templistLanguages.go
···4444// GitTempListLanguages calls the XRPC method "sh.tangled.git.temp.listLanguages".
4545//
4646// ref: Git reference (branch, tag, or commit SHA)
4747-// repo: AT-URI of the repository
4747+// repo: DID of the repository
4848func GitTempListLanguages(ctx context.Context, c util.LexClient, ref string, repo string) (*GitTempListLanguages_Output, error) {
4949 var out GitTempListLanguages_Output
5050
+1-1
api/tangled/templistTags.go
···1919//
2020// cursor: Pagination cursor
2121// limit: Maximum number of tags to return
2222-// repo: AT-URI of the repository
2222+// repo: DID of the repository
2323func GitTempListTags(ctx context.Context, c util.LexClient, cursor string, limit int64, repo string) ([]byte, error) {
2424 buf := new(bytes.Buffer)
2525