diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3b005e5..ee49ac2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.10" + ".": "0.1.0-alpha.11" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 87e3319..0e44408 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6afa408..509241b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index ee32861..b112a37 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/pkg/cmd/project.go b/pkg/cmd/project.go index 5a50612..54d6ab4 100644 --- a/pkg/cmd/project.go +++ b/pkg/cmd/project.go @@ -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"), @@ -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,