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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orb-billing",
3
- "version": "5.34.0",
3
+ "version": "5.35.0",
4
4
  "description": "The official TypeScript library for the Orb API",
5
5
  "author": "Orb <team@withorb.com>",
6
6
  "types": "./index.d.ts",
@@ -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
  /**