orb-billing 5.34.0 → 5.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/shared.d.ts +12 -0
- package/resources/shared.d.ts.map +1 -1
- package/resources/shared.js.map +1 -1
- package/resources/shared.mjs.map +1 -1
- package/resources/subscriptions.d.ts +10 -5
- package/resources/subscriptions.d.ts.map +1 -1
- package/resources/subscriptions.js.map +1 -1
- package/resources/subscriptions.mjs.map +1 -1
- package/src/resources/shared.ts +14 -0
- package/src/resources/subscriptions.ts +11 -5
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.35.0 (2025-11-25)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.34.0...v5.35.0](https://github.com/orbcorp/orb-node/compare/v5.34.0...v5.35.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([a2b1e94](https://github.com/orbcorp/orb-node/commit/a2b1e94a8c1c47b214a6ad822f6e15e256a02a08))
|
|
10
|
+
|
|
3
11
|
## 5.34.0 (2025-11-18)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v5.33.0...v5.34.0](https://github.com/orbcorp/orb-node/compare/v5.33.0...v5.34.0)
|
package/package.json
CHANGED
package/resources/shared.d.ts
CHANGED
|
@@ -2069,6 +2069,18 @@ export interface NewAllocationPrice {
|
|
|
2069
2069
|
* The filters that determine which items the allocation applies to.
|
|
2070
2070
|
*/
|
|
2071
2071
|
filters?: Array<NewAllocationPrice.Filter> | null;
|
|
2072
|
+
/**
|
|
2073
|
+
* The item ID that line items representing charges for this allocation will be
|
|
2074
|
+
* associated with. If not provided, the default allocation item for the currency
|
|
2075
|
+
* will be used (e.g. 'Included Allocation (USD)').
|
|
2076
|
+
*/
|
|
2077
|
+
item_id?: string | null;
|
|
2078
|
+
/**
|
|
2079
|
+
* The (per-unit) cost basis of each created block. If non-zero, a customer will be
|
|
2080
|
+
* invoiced according to the quantity and per unit cost basis specified for the
|
|
2081
|
+
* allocation each cadence.
|
|
2082
|
+
*/
|
|
2083
|
+
per_unit_cost_basis?: string;
|
|
2072
2084
|
}
|
|
2073
2085
|
export declare namespace NewAllocationPrice {
|
|
2074
2086
|
/**
|