dodopayments 1.61.5 → 1.61.7

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: afa870f3b10ee7c4dd9a9d2156a7638a066348093868c2edad5c46c313e0a30d
4
- data.tar.gz: 0a1a2dda4d124310539b26985049c1b77dbdbae3732cbb4a1b25fe84620cef6e
3
+ metadata.gz: 20bb4eda914389828ce33b46200e9c99d50d8bf7675cd0ba37995898d2b1cfc2
4
+ data.tar.gz: 929fb6da8de4a0859a5c15dbecca678eaee157b954b00bf21adcc4f9ac5890c1
5
5
  SHA512:
6
- metadata.gz: 948a0c253d5c12a8686389e6df1d2934fb01c5310f96439356b1f93a340e2274f1d442066572214a33f8334b4ec82fa11dde09e0959683b32ddb692ad0d5d7c5
7
- data.tar.gz: 6d29cf15facbaf1ada5bd27912789be96e90cd3eec6b5c83c315692502839944f408658bf0ff2c39a563ed0a545bb8b528b5c959cd5e4cd5e42ad2b59cefd19d
6
+ metadata.gz: 9e2c93a8f3b0ae8736032cf3bed24d056867e0df216478c27b295e99de457457c549dd38ac8735b7fb0bdda74669b4ecfec15557c86aa7d38e499e8a7c50d24d
7
+ data.tar.gz: 95d2bfa6debe19dcd2bb46e14812220543f834a06b6d98ef76d49cd2be6733c5c2651592aa6e634ef1007309bb90b5570b9c271b9ddf7889c03cdca4b4f27796
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.61.7 (2025-12-03)
4
+
5
+ Full Changelog: [v1.61.6...v1.61.7](https://github.com/dodopayments/dodopayments-ruby/compare/v1.61.6...v1.61.7)
6
+
7
+ ### Chores
8
+
9
+ * **internal:** codegen related update ([bb2f57b](https://github.com/dodopayments/dodopayments-ruby/commit/bb2f57bef749534bcbe159f2e5bf351510c7c4f7))
10
+
11
+ ## 1.61.6 (2025-11-21)
12
+
13
+ Full Changelog: [v1.61.5...v1.61.6](https://github.com/dodopayments/dodopayments-ruby/compare/v1.61.5...v1.61.6)
14
+
15
+ ### Chores
16
+
17
+ * explicitly require "base64" gem ([0463bca](https://github.com/dodopayments/dodopayments-ruby/commit/0463bcabdf87e5e3e853c9322ab84592db77d352))
18
+
3
19
  ## 1.61.5 (2025-11-17)
4
20
 
5
21
  Full Changelog: [v1.60.0...v1.61.5](https://github.com/dodopayments/dodopayments-ruby/compare/v1.60.0...v1.61.5)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "dodopayments", "~> 1.61.5"
20
+ gem "dodopayments", "~> 1.61.7"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -6,16 +6,14 @@ module Dodopayments
6
6
  # @api private
7
7
  #
8
8
  # @example
9
- # # `unsafe_unwrap_webhook_event` is a `Dodopayments::UnsafeUnwrapWebhookEvent`
10
- # case unsafe_unwrap_webhook_event
11
- # when Dodopayments::DisputeAcceptedWebhookEvent
12
- # puts(unsafe_unwrap_webhook_event.business_id)
13
- # when Dodopayments::DisputeCancelledWebhookEvent
14
- # puts(unsafe_unwrap_webhook_event.data)
15
- # when Dodopayments::DisputeChallengedWebhookEvent
16
- # puts(unsafe_unwrap_webhook_event.timestamp)
9
+ # # `customer_request` is a `Dodopayments::CustomerRequest`
10
+ # case customer_request
11
+ # when Dodopayments::AttachExistingCustomer
12
+ # puts(customer_request.customer_id)
13
+ # when Dodopayments::NewCustomer
14
+ # puts(customer_request.email)
17
15
  # else
18
- # puts(unsafe_unwrap_webhook_event)
16
+ # puts(customer_request)
19
17
  # end
20
18
  module Union
21
19
  include Dodopayments::Internal::Type::Converter
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dodopayments
4
- VERSION = "1.61.5"
4
+ VERSION = "1.61.7"
5
5
  end
data/lib/dodopayments.rb CHANGED
@@ -3,6 +3,7 @@
3
3
  # Standard libraries.
4
4
  # rubocop:disable Lint/RedundantRequireStatement
5
5
  require "English"
6
+ require "base64"
6
7
  require "cgi"
7
8
  require "date"
8
9
  require "erb"
data/manifest.yaml CHANGED
@@ -1,5 +1,6 @@
1
1
  dependencies:
2
2
  - English
3
+ - base64
3
4
  - cgi
4
5
  - date
5
6
  - erb
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dodopayments
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.61.5
4
+ version: 1.61.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dodo Payments
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-11-17 00:00:00.000000000 Z
11
+ date: 2025-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool