Skip to main content

Project Structure Update Request Pseudo CLI

Generated from packages/codeboltjs/src/tools/pseudo-cli/commands.ts. Edit the registry or rerun node scripts/generate-pseudo-cli-docs.js instead of updating this file by hand.

The update-request pseudo CLI module currently exposes 14 commands.

Related SDK docs: Project Structure Update Request

Commands At A Glance

ActionDescriptionRequired flags
createCreate update request--data
getGet update request--id
listList update requestsNone
updateUpdate an update request--id, --updates
deleteDelete update request--id
submitSubmit update request--id
start-workStart work on update request--id
completeComplete update request--id
mergeMerge update request--id
add-disputeAdd dispute to update request--id, --data
resolve-disputeResolve dispute--id, --dispute-id
add-commentAdd comment to dispute--id, --dispute-id, --data
watchWatch update request--id, --data
unwatchUnwatch update request--id, --watcher-id

create

Create update request

codebolt update-request create --data <json>
NameFlagTypeRequiredDescription
data--datajsonYesStructured JSON payload passed through to the underlying SDK method.

get

Get update request

codebolt update-request get --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

list

List update requests

codebolt update-request list [--filters <json>]
NameFlagTypeRequiredDescription
filters--filtersjsonNoValue for the filters parameter.

update

Update an update request

codebolt update-request update --id <string> --updates <json>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
updates--updatesjsonYesValue for the updates parameter.

delete

Delete update request

codebolt update-request delete --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

submit

Submit update request

codebolt update-request submit --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

start-work

Start work on update request

codebolt update-request start-work --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

complete

Complete update request

codebolt update-request complete --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

merge

Merge update request

codebolt update-request merge --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

add-dispute

Add dispute to update request

codebolt update-request add-dispute --id <string> --data <json>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
data--datajsonYesStructured JSON payload passed through to the underlying SDK method.

resolve-dispute

Resolve dispute

codebolt update-request resolve-dispute --id <string> --dispute-id <string> [--summary <string>]
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
dispute-id--dispute-idstringYesValue for the dispute-id parameter.
summary--summarystringNoValue for the summary parameter.

add-comment

Add comment to dispute

codebolt update-request add-comment --id <string> --dispute-id <string> --data <json>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
dispute-id--dispute-idstringYesValue for the dispute-id parameter.
data--datajsonYesStructured JSON payload passed through to the underlying SDK method.

watch

Watch update request

codebolt update-request watch --id <string> --data <json>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
data--datajsonYesStructured JSON payload passed through to the underlying SDK method.

unwatch

Unwatch update request

codebolt update-request unwatch --id <string> --watcher-id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
watcher-id--watcher-idstringYesValue for the watcher-id parameter.