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.47.0"
".": "0.48.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
8 changes: 4 additions & 4 deletions pkg/cmd/simulationentity.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},
Expand All @@ -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",
},
},
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package cmd

const Version = "0.47.0" // x-release-please-version
const Version = "0.48.0" // x-release-please-version
Loading