Skip to content

Commit

Permalink
release: 0.1.0-alpha.38 (#142)
Browse files Browse the repository at this point in the history
* codegen metadata

* feat(api): api update (#141)

* release: 0.1.0-alpha.38

---------

Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
  • Loading branch information
stainless-app[bot] authored Mar 6, 2025
1 parent c2002f4 commit 56332ca
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 7 deletions.
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.37"
".": "0.1.0-alpha.38"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 23
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/nirvana-labs%2Fnirvana-510d04447e125bb09d1306dcb18387342dda78f458f73e30a87a3c60400cc1ad.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/nirvana-labs%2Fnirvana-b7fc0dbe92a80c42cf82bcd8ff9451b1f2a757b00aa0dd36f38d22817258f52f.yml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.0-alpha.38 (2025-03-06)

Full Changelog: [v0.1.0-alpha.37...v0.1.0-alpha.38](https://github.com/nirvana-labs/nirvana-go/compare/v0.1.0-alpha.37...v0.1.0-alpha.38)

### Features

* **api:** api update ([#141](https://github.com/nirvana-labs/nirvana-go/issues/141)) ([1e23eec](https://github.com/nirvana-labs/nirvana-go/commit/1e23eec8196d93a3cb6bdacdfc1368cdcec5e0e7))

## 0.1.0-alpha.37 (2025-03-01)

Full Changelog: [v0.1.0-alpha.36...v0.1.0-alpha.37](https://github.com/nirvana-labs/nirvana-go/compare/v0.1.0-alpha.36...v0.1.0-alpha.37)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Or to pin the version:
<!-- x-release-please-start-version -->

```sh
go get -u 'github.com/nirvana-labs/[email protected].37'
go get -u 'github.com/nirvana-labs/[email protected].38'
```

<!-- x-release-please-end -->
Expand Down
9 changes: 6 additions & 3 deletions compute/volume.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"github.com/nirvana-labs/nirvana-go/internal/requestconfig"
"github.com/nirvana-labs/nirvana-go/operations"
"github.com/nirvana-labs/nirvana-go/option"
"github.com/nirvana-labs/nirvana-go/shared"
)

// VolumeService contains methods and other services that help with interacting
Expand Down Expand Up @@ -106,9 +107,10 @@ type Volume struct {
ID string `json:"id,required"`
CreatedAt string `json:"created_at,required"`
// Volume kind.
Kind VolumeKind `json:"kind,required"`
Name string `json:"name,required"`
Size int64 `json:"size,required"`
Kind VolumeKind `json:"kind,required"`
Name string `json:"name,required"`
Size int64 `json:"size,required"`
Status shared.ResourceStatus `json:"status,required"`
// Storage type.
Type StorageType `json:"type,required"`
UpdatedAt string `json:"updated_at,required"`
Expand All @@ -123,6 +125,7 @@ type volumeJSON struct {
Kind apijson.Field
Name apijson.Field
Size apijson.Field
Status apijson.Field
Type apijson.Field
UpdatedAt apijson.Field
VMID apijson.Field
Expand Down
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package internal

const PackageVersion = "0.1.0-alpha.37" // x-release-please-version
const PackageVersion = "0.1.0-alpha.38" // x-release-please-version

0 comments on commit 56332ca

Please sign in to comment.