orb-billing 1.16.0 → 1.17.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 +7 -0
- data/README.md +1 -1
- data/lib/orb/models/event_ingest_response.rb +4 -6
- data/lib/orb/version.rb +1 -1
- data/rbi/orb/models/event_ingest_response.rbi +0 -6
- 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: 3ef35d682805182fd540072d1a6829ceddb3e8e438bfee769fa34b2689cc5347
|
|
4
|
+
data.tar.gz: 43a3a581105890a3a7d2e680e7345a7dfccd407df8598ab8c36a1644efa66d17
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfab4687dfb93e20ee62d120aeebeddee6de07b01dc4232014cbf1bd3870de6b3f2175ba88b3b4e09bfc009416d68ccaaa06cd4dc541f4609a0b8270dad1974d
|
|
7
|
+
data.tar.gz: 52733526759b6679171fae76c1bb136a72c4ea0ecb1f1cd42661ddc4bd7e35c083f0616488304badafe03d9f74887f0b4b1edd4c493b353c2dd14676762ba9db
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.17.0](https://github.com/orbcorp/orb-ruby/compare/v1.16.0...v1.17.0) (2026-07-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **api:** deprecate debug mode ingestion response field ([65ab353](https://github.com/orbcorp/orb-ruby/commit/65ab353b1838ee8e6ed45ac4036601af4f80d10a))
|
|
9
|
+
|
|
3
10
|
## [1.16.0](https://github.com/orbcorp/orb-ruby/compare/v1.15.0...v1.16.0) (2026-07-14)
|
|
4
11
|
|
|
5
12
|
|
data/README.md
CHANGED
|
@@ -13,8 +13,7 @@ module Orb
|
|
|
13
13
|
-> { Orb::Internal::Type::ArrayOf[Orb::Models::EventIngestResponse::ValidationFailed] }
|
|
14
14
|
|
|
15
15
|
# @!attribute debug
|
|
16
|
-
#
|
|
17
|
-
# endpoint). Contains ingested and duplicate event idempotency keys.
|
|
16
|
+
# @deprecated
|
|
18
17
|
#
|
|
19
18
|
# @return [Orb::Models::EventIngestResponse::Debug, nil]
|
|
20
19
|
optional :debug, -> { Orb::Models::EventIngestResponse::Debug }, nil?: true
|
|
@@ -25,7 +24,7 @@ module Orb
|
|
|
25
24
|
#
|
|
26
25
|
# @param validation_failed [Array<Orb::Models::EventIngestResponse::ValidationFailed>] Contains all failing validation events. In the case of a 200, this array will al
|
|
27
26
|
#
|
|
28
|
-
# @param debug [Orb::Models::EventIngestResponse::Debug, nil]
|
|
27
|
+
# @param debug [Orb::Models::EventIngestResponse::Debug, nil]
|
|
29
28
|
|
|
30
29
|
class ValidationFailed < Orb::Internal::Type::BaseModel
|
|
31
30
|
# @!attribute idempotency_key
|
|
@@ -50,6 +49,8 @@ module Orb
|
|
|
50
49
|
# @param validation_errors [Array<String>] An array of strings corresponding to validation failures for this idempotency_ke
|
|
51
50
|
end
|
|
52
51
|
|
|
52
|
+
# @deprecated
|
|
53
|
+
#
|
|
53
54
|
# @see Orb::Models::EventIngestResponse#debug
|
|
54
55
|
class Debug < Orb::Internal::Type::BaseModel
|
|
55
56
|
# @!attribute duplicate
|
|
@@ -63,9 +64,6 @@ module Orb
|
|
|
63
64
|
required :ingested, Orb::Internal::Type::ArrayOf[String]
|
|
64
65
|
|
|
65
66
|
# @!method initialize(duplicate:, ingested:)
|
|
66
|
-
# Optional debug information (only present when debug=true is passed to the
|
|
67
|
-
# endpoint). Contains ingested and duplicate event idempotency keys.
|
|
68
|
-
#
|
|
69
67
|
# @param duplicate [Array<String>]
|
|
70
68
|
# @param ingested [Array<String>]
|
|
71
69
|
end
|
data/lib/orb/version.rb
CHANGED
|
@@ -15,8 +15,6 @@ module Orb
|
|
|
15
15
|
end
|
|
16
16
|
attr_accessor :validation_failed
|
|
17
17
|
|
|
18
|
-
# Optional debug information (only present when debug=true is passed to the
|
|
19
|
-
# endpoint). Contains ingested and duplicate event idempotency keys.
|
|
20
18
|
sig { returns(T.nilable(Orb::Models::EventIngestResponse::Debug)) }
|
|
21
19
|
attr_reader :debug
|
|
22
20
|
|
|
@@ -40,8 +38,6 @@ module Orb
|
|
|
40
38
|
# Contains all failing validation events. In the case of a 200, this array will
|
|
41
39
|
# always be empty. This field will always be present.
|
|
42
40
|
validation_failed:,
|
|
43
|
-
# Optional debug information (only present when debug=true is passed to the
|
|
44
|
-
# endpoint). Contains ingested and duplicate event idempotency keys.
|
|
45
41
|
debug: nil
|
|
46
42
|
)
|
|
47
43
|
end
|
|
@@ -115,8 +111,6 @@ module Orb
|
|
|
115
111
|
sig { returns(T::Array[String]) }
|
|
116
112
|
attr_accessor :ingested
|
|
117
113
|
|
|
118
|
-
# Optional debug information (only present when debug=true is passed to the
|
|
119
|
-
# endpoint). Contains ingested and duplicate event idempotency keys.
|
|
120
114
|
sig do
|
|
121
115
|
params(
|
|
122
116
|
duplicate: T::Array[String],
|