···16161717// GitTempListLanguages_Language is a "language" in the sh.tangled.git.temp.listLanguages schema.
1818type GitTempListLanguages_Language struct {
1919- // color: Hex color code for this language
2020- Color *string `json:"color,omitempty" cborgen:"color,omitempty"`
2121- // extensions: File extensions associated with this language
2222- Extensions []string `json:"extensions,omitempty" cborgen:"extensions,omitempty"`
2323- // fileCount: Number of files in this language
2424- FileCount *int64 `json:"fileCount,omitempty" cborgen:"fileCount,omitempty"`
2519 // name: Programming language name
2620 Name string `json:"name" cborgen:"name"`
2727- // percentage: Percentage of total codebase (0-100)
2828- Percentage int64 `json:"percentage" cborgen:"percentage"`
2921 // size: Total size of files in this language (bytes)
3022 Size int64 `json:"size" cborgen:"size"`
3123}
···3527 Languages []*GitTempListLanguages_Language `json:"languages" cborgen:"languages"`
3628 // ref: The git reference used
3729 Ref string `json:"ref" cborgen:"ref"`
3838- // totalFiles: Total number of files analyzed
3939- TotalFiles *int64 `json:"totalFiles,omitempty" cborgen:"totalFiles,omitempty"`
4040- // totalSize: Total size of all analyzed files in bytes
4141- TotalSize *int64 `json:"totalSize,omitempty" cborgen:"totalSize,omitempty"`
3030+ // total: Total size of all analyzed files in bytes
3131+ Total int64 `json:"total" cborgen:"total"`
4232}
43334434// GitTempListLanguages calls the XRPC method "sh.tangled.git.temp.listLanguages".