orb-billing 6.3.0 → 6.5.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,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.5.0](https://github.com/orbcorp/orb-typescript/compare/v6.4.0...v6.5.0) (2026-07-25)
4
+
5
+
6
+ ### Features
7
+
8
+ * **api:** rename "trash alert" endpoint to "delete alert" ([7e3b50d](https://github.com/orbcorp/orb-typescript/commit/7e3b50dde544bee33285de67a6a715f1d1a52b60))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **api:** rename "trash alert" endpoint to "delete alert" ([7e3b50d](https://github.com/orbcorp/orb-typescript/commit/7e3b50dde544bee33285de67a6a715f1d1a52b60))
14
+
15
+ ## [6.4.0](https://github.com/orbcorp/orb-typescript/compare/v6.3.0...v6.4.0) (2026-07-24)
16
+
17
+
18
+ ### Features
19
+
20
+ * **api:** increase max page limit for credit ledger endpoints from 500 to 1000 ([e195560](https://github.com/orbcorp/orb-typescript/commit/e195560a0f1a9f186d075074a220381fc0f4f77e))
21
+ * **api:** support decimal quantities for fixed fee quantity transitions ([c3f3968](https://github.com/orbcorp/orb-typescript/commit/c3f3968eceda319ef8c4379e4f7877152e41cd9f))
22
+
3
23
  ## [6.3.0](https://github.com/orbcorp/orb-typescript/compare/v6.2.0...v6.3.0) (2026-07-22)
4
24
 
5
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orb-billing",
3
- "version": "6.3.0",
3
+ "version": "6.5.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",
@@ -34,11 +34,11 @@ export declare class Alerts extends APIResource {
34
34
  */
35
35
  list(query?: AlertListParams | null | undefined, options?: RequestOptions): PagePromise<AlertsPage, Alert>;
36
36
  /**
37
- * This endpoint trashes a subscription- or customer-scoped alert. The alert is
37
+ * This endpoint deletes a subscription or customer-scoped alert. The alert is
38
38
  * soft-deleted: it stops firing immediately and no longer appears in fetch or list
39
39
  * responses, while the underlying record is retained internally for audit.
40
40
  *
41
- * Plan-level alerts cannot be trashed via the API — disable them instead
41
+ * Plan-level alerts cannot be deleted via the API — disable them instead
42
42
  * (`POST /v1/alerts/{alert_configuration_id}/disable`). Their removal would need
43
43
  * to be unwound from every subscription the alert was propagated to, which isn't
44
44
  * supported yet.
@@ -34,11 +34,11 @@ export declare class Alerts extends APIResource {
34
34
  */
35
35
  list(query?: AlertListParams | null | undefined, options?: RequestOptions): PagePromise<AlertsPage, Alert>;
36
36
  /**
37
- * This endpoint trashes a subscription- or customer-scoped alert. The alert is
37
+ * This endpoint deletes a subscription or customer-scoped alert. The alert is
38
38
  * soft-deleted: it stops firing immediately and no longer appears in fetch or list
39
39
  * responses, while the underlying record is retained internally for audit.
40
40
  *
41
- * Plan-level alerts cannot be trashed via the API — disable them instead
41
+ * Plan-level alerts cannot be deleted via the API — disable them instead
42
42
  * (`POST /v1/alerts/{alert_configuration_id}/disable`). Their removal would need
43
43
  * to be unwound from every subscription the alert was propagated to, which isn't
44
44
  * supported yet.
@@ -42,11 +42,11 @@ class Alerts extends resource_1.APIResource {
42
42
  return this._client.getAPIList('/alerts', (pagination_1.Page), { query, ...options });
43
43
  }
44
44
  /**
45
- * This endpoint trashes a subscription- or customer-scoped alert. The alert is
45
+ * This endpoint deletes a subscription or customer-scoped alert. The alert is
46
46
  * soft-deleted: it stops firing immediately and no longer appears in fetch or list
47
47
  * responses, while the underlying record is retained internally for audit.
48
48
  *
49
- * Plan-level alerts cannot be trashed via the API — disable them instead
49
+ * Plan-level alerts cannot be deleted via the API — disable them instead
50
50
  * (`POST /v1/alerts/{alert_configuration_id}/disable`). Their removal would need
51
51
  * to be unwound from every subscription the alert was propagated to, which isn't
52
52
  * supported yet.
@@ -39,11 +39,11 @@ export class Alerts extends APIResource {
39
39
  return this._client.getAPIList('/alerts', (Page), { query, ...options });
40
40
  }
41
41
  /**
42
- * This endpoint trashes a subscription- or customer-scoped alert. The alert is
42
+ * This endpoint deletes a subscription or customer-scoped alert. The alert is
43
43
  * soft-deleted: it stops firing immediately and no longer appears in fetch or list
44
44
  * responses, while the underlying record is retained internally for audit.
45
45
  *
46
- * Plan-level alerts cannot be trashed via the API — disable them instead
46
+ * Plan-level alerts cannot be deleted via the API — disable them instead
47
47
  * (`POST /v1/alerts/{alert_configuration_id}/disable`). Their removal would need
48
48
  * to be unwound from every subscription the alert was propagated to, which isn't
49
49
  * supported yet.
@@ -51,11 +51,11 @@ export class Alerts extends APIResource {
51
51
  }
52
52
 
53
53
  /**
54
- * This endpoint trashes a subscription- or customer-scoped alert. The alert is
54
+ * This endpoint deletes a subscription or customer-scoped alert. The alert is
55
55
  * soft-deleted: it stops firing immediately and no longer appears in fetch or list
56
56
  * responses, while the underlying record is retained internally for audit.
57
57
  *
58
- * Plan-level alerts cannot be trashed via the API — disable them instead
58
+ * Plan-level alerts cannot be deleted via the API — disable them instead
59
59
  * (`POST /v1/alerts/{alert_configuration_id}/disable`). Their removal would need
60
60
  * to be unwound from every subscription the alert was propagated to, which isn't
61
61
  * supported yet.
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '6.3.0'; // x-release-please-version
1
+ export const VERSION = '6.5.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "6.3.0";
1
+ export declare const VERSION = "6.5.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "6.3.0";
1
+ export declare const VERSION = "6.5.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '6.3.0'; // x-release-please-version
4
+ exports.VERSION = '6.5.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '6.3.0'; // x-release-please-version
1
+ export const VERSION = '6.5.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map