This repository has no description
0

Configure Feed

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

lexicons: `repo.getPullView`

Signed-off-by: Seongmin Lee <git@boltless.me>

author
Seongmin Lee
date (Aug 4, 2026, 4:33 PM +0300) commit 72effbb6 parent 18f4ae7f change-id wmktwmxs
+78
+50
lexicons/pulls/defs.json
··· 1 + { 2 + "lexicon": 1, 3 + "id": "sh.tangled.pull.defs", 4 + "defs": { 5 + "pullViewDetailed": { 6 + "type": "object", 7 + "required": ["uri", "cid", "author", "repo", "title", "targetBranch", "versions", "createdAt"], 8 + "properties": { 9 + "uri": { "type": "string", "format": "at-uri" }, 10 + "cid": { "type": "string", "format": "cid" }, 11 + "repo": { "type": "ref", "ref": "sh.tangled.repo.defs#repoViewBasic" }, 12 + "author": { "type": "ref", "ref": "sh.tangled.actor.defs#profileViewBasic" }, 13 + "title": { "type": "string" }, 14 + "body": { "type": "ref", "ref": "sh.tangled.temp.markup.markdown" }, 15 + "targetBranch": { "type": "string" }, 16 + "source": { 17 + "type": "object", 18 + "required": ["branch"], 19 + "properties": { 20 + "repo": { "type": "ref", "ref": "sh.tangled.repo.defs#repoViewBasic" }, 21 + "branch": { "type": "string" } 22 + } 23 + }, 24 + "versions": { 25 + "type": "array", 26 + "description": "TODO: this should be paginated maybe even as a separate `listPatches` method", 27 + "item": { 28 + "type": "ref", 29 + "ref": "#patchView" 30 + } 31 + }, 32 + "createdAt": { "type": "string", "format": "datetime" }, 33 + "viewer": { "type": "ref", "ref": "#viewerState" } 34 + } 35 + }, 36 + "patchView": { 37 + "type": "object", 38 + "required": ["head", "base", "createdAt"], 39 + "properties": { 40 + "head": { "type": "string" }, 41 + "base": { "type": "string" }, 42 + "createdAt": { "type": "string", "format": "datetime" } 43 + } 44 + }, 45 + "viewerState": { 46 + "type": "object", 47 + "properties": {} 48 + } 49 + } 50 + }
+26
lexicons/pulls/getPullView.json
··· 1 + { 2 + "lexicon": 1, 3 + "id": "sh.tangled.pull.getPullView", 4 + "defs": { 5 + "main": { 6 + "type": "query", 7 + "parameters": { 8 + "type": "params", 9 + "required": ["uri"], 10 + "properties": { 11 + "pull": { 12 + "type": "string", 13 + "format": "at-uri" 14 + } 15 + } 16 + }, 17 + "output": { 18 + "encoding": "application/json", 19 + "schema": { 20 + "type": "ref", 21 + "ref": "sh.tangled.pull.defs#pullViewDetailed" 22 + } 23 + } 24 + } 25 + } 26 + }
+2
lexicons/repo/defs.json
··· 11 11 "slug": { "type": "string" }, 12 12 "description": { "type": "string" }, 13 13 "createdAt": { "type": "string", "format": "datetime" }, 14 + "forkCount": { "type": "integer" }, 14 15 "starCount": { "type": "integer" }, 15 16 "viewer": { "type": "ref", "ref": "#viewerState" }, 16 17 "isStarred": { "type": "boolean" } ··· 20 21 "type": "object", 21 22 "description": "Metadata about the requesting account's relationship with the subject content. Only has meaningful content for authed requests.", 22 23 "properties": { 24 + "fork": { "type": "string", "format": "at-uri" } 23 25 "star": { "type": "string", "format": "at-uri" } 24 26 } 25 27 }