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 @@
{
".": "5.65.0"
".": "5.66.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: 139
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb/orb-5192a1b7cab269d33dbc3c9eb75994d41880eff1694900232b99f4cc30ae5710.yml
openapi_spec_hash: 1bcfe26f0efab1f1287195a45074fae5
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb/orb-0b931ef1842e244faf237ea9dd3f8be2cadf24410a1cbb0bdae6f1f03fd1067d.yml
openapi_spec_hash: b704b2673cb93856fd500e61301c661c
config_hash: c01c1191b1cd696c7ca855ff6d28a8df
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 5.66.0 (2026-06-02)

Full Changelog: [v5.65.0...v5.66.0](https://github.com/orbcorp/orb-node/compare/v5.65.0...v5.66.0)

### Features

* **api:** api update ([23cc17b](https://github.com/orbcorp/orb-node/commit/23cc17b4682e0a09f8e93ba6ed42ee74d43dea0d))

## 5.65.0 (2026-05-27)

Full Changelog: [v5.64.0...v5.65.0](https://github.com/orbcorp/orb-node/compare/v5.64.0...v5.65.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "orb-billing",
"version": "5.65.0",
"version": "5.66.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <team@withorb.com>",
"types": "dist/index.d.ts",
Expand Down
10 changes: 5 additions & 5 deletions src/resources/events/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ export class Events extends APIResource {
* billed for in the corresponding billing period.
*
* In general, Orb does not expect events with future dated timestamps. In cases
* where the timestamp is at least 24 hours ahead of the current time, the event
* will not be accepted as a valid event, and will throw validation errors.
* where the timestamp is 5 minutes ahead of the current time, the event will not
* be accepted as a valid event, and will throw validation errors.
*
* ## Event validation
*
Expand All @@ -273,9 +273,9 @@ export class Events extends APIResource {
* - If the `external_customer_id` is specified, the customer in Orb does not need
* to exist. Events will be attributed to any future customers with the
* `external_customer_id` on subscription creation.
* - `timestamp` must conform to ISO 8601 and represent a timestamp at most 1 hour
* in the future. This timestamp should be sent in UTC timezone (no timezone
* offset).
* - `timestamp` must conform to ISO 8601 and represent a timestamp at most 5
* minutes in the future. This timestamp should be sent in UTC timezone (no
* timezone offset).
*
* ## Idempotency and retry semantics
*
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '5.65.0'; // x-release-please-version
export const VERSION = '5.66.0'; // x-release-please-version
Loading