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.96.0"
".": "0.97.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 103
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-7791652a23b1ed216bba0b8fa77798252f78b0525fbd77cc29ee92c6d5739c5a.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-99ab2def905df4700d0555a61c3e6f3e378664df85756fc0ff604aed8f8c5f8b.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.97.0 (2025-02-20)

Full Changelog: [v0.96.0...v0.97.0](https://github.com/orbcorp/orb-go/compare/v0.96.0...v0.97.0)

### Features

* **api:** api update ([#445](https://github.com/orbcorp/orb-go/issues/445)) ([8c0edaf](https://github.com/orbcorp/orb-go/commit/8c0edaf2848ac33df72bcac00ebf18389480c8f7))

## 0.96.0 (2025-02-20)

Full Changelog: [v0.95.1...v0.96.0](https://github.com/orbcorp/orb-go/compare/v0.95.1...v0.96.0)
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/orbcorp/orb-go@v0.96.0'
go get -u 'github.com/orbcorp/orb-go@v0.97.0'
```

<!-- x-release-please-end -->
Expand Down
3 changes: 3 additions & 0 deletions creditnote.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ type CreditNoteLineItem struct {
ID string `json:"id,required"`
// The amount of the line item, including any line item minimums and discounts.
Amount string `json:"amount,required"`
// The id of the item associated with this line item.
ItemID string `json:"item_id,required"`
// The name of the corresponding invoice line item.
Name string `json:"name,required"`
// An optional quantity credited.
Expand All @@ -197,6 +199,7 @@ type CreditNoteLineItem struct {
type creditNoteLineItemJSON struct {
ID apijson.Field
Amount apijson.Field
ItemID apijson.Field
Name apijson.Field
Quantity apijson.Field
Subtotal 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.96.0" // x-release-please-version
const PackageVersion = "0.97.0" // x-release-please-version
52 changes: 26 additions & 26 deletions plan.go

Large diffs are not rendered by default.

56 changes: 28 additions & 28 deletions price.go

Large diffs are not rendered by default.

221 changes: 111 additions & 110 deletions subscription.go

Large diffs are not rendered by default.