Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.10"
".": "0.1.0-alpha.11"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 15
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-v0-cfef2e882e091dad51a5b53bc39cc251ecf3f71cc0328561cec6309e8bbac93a.yml
openapi_spec_hash: fac1531252a5b791107de8257fdcf3cb
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-v0-5ca77894755b023e347be818cea03fc11810d3de5df5167772a7ab44111d9413.yml
openapi_spec_hash: e1df8ec98c9bcc6d93c9bafa8ff79d29
config_hash: a7461e35260504dcac4cb8c3bfcaad72
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.1.0-alpha.11 (2025-06-02)

Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/stainless-api/stainless-api-cli/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)

### Features

* **api:** add diagnostics to build object ([fbbf7eb](https://github.com/stainless-api/stainless-api-cli/commit/fbbf7eba1eb3c06a9040a5e30904521a26021fa2))


### Chores

* make tap installation command shorter ([e8b060c](https://github.com/stainless-api/stainless-api-cli/commit/e8b060c69eb65b9828c863f97bd8fd4d064f7c0f))

## 0.1.0-alpha.10 (2025-05-30)

Full Changelog: [v0.1.0-alpha.9...v0.1.0-alpha.10](https://github.com/stainless-api/stainless-api-cli/compare/v0.1.0-alpha.9...v0.1.0-alpha.10)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ It is generated with [Stainless](https://www.stainless.com/).
### Installing with Homebrew

```sh
brew tap stainless-api/homebrew-stl
brew tap stainless-api/stl
brew install stl
```

Expand Down
8 changes: 4 additions & 4 deletions pkg/cmd/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@ var projectsList = cli.Command{
Name: "list",
Usage: "List projects in an organization",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "org",
Action: getAPIFlagAction[string]("query", "org"),
},
&cli.StringFlag{
Name: "cursor",
Action: getAPIFlagAction[string]("query", "cursor"),
Expand All @@ -58,6 +54,10 @@ var projectsList = cli.Command{
Name: "limit",
Action: getAPIFlagAction[float64]("query", "limit"),
},
&cli.StringFlag{
Name: "org",
Action: getAPIFlagAction[string]("query", "org"),
},
},
Before: initAPICommand,
Action: handleProjectsList,
Expand Down
Loading