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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/dodopayments/internal/type/union.rb +7 -9
- data/lib/dodopayments/version.rb +1 -1
- data/lib/dodopayments.rb +1 -0
- data/manifest.yaml +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 20bb4eda914389828ce33b46200e9c99d50d8bf7675cd0ba37995898d2b1cfc2
|
|
4
|
+
data.tar.gz: 929fb6da8de4a0859a5c15dbecca678eaee157b954b00bf21adcc4f9ac5890c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
@@ -6,16 +6,14 @@ module Dodopayments
|
|
|
6
6
|
# @api private
|
|
7
7
|
#
|
|
8
8
|
# @example
|
|
9
|
-
# # `
|
|
10
|
-
# case
|
|
11
|
-
# when Dodopayments::
|
|
12
|
-
# puts(
|
|
13
|
-
# when Dodopayments::
|
|
14
|
-
# puts(
|
|
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(
|
|
16
|
+
# puts(customer_request)
|
|
19
17
|
# end
|
|
20
18
|
module Union
|
|
21
19
|
include Dodopayments::Internal::Type::Converter
|
data/lib/dodopayments/version.rb
CHANGED
data/lib/dodopayments.rb
CHANGED
data/manifest.yaml
CHANGED
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.
|
|
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
|
+
date: 2025-12-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|