orb-billing 5.1.0 → 5.2.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/customers/costs.d.ts +2 -2
- package/resources/subscriptions.d.ts +1 -1
- package/src/resources/customers/costs.ts +2 -2
- package/src/resources/subscriptions.ts +1 -1
- 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.2.0 (2025-07-17)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.1.0...v5.2.0](https://github.com/orbcorp/orb-node/compare/v5.1.0...v5.2.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([8110b7a](https://github.com/orbcorp/orb-node/commit/8110b7ab27af5e8e87f7786a9512a9683103d725))
|
|
10
|
+
|
|
3
11
|
## 5.1.0 (2025-07-17)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v5.0.0...v5.1.0](https://github.com/orbcorp/orb-node/compare/v5.0.0...v5.1.0)
|
package/package.json
CHANGED
|
@@ -253,7 +253,7 @@ export interface CostListByExternalIDResponse {
|
|
|
253
253
|
}
|
|
254
254
|
export interface CostListParams {
|
|
255
255
|
/**
|
|
256
|
-
* The currency
|
|
256
|
+
* The currency to use.
|
|
257
257
|
*/
|
|
258
258
|
currency?: string | null;
|
|
259
259
|
/**
|
|
@@ -274,7 +274,7 @@ export interface CostListParams {
|
|
|
274
274
|
}
|
|
275
275
|
export interface CostListByExternalIDParams {
|
|
276
276
|
/**
|
|
277
|
-
* The currency
|
|
277
|
+
* The currency to use.
|
|
278
278
|
*/
|
|
279
279
|
currency?: string | null;
|
|
280
280
|
/**
|
|
@@ -295,7 +295,7 @@ export interface CostListByExternalIDResponse {
|
|
|
295
295
|
|
|
296
296
|
export interface CostListParams {
|
|
297
297
|
/**
|
|
298
|
-
* The currency
|
|
298
|
+
* The currency to use.
|
|
299
299
|
*/
|
|
300
300
|
currency?: string | null;
|
|
301
301
|
|
|
@@ -320,7 +320,7 @@ export interface CostListParams {
|
|
|
320
320
|
|
|
321
321
|
export interface CostListByExternalIDParams {
|
|
322
322
|
/**
|
|
323
|
-
* The currency
|
|
323
|
+
* The currency to use.
|
|
324
324
|
*/
|
|
325
325
|
currency?: string | null;
|
|
326
326
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '5.
|
|
1
|
+
export const VERSION = '5.2.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "5.
|
|
1
|
+
export declare const VERSION = "5.2.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '5.
|
|
1
|
+
export const VERSION = '5.2.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|