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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 28a3bc55f24e56e4adc14a7dd606c73d3e9f5bcecd9dc5b3b612edaeae0d1dde
4
- data.tar.gz: '0802343430a012448114f06a65d13838b5f92c7126991f110267b8f8c772b568'
3
+ metadata.gz: 3ef35d682805182fd540072d1a6829ceddb3e8e438bfee769fa34b2689cc5347
4
+ data.tar.gz: 43a3a581105890a3a7d2e680e7345a7dfccd407df8598ab8c36a1644efa66d17
5
5
  SHA512:
6
- metadata.gz: c0d019735276a10d982178a77035c844b1336d4bfe57b091da02e4348b4e2cd35754b1860acbbdf8588d361af43e67b71ea831f3256eaf61a5b91e2da598901e
7
- data.tar.gz: 171a65e34e8057e27a9f196cbc67fb844ac9425422cbf5c3a9c74bf29393b2956871ec5ff4f89975722feba8ba9574c314a8b28d43a7e8af7a417004b336286a
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
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "orb-billing", "~> 1.15.0"
18
+ gem "orb-billing", "~> 1.16.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -13,8 +13,7 @@ module Orb
13
13
  -> { Orb::Internal::Type::ArrayOf[Orb::Models::EventIngestResponse::ValidationFailed] }
14
14
 
15
15
  # @!attribute debug
16
- # Optional debug information (only present when debug=true is passed to the
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] Optional debug information (only present when debug=true is passed to the endpoi
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Orb
4
- VERSION = "1.16.0"
4
+ VERSION = "1.17.0"
5
5
  end
@@ -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],
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orb-billing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Orb