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 @@
{
".": "1.45.0"
".": "1.46.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: 118
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-0ab0946487d1ee971683d894554494d9940010403874c0be724ffc3a82d696db.yml
openapi_spec_hash: 66b792328a4faee3c7659185accc3f0e
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-033643979990e894363554df06218fabe4493feaa569a013dbdf9a72aa21c45f.yml
openapi_spec_hash: dd9d320ad178bafa06f1eac2977e2ca7
config_hash: e6db17547fe854b1c240407cf4c6dc9e
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.46.0 (2025-12-02)

Full Changelog: [v1.45.0...v1.46.0](https://github.com/orbcorp/orb-go/compare/v1.45.0...v1.46.0)

### Features

* **api:** api update ([6a71a73](https://github.com/orbcorp/orb-go/commit/6a71a739b771aa40ed963b8dcb9b17c5cf0dfe65))

## 1.45.0 (2025-11-25)

Full Changelog: [v1.44.1...v1.45.0](https://github.com/orbcorp/orb-go/compare/v1.44.1...v1.45.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@v1.45.0'
go get -u 'github.com/orbcorp/orb-go@v1.46.0'
```

<!-- x-release-please-end -->
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 = "1.45.0" // x-release-please-version
const PackageVersion = "1.46.0" // x-release-please-version
4 changes: 4 additions & 0 deletions subscription.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,10 @@ func NewSubscriptionService(opts ...option.RequestOption) (r *SubscriptionServic
// specified in the subscription's invoicing currency, when creating a
// subscription. E.g. pass in `10.00` to issue an invoice when usage amounts hit
// \$10.00 for a subscription that invoices in USD.
//
// ## Limits
//
// By default, Orb limits the number of subscriptions per customer to 100.
func (r *SubscriptionService) New(ctx context.Context, body SubscriptionNewParams, opts ...option.RequestOption) (res *MutatedSubscription, err error) {
opts = slices.Concat(r.Options, opts)
path := "subscriptions"
Expand Down