orb-billing 1.21.0 → 1.22.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/README.md +1 -1
- data/lib/orb/resources/alerts.rb +2 -2
- data/lib/orb/version.rb +1 -1
- data/rbi/orb/resources/alerts.rbi +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c8881d5c5ce3ce2170690cbd58bf18eb722b2cee0947b4678045716d63e8a0e9
|
|
4
|
+
data.tar.gz: 6d9b9c876db25a171ade9ec9631384299cece32bc5a505e24187df19b4621b4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cbc021724838465722a00f5148f8296de933ef9ea525172aa26a093c9ce2bb148dd3a85a6649e8030490721182c2c2b476b00f5739e50bfd6cfcda7c950807ef
|
|
7
|
+
data.tar.gz: b37b6815005f069aa35c06559e812669260bd3676ca12f33a92ca6e793178459851ad971c41e9d1a48a200404c4587df6ff38f183eda80ad572c7648b0203a9a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.22.0](https://github.com/orbcorp/orb-ruby/compare/v1.21.0...v1.22.0) (2026-07-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **api:** rename "trash alert" endpoint to "delete alert" ([443fe4e](https://github.com/orbcorp/orb-ruby/commit/443fe4e7f3205805101e81963c6836ead5d5befb))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **api:** rename "trash alert" endpoint to "delete alert" ([443fe4e](https://github.com/orbcorp/orb-ruby/commit/443fe4e7f3205805101e81963c6836ead5d5befb))
|
|
14
|
+
|
|
3
15
|
## [1.21.0](https://github.com/orbcorp/orb-ruby/compare/v1.20.0...v1.21.0) (2026-07-24)
|
|
4
16
|
|
|
5
17
|
|
data/README.md
CHANGED
data/lib/orb/resources/alerts.rb
CHANGED
|
@@ -116,11 +116,11 @@ module Orb
|
|
|
116
116
|
)
|
|
117
117
|
end
|
|
118
118
|
|
|
119
|
-
# This endpoint
|
|
119
|
+
# This endpoint deletes a subscription or customer-scoped alert. The alert is
|
|
120
120
|
# soft-deleted: it stops firing immediately and no longer appears in fetch or list
|
|
121
121
|
# responses, while the underlying record is retained internally for audit.
|
|
122
122
|
#
|
|
123
|
-
# Plan-level alerts cannot be
|
|
123
|
+
# Plan-level alerts cannot be deleted via the API — disable them instead
|
|
124
124
|
# (`POST /v1/alerts/{alert_configuration_id}/disable`). Their removal would need
|
|
125
125
|
# to be unwound from every subscription the alert was propagated to, which isn't
|
|
126
126
|
# supported yet.
|
data/lib/orb/version.rb
CHANGED
|
@@ -92,11 +92,11 @@ module Orb
|
|
|
92
92
|
)
|
|
93
93
|
end
|
|
94
94
|
|
|
95
|
-
# This endpoint
|
|
95
|
+
# This endpoint deletes a subscription or customer-scoped alert. The alert is
|
|
96
96
|
# soft-deleted: it stops firing immediately and no longer appears in fetch or list
|
|
97
97
|
# responses, while the underlying record is retained internally for audit.
|
|
98
98
|
#
|
|
99
|
-
# Plan-level alerts cannot be
|
|
99
|
+
# Plan-level alerts cannot be deleted via the API — disable them instead
|
|
100
100
|
# (`POST /v1/alerts/{alert_configuration_id}/disable`). Their removal would need
|
|
101
101
|
# to be unwound from every subscription the alert was propagated to, which isn't
|
|
102
102
|
# supported yet.
|