orb-billing 6.4.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 +12 -0
- package/package.json +1 -1
- package/resources/alerts.d.mts +2 -2
- package/resources/alerts.d.ts +2 -2
- package/resources/alerts.js +2 -2
- package/resources/alerts.mjs +2 -2
- package/src/resources/alerts.ts +2 -2
- package/src/version.ts +1 -1
- package/version.d.mts +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,17 @@
|
|
|
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
|
+
|
|
3
15
|
## [6.4.0](https://github.com/orbcorp/orb-typescript/compare/v6.3.0...v6.4.0) (2026-07-24)
|
|
4
16
|
|
|
5
17
|
|
package/package.json
CHANGED
package/resources/alerts.d.mts
CHANGED
|
@@ -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
|
|
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
|
|
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.
|
package/resources/alerts.d.ts
CHANGED
|
@@ -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
|
|
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
|
|
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.
|
package/resources/alerts.js
CHANGED
|
@@ -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
|
|
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
|
|
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.
|
package/resources/alerts.mjs
CHANGED
|
@@ -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
|
|
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
|
|
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.
|
package/src/resources/alerts.ts
CHANGED
|
@@ -51,11 +51,11 @@ export class Alerts extends APIResource {
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
/**
|
|
54
|
-
* This endpoint
|
|
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
|
|
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.
|
|
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.
|
|
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.
|
|
1
|
+
export declare const VERSION = "6.5.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '6.
|
|
1
|
+
export const VERSION = '6.5.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|