Skip to content
Get started

Projects

Retrieve project
client.projects.retrieve(ProjectRetrieveParams { project } params?, RequestOptionsoptions?): Project { config_repo, display_name, object, 3 more }
get/v0/projects/{project}
Update project
client.projects.update(ProjectUpdateParams { project, display_name } params?, RequestOptionsoptions?): Project { config_repo, display_name, object, 3 more }
patch/v0/projects/{project}
List projects
client.projects.list(ProjectListParams { cursor, limit, org } query?, RequestOptionsoptions?): Page<Project { config_repo, display_name, object, 3 more } >
get/v0/projects
Create project
client.projects.create(ProjectCreateParams { display_name, org, revision, 2 more } body, RequestOptionsoptions?): Project { config_repo, display_name, object, 3 more }
post/v0/projects
ModelsExpand Collapse
Project { config_repo, display_name, object, 3 more }

A project is a collection of SDKs generated from the same set of config files.

config_repo: string
display_name: string | null
object: "project"
Accepts one of the following:
"project"
org: string
slug: string
targets: Array<Target>
Accepts one of the following:
"node"
"typescript"
"python"
"go"
"java"
"kotlin"
"ruby"
"terraform"
"cli"
"php"
"csharp"

ProjectsBranches

Create a new project branch
client.projects.branches.create(BranchCreateParams { project, branch, branch_from, force } params, RequestOptionsoptions?): ProjectBranch { branch, config_commit, latest_build, 3 more }
post/v0/projects/{project}/branches
Retrieve a project branch
client.projects.branches.retrieve(stringbranch, BranchRetrieveParams { project } params?, RequestOptionsoptions?): ProjectBranch { branch, config_commit, latest_build, 3 more }
get/v0/projects/{project}/branches/{branch}
List project branches
client.projects.branches.list(BranchListParams { project, cursor, limit } params?, RequestOptionsoptions?): Page<BranchListResponse { branch, config_commit, latest_build_id, 3 more } >
get/v0/projects/{project}/branches
Delete a project branch
client.projects.branches.delete(stringbranch, BranchDeleteParams { project } params?, RequestOptionsoptions?): BranchDeleteResponse
delete/v0/projects/{project}/branches/{branch}
Rebase a project branch
client.projects.branches.rebase(stringbranch, BranchRebaseParams { project, base } params?, RequestOptionsoptions?): ProjectBranch { branch, config_commit, latest_build, 3 more }
put/v0/projects/{project}/branches/{branch}/rebase
Reset
client.projects.branches.reset(stringbranch, BranchResetParams { project, target_config_sha } params?, RequestOptionsoptions?): ProjectBranch { branch, config_commit, latest_build, 3 more }
put/v0/projects/{project}/branches/{branch}/reset
ModelsExpand Collapse
ProjectBranch { branch, config_commit, latest_build, 3 more }

A project branch names a line of development for a project. Like a Git branch, it points to a Git commit with a set of config files. In addition, a project branch also points to a set of custom code changes, corresponding to Git branches in the staging repos.

branch: string

Branch name

config_commit: ConfigCommit { repo, sha }

A Git commit that points to the latest set of config files on a given branch.

repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
latest_build: Build { id, config_commit, created_at, 6 more } | null
id: string

Build ID

config_commit: string
created_at: string
documented_spec: UnionMember0 { content, type } | UnionMember1 { expires, type, url } | null
Accepts one of the following:
UnionMember0 { content, type }
content: string
type: "content"
Accepts one of the following:
"content"
UnionMember1 { expires, type, url }
expires: string
type: "url"
Accepts one of the following:
"url"
url: string
object: "build"
Accepts one of the following:
"build"
org: string
project: string
targets: Targets { cli, csharp, go, 8 more }
cli?: BuildTarget { commit, install_url, lint, 4 more }
commit: NotStarted { status } | Queued { status } | InProgress { status } | Completed { completed, status }
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { commit, conclusion, merge_conflict_pr }
commit: Commit { repo, sha } | null
repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
conclusion: "error" | "warning" | "note" | 9 more
Accepts one of the following:
"error"
"warning"
"note"
"success"
"merge_conflict"
"upstream_merge_conflict"
"fatal"
"payment_required"
"cancelled"
"timed_out"
"noop"
"version_bump"
merge_conflict_pr: MergeConflictPr | null
number: number
repo: Repo { name, owner }
name: string
owner: string
status: "completed"
Accepts one of the following:
"completed"
install_url: string | null
lint: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
object: "build_target"
Accepts one of the following:
"build_target"
status: "not_started" | "codegen" | "postgen" | "completed"
Accepts one of the following:
"not_started"
"codegen"
"postgen"
"completed"
test: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
build?: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
csharp?: BuildTarget { commit, install_url, lint, 4 more }
commit: NotStarted { status } | Queued { status } | InProgress { status } | Completed { completed, status }
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { commit, conclusion, merge_conflict_pr }
commit: Commit { repo, sha } | null
repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
conclusion: "error" | "warning" | "note" | 9 more
Accepts one of the following:
"error"
"warning"
"note"
"success"
"merge_conflict"
"upstream_merge_conflict"
"fatal"
"payment_required"
"cancelled"
"timed_out"
"noop"
"version_bump"
merge_conflict_pr: MergeConflictPr | null
number: number
repo: Repo { name, owner }
name: string
owner: string
status: "completed"
Accepts one of the following:
"completed"
install_url: string | null
lint: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
object: "build_target"
Accepts one of the following:
"build_target"
status: "not_started" | "codegen" | "postgen" | "completed"
Accepts one of the following:
"not_started"
"codegen"
"postgen"
"completed"
test: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
build?: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
go?: BuildTarget { commit, install_url, lint, 4 more }
commit: NotStarted { status } | Queued { status } | InProgress { status } | Completed { completed, status }
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { commit, conclusion, merge_conflict_pr }
commit: Commit { repo, sha } | null
repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
conclusion: "error" | "warning" | "note" | 9 more
Accepts one of the following:
"error"
"warning"
"note"
"success"
"merge_conflict"
"upstream_merge_conflict"
"fatal"
"payment_required"
"cancelled"
"timed_out"
"noop"
"version_bump"
merge_conflict_pr: MergeConflictPr | null
number: number
repo: Repo { name, owner }
name: string
owner: string
status: "completed"
Accepts one of the following:
"completed"
install_url: string | null
lint: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
object: "build_target"
Accepts one of the following:
"build_target"
status: "not_started" | "codegen" | "postgen" | "completed"
Accepts one of the following:
"not_started"
"codegen"
"postgen"
"completed"
test: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
build?: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
java?: BuildTarget { commit, install_url, lint, 4 more }
commit: NotStarted { status } | Queued { status } | InProgress { status } | Completed { completed, status }
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { commit, conclusion, merge_conflict_pr }
commit: Commit { repo, sha } | null
repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
conclusion: "error" | "warning" | "note" | 9 more
Accepts one of the following:
"error"
"warning"
"note"
"success"
"merge_conflict"
"upstream_merge_conflict"
"fatal"
"payment_required"
"cancelled"
"timed_out"
"noop"
"version_bump"
merge_conflict_pr: MergeConflictPr | null
number: number
repo: Repo { name, owner }
name: string
owner: string
status: "completed"
Accepts one of the following:
"completed"
install_url: string | null
lint: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
object: "build_target"
Accepts one of the following:
"build_target"
status: "not_started" | "codegen" | "postgen" | "completed"
Accepts one of the following:
"not_started"
"codegen"
"postgen"
"completed"
test: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
build?: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
kotlin?: BuildTarget { commit, install_url, lint, 4 more }
commit: NotStarted { status } | Queued { status } | InProgress { status } | Completed { completed, status }
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { commit, conclusion, merge_conflict_pr }
commit: Commit { repo, sha } | null
repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
conclusion: "error" | "warning" | "note" | 9 more
Accepts one of the following:
"error"
"warning"
"note"
"success"
"merge_conflict"
"upstream_merge_conflict"
"fatal"
"payment_required"
"cancelled"
"timed_out"
"noop"
"version_bump"
merge_conflict_pr: MergeConflictPr | null
number: number
repo: Repo { name, owner }
name: string
owner: string
status: "completed"
Accepts one of the following:
"completed"
install_url: string | null
lint: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
object: "build_target"
Accepts one of the following:
"build_target"
status: "not_started" | "codegen" | "postgen" | "completed"
Accepts one of the following:
"not_started"
"codegen"
"postgen"
"completed"
test: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
build?: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
node?: BuildTarget { commit, install_url, lint, 4 more }
commit: NotStarted { status } | Queued { status } | InProgress { status } | Completed { completed, status }
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { commit, conclusion, merge_conflict_pr }
commit: Commit { repo, sha } | null
repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
conclusion: "error" | "warning" | "note" | 9 more
Accepts one of the following:
"error"
"warning"
"note"
"success"
"merge_conflict"
"upstream_merge_conflict"
"fatal"
"payment_required"
"cancelled"
"timed_out"
"noop"
"version_bump"
merge_conflict_pr: MergeConflictPr | null
number: number
repo: Repo { name, owner }
name: string
owner: string
status: "completed"
Accepts one of the following:
"completed"
install_url: string | null
lint: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
object: "build_target"
Accepts one of the following:
"build_target"
status: "not_started" | "codegen" | "postgen" | "completed"
Accepts one of the following:
"not_started"
"codegen"
"postgen"
"completed"
test: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
build?: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
php?: BuildTarget { commit, install_url, lint, 4 more }
commit: NotStarted { status } | Queued { status } | InProgress { status } | Completed { completed, status }
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { commit, conclusion, merge_conflict_pr }
commit: Commit { repo, sha } | null
repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
conclusion: "error" | "warning" | "note" | 9 more
Accepts one of the following:
"error"
"warning"
"note"
"success"
"merge_conflict"
"upstream_merge_conflict"
"fatal"
"payment_required"
"cancelled"
"timed_out"
"noop"
"version_bump"
merge_conflict_pr: MergeConflictPr | null
number: number
repo: Repo { name, owner }
name: string
owner: string
status: "completed"
Accepts one of the following:
"completed"
install_url: string | null
lint: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
object: "build_target"
Accepts one of the following:
"build_target"
status: "not_started" | "codegen" | "postgen" | "completed"
Accepts one of the following:
"not_started"
"codegen"
"postgen"
"completed"
test: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
build?: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
python?: BuildTarget { commit, install_url, lint, 4 more }
commit: NotStarted { status } | Queued { status } | InProgress { status } | Completed { completed, status }
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { commit, conclusion, merge_conflict_pr }
commit: Commit { repo, sha } | null
repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
conclusion: "error" | "warning" | "note" | 9 more
Accepts one of the following:
"error"
"warning"
"note"
"success"
"merge_conflict"
"upstream_merge_conflict"
"fatal"
"payment_required"
"cancelled"
"timed_out"
"noop"
"version_bump"
merge_conflict_pr: MergeConflictPr | null
number: number
repo: Repo { name, owner }
name: string
owner: string
status: "completed"
Accepts one of the following:
"completed"
install_url: string | null
lint: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
object: "build_target"
Accepts one of the following:
"build_target"
status: "not_started" | "codegen" | "postgen" | "completed"
Accepts one of the following:
"not_started"
"codegen"
"postgen"
"completed"
test: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
build?: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
ruby?: BuildTarget { commit, install_url, lint, 4 more }
commit: NotStarted { status } | Queued { status } | InProgress { status } | Completed { completed, status }
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { commit, conclusion, merge_conflict_pr }
commit: Commit { repo, sha } | null
repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
conclusion: "error" | "warning" | "note" | 9 more
Accepts one of the following:
"error"
"warning"
"note"
"success"
"merge_conflict"
"upstream_merge_conflict"
"fatal"
"payment_required"
"cancelled"
"timed_out"
"noop"
"version_bump"
merge_conflict_pr: MergeConflictPr | null
number: number
repo: Repo { name, owner }
name: string
owner: string
status: "completed"
Accepts one of the following:
"completed"
install_url: string | null
lint: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
object: "build_target"
Accepts one of the following:
"build_target"
status: "not_started" | "codegen" | "postgen" | "completed"
Accepts one of the following:
"not_started"
"codegen"
"postgen"
"completed"
test: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
build?: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
terraform?: BuildTarget { commit, install_url, lint, 4 more }
commit: NotStarted { status } | Queued { status } | InProgress { status } | Completed { completed, status }
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { commit, conclusion, merge_conflict_pr }
commit: Commit { repo, sha } | null
repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
conclusion: "error" | "warning" | "note" | 9 more
Accepts one of the following:
"error"
"warning"
"note"
"success"
"merge_conflict"
"upstream_merge_conflict"
"fatal"
"payment_required"
"cancelled"
"timed_out"
"noop"
"version_bump"
merge_conflict_pr: MergeConflictPr | null
number: number
repo: Repo { name, owner }
name: string
owner: string
status: "completed"
Accepts one of the following:
"completed"
install_url: string | null
lint: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
object: "build_target"
Accepts one of the following:
"build_target"
status: "not_started" | "codegen" | "postgen" | "completed"
Accepts one of the following:
"not_started"
"codegen"
"postgen"
"completed"
test: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
build?: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
typescript?: BuildTarget { commit, install_url, lint, 4 more }
commit: NotStarted { status } | Queued { status } | InProgress { status } | Completed { completed, status }
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { commit, conclusion, merge_conflict_pr }
commit: Commit { repo, sha } | null
repo: Repo { branch, name, owner }
branch: string
name: string
owner: string
sha: string
conclusion: "error" | "warning" | "note" | 9 more
Accepts one of the following:
"error"
"warning"
"note"
"success"
"merge_conflict"
"upstream_merge_conflict"
"fatal"
"payment_required"
"cancelled"
"timed_out"
"noop"
"version_bump"
merge_conflict_pr: MergeConflictPr | null
number: number
repo: Repo { name, owner }
name: string
owner: string
status: "completed"
Accepts one of the following:
"completed"
install_url: string | null
lint: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
object: "build_target"
Accepts one of the following:
"build_target"
status: "not_started" | "codegen" | "postgen" | "completed"
Accepts one of the following:
"not_started"
"codegen"
"postgen"
"completed"
test: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
build?: CheckStep
Accepts one of the following:
NotStarted { status }
status: "not_started"
Accepts one of the following:
"not_started"
Queued { status }
status: "queued"
Accepts one of the following:
"queued"
InProgress { status }
status: "in_progress"
Accepts one of the following:
"in_progress"
Completed { completed, status }
completed: Completed { conclusion, url }
conclusion: "success" | "failure" | "skipped" | 4 more
Accepts one of the following:
"success"
"failure"
"skipped"
"cancelled"
"action_required"
"neutral"
"timed_out"
url: string | null
status: "completed"
Accepts one of the following:
"completed"
updated_at: string
object: "project_branch"
Accepts one of the following:
"project_branch"
org: string
project: string

Project name

ProjectsConfigs

Retrieve configuration files
client.projects.configs.retrieve(ConfigRetrieveParams { project, branch, include } params?, RequestOptionsoptions?): ConfigRetrieveResponse { content }
get/v0/projects/{project}/configs
Generate config suggestions
client.projects.configs.guess(ConfigGuessParams { project, spec, branch } params, RequestOptionsoptions?): ConfigGuessResponse { content }
post/v0/projects/{project}/configs/guess