···1818type RepoCreate_Input struct {
1919 // defaultBranch: Default branch to push to
2020 DefaultBranch *string `json:"defaultBranch,omitempty" cborgen:"defaultBranch,omitempty"`
2121+ // defaultBranchOnly: If true and source is provided, only clone the default branch
2222+ DefaultBranchOnly *bool `json:"defaultBranchOnly,omitempty" cborgen:"defaultBranchOnly,omitempty"`
2123 // rkey: Rkey of the repository record
2224 Rkey string `json:"rkey" cborgen:"rkey"`
2325 // source: A source URL to clone from, populate this when forking or importing a repository.
···2424 "source": {
2525 "type": "string",
2626 "description": "A source URL to clone from, populate this when forking or importing a repository."
2727+ },
2828+ "defaultBranchOnly": {
2929+ "type": "boolean",
3030+ "description": "If true and source is provided, only clone the default branch"
2731 }
2832 }
2933 }