diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 141e7cd..ff66120 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.47.0" + ".": "0.48.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index e3d4bfe..0595898 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 238 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-7761a7b3900011b6b82798bdc61499235a02ed9c48fa5f20e2758f4f2e45c72b.yml -openapi_spec_hash: 39139aa45b204b3144fe560fcad8893b +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-dfa51d8d0b4b31cb929920acfba59c9d2e928de78fc1ac44c639ff9f735727bf.yml +openapi_spec_hash: 401f64bbe952d952c600b78c42f0ed6c config_hash: 060e036e1db198f2e908364c9df7096e diff --git a/CHANGELOG.md b/CHANGELOG.md index 4addf0e..1326dac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.48.0 (2026-05-01) + +Full Changelog: [v0.47.0...v0.48.0](https://github.com/Increase/increase-cli/compare/v0.47.0...v0.48.0) + +### Features + +* **api:** api update ([ebbb459](https://github.com/Increase/increase-cli/commit/ebbb459adb4557073f532052d33895af5e301482)) + ## 0.47.0 (2026-05-01) Full Changelog: [v0.46.0...v0.47.0](https://github.com/Increase/increase-cli/compare/v0.46.0...v0.47.0) diff --git a/pkg/cmd/simulationentity.go b/pkg/cmd/simulationentity.go index 61f7313..513640a 100644 --- a/pkg/cmd/simulationentity.go +++ b/pkg/cmd/simulationentity.go @@ -21,19 +21,19 @@ var simulationsEntitiesValidation = requestflag.WithInnerFlags(cli.Command{ Flags: []cli.Flag{ &requestflag.Flag[string]{ Name: "entity-id", - Usage: "The identifier of the Entity to set the validation on.", + Usage: "The identifier of the Entity whose validation status to update.", Required: true, PathParam: "entity_id", }, &requestflag.Flag[[]map[string]any]{ Name: "issue", - Usage: "The issues to attach to the new managed compliance validation.", + Usage: "The validation issues to attach. Only allowed when `status` is `invalid`.", Required: true, BodyPath: "issues", }, &requestflag.Flag[string]{ Name: "status", - Usage: "The status to set on the new managed compliance validation.", + Usage: "The validation status to set on the Entity.", Required: true, BodyPath: "status", }, @@ -44,7 +44,7 @@ var simulationsEntitiesValidation = requestflag.WithInnerFlags(cli.Command{ "issue": { &requestflag.InnerFlag[string]{ Name: "issue.category", - Usage: "The category of the issue.", + Usage: "The type of issue.", InnerField: "category", }, }, diff --git a/pkg/cmd/version.go b/pkg/cmd/version.go index eefd938..2033653 100644 --- a/pkg/cmd/version.go +++ b/pkg/cmd/version.go @@ -2,4 +2,4 @@ package cmd -const Version = "0.47.0" // x-release-please-version +const Version = "0.48.0" // x-release-please-version