forked from tangled.org/core
Monorepo for Tangled — https://tangled.org
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package tangled 4 5// schema: sh.tangled.git.refUpdate 6 7//import ( 8// "github.com/bluesky-social/indigo/lex/util" 9//) 10 11const ( 12 GitRefUpdateNSID = "sh.tangled.git.refUpdate" 13) 14 15//func init() { 16// util.RegisterType("sh.tangled.git.refUpdate", &GitRefUpdate{}) 17//} // 18// RECORDTYPE: GitRefUpdate 19type GitRefUpdate struct { 20 LexiconTypeID string `json:"$type,const=sh.tangled.git.refUpdate" cborgen:"$type,const=sh.tangled.git.refUpdate"` 21 // committerDid: did of the user that pushed this ref 22 CommitterDid string `json:"committerDid" cborgen:"committerDid"` 23 // newSha: new SHA of this ref 24 NewSha string `json:"newSha" cborgen:"newSha"` 25 // oldSha: old SHA of this ref 26 OldSha string `json:"oldSha" cborgen:"oldSha"` 27 // ref: Ref being updated 28 Ref string `json:"ref" cborgen:"ref"` 29 // repoDid: did of the owner of the repo 30 RepoDid string `json:"repoDid" cborgen:"repoDid"` 31 // repoName: name of the repo 32 RepoName string `json:"repoName" cborgen:"repoName"` 33}