dodopayments 1.56.0 → 1.56.2

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: ce3e5943f7a051da09468b89769723b9a1ec3c8e985572676ac5ccbf1b9d6ad4
4
- data.tar.gz: 244eb00a4c80ec77cf6aaffe5dea51207b4ebecf2afc310a26791f9471dcf997
3
+ metadata.gz: 12aa5f73bbc394a9c94235aa84d6cd067df7d038adcf3de991bace729b58afd7
4
+ data.tar.gz: 99d11f78c2f2cac8457f9d656c190a31bf9e2eaa7369d47351906742d2012a35
5
5
  SHA512:
6
- metadata.gz: a5ce6a84b5bf1224822d61c145e43ff3061bfbb5c8b7e8193e7ee929e94bf968e0129db2320c08862b49d21f2a2e53be13b0ace6f484d27b0b287d111a60f667
7
- data.tar.gz: 78ff2e68c238a62dc345a945ac0f0c36123043cc36a83dccbc78143d6d5ac71667334b5af3d981203d8425e79162daede453b00f0d40c8e8ab58a830e8e99b3e
6
+ metadata.gz: fda9e6a8f1b679fd1d3695c130dceefabc5e354467d70d8319c912a3a55908a182b7ecd0123cb5a4c14123899411a16ff98767a00f867e8d2018562e4b63d2df
7
+ data.tar.gz: 29ac046586bd1d5175a1b63bd2f6ed6d8a285b6e5edb49a78531949378d0356e1ffd0ba67d5794728ca2ecfb9abb84fc497d118ee565a825eed380911a60009e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.56.2 (2025-10-27)
4
+
5
+ Full Changelog: [v1.56.0...v1.56.2](https://github.com/dodopayments/dodopayments-ruby/compare/v1.56.0...v1.56.2)
6
+
7
+ ### Features
8
+
9
+ * **api:** updated to openapi spec v1.56.0 ([e734ebf](https://github.com/dodopayments/dodopayments-ruby/commit/e734ebfd1718a0cfda521a01c71dc0b7faf4a1cd))
10
+
3
11
  ## 1.56.0 (2025-10-25)
4
12
 
5
13
  Full Changelog: [v1.55.8...v1.56.0](https://github.com/dodopayments/dodopayments-ruby/compare/v1.55.8...v1.56.0)
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.56.0"
20
+ gem "dodopayments", "~> 1.56.2"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Dodopayments
4
+ module Models
5
+ # @see Dodopayments::Resources::CheckoutSessions#retrieve
6
+ class CheckoutSessionRetrieveParams < Dodopayments::Internal::Type::BaseModel
7
+ extend Dodopayments::Internal::Type::RequestParameters::Converter
8
+ include Dodopayments::Internal::Type::RequestParameters
9
+
10
+ # @!method initialize(request_options: {})
11
+ # @param request_options [Dodopayments::RequestOptions, Hash{Symbol=>Object}]
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,64 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Dodopayments
4
+ module Models
5
+ # @see Dodopayments::Resources::CheckoutSessions#retrieve
6
+ class CheckoutSessionStatus < Dodopayments::Internal::Type::BaseModel
7
+ # @!attribute id
8
+ # Id of the checkout session
9
+ #
10
+ # @return [String]
11
+ required :id, String
12
+
13
+ # @!attribute created_at
14
+ # Created at timestamp
15
+ #
16
+ # @return [Time]
17
+ required :created_at, Time
18
+
19
+ # @!attribute customer_email
20
+ # Customer email: prefers payment's customer, falls back to session
21
+ #
22
+ # @return [String, nil]
23
+ optional :customer_email, String, nil?: true
24
+
25
+ # @!attribute customer_name
26
+ # Customer name: prefers payment's customer, falls back to session
27
+ #
28
+ # @return [String, nil]
29
+ optional :customer_name, String, nil?: true
30
+
31
+ # @!attribute payment_id
32
+ # Id of the payment created by the checkout sessions.
33
+ #
34
+ # Null if checkout sessions is still at the details collection stage.
35
+ #
36
+ # @return [String, nil]
37
+ optional :payment_id, String, nil?: true
38
+
39
+ # @!attribute payment_status
40
+ # status of the payment.
41
+ #
42
+ # Null if checkout sessions is still at the details collection stage.
43
+ #
44
+ # @return [Symbol, Dodopayments::Models::IntentStatus, nil]
45
+ optional :payment_status, enum: -> { Dodopayments::IntentStatus }, nil?: true
46
+
47
+ # @!method initialize(id:, created_at:, customer_email: nil, customer_name: nil, payment_id: nil, payment_status: nil)
48
+ # Some parameter documentations has been truncated, see
49
+ # {Dodopayments::Models::CheckoutSessionStatus} for more details.
50
+ #
51
+ # @param id [String] Id of the checkout session
52
+ #
53
+ # @param created_at [Time] Created at timestamp
54
+ #
55
+ # @param customer_email [String, nil] Customer email: prefers payment's customer, falls back to session
56
+ #
57
+ # @param customer_name [String, nil] Customer name: prefers payment's customer, falls back to session
58
+ #
59
+ # @param payment_id [String, nil] Id of the payment created by the checkout sessions.
60
+ #
61
+ # @param payment_status [Symbol, Dodopayments::Models::IntentStatus, nil] status of the payment.
62
+ end
63
+ end
64
+ end
@@ -18,6 +18,11 @@ module Dodopayments
18
18
  # @return [Boolean, nil]
19
19
  optional :cancel_at_next_billing_date, Dodopayments::Internal::Type::Boolean, nil?: true
20
20
 
21
+ # @!attribute customer_name
22
+ #
23
+ # @return [String, nil]
24
+ optional :customer_name, String, nil?: true
25
+
21
26
  # @!attribute disable_on_demand
22
27
  #
23
28
  # @return [Dodopayments::Models::SubscriptionUpdateParams::DisableOnDemand, nil]
@@ -43,11 +48,13 @@ module Dodopayments
43
48
  # @return [String, nil]
44
49
  optional :tax_id, String, nil?: true
45
50
 
46
- # @!method initialize(billing: nil, cancel_at_next_billing_date: nil, disable_on_demand: nil, metadata: nil, next_billing_date: nil, status: nil, tax_id: nil, request_options: {})
51
+ # @!method initialize(billing: nil, cancel_at_next_billing_date: nil, customer_name: nil, disable_on_demand: nil, metadata: nil, next_billing_date: nil, status: nil, tax_id: nil, request_options: {})
47
52
  # @param billing [Dodopayments::Models::BillingAddress, nil]
48
53
  #
49
54
  # @param cancel_at_next_billing_date [Boolean, nil] When set, the subscription will remain active until the end of billing period
50
55
  #
56
+ # @param customer_name [String, nil]
57
+ #
51
58
  # @param disable_on_demand [Dodopayments::Models::SubscriptionUpdateParams::DisableOnDemand, nil]
52
59
  #
53
60
  # @param metadata [Hash{Symbol=>String}, nil]
@@ -79,6 +79,10 @@ module Dodopayments
79
79
 
80
80
  CheckoutSessionResponse = Dodopayments::Models::CheckoutSessionResponse
81
81
 
82
+ CheckoutSessionRetrieveParams = Dodopayments::Models::CheckoutSessionRetrieveParams
83
+
84
+ CheckoutSessionStatus = Dodopayments::Models::CheckoutSessionStatus
85
+
82
86
  CountryCode = Dodopayments::Models::CountryCode
83
87
 
84
88
  CreateNewCustomer = Dodopayments::Models::CreateNewCustomer
@@ -52,6 +52,23 @@ module Dodopayments
52
52
  )
53
53
  end
54
54
 
55
+ # @overload retrieve(id, request_options: {})
56
+ #
57
+ # @param id [String]
58
+ # @param request_options [Dodopayments::RequestOptions, Hash{Symbol=>Object}, nil]
59
+ #
60
+ # @return [Dodopayments::Models::CheckoutSessionStatus]
61
+ #
62
+ # @see Dodopayments::Models::CheckoutSessionRetrieveParams
63
+ def retrieve(id, params = {})
64
+ @client.request(
65
+ method: :get,
66
+ path: ["checkouts/%1$s", id],
67
+ model: Dodopayments::CheckoutSessionStatus,
68
+ options: params[:request_options]
69
+ )
70
+ end
71
+
55
72
  # @api private
56
73
  #
57
74
  # @param client [Dodopayments::Client]
@@ -74,7 +74,7 @@ module Dodopayments
74
74
  )
75
75
  end
76
76
 
77
- # @overload update(subscription_id, billing: nil, cancel_at_next_billing_date: nil, disable_on_demand: nil, metadata: nil, next_billing_date: nil, status: nil, tax_id: nil, request_options: {})
77
+ # @overload update(subscription_id, billing: nil, cancel_at_next_billing_date: nil, customer_name: nil, disable_on_demand: nil, metadata: nil, next_billing_date: nil, status: nil, tax_id: nil, request_options: {})
78
78
  #
79
79
  # @param subscription_id [String] Subscription Id
80
80
  #
@@ -82,6 +82,8 @@ module Dodopayments
82
82
  #
83
83
  # @param cancel_at_next_billing_date [Boolean, nil] When set, the subscription will remain active until the end of billing period
84
84
  #
85
+ # @param customer_name [String, nil]
86
+ #
85
87
  # @param disable_on_demand [Dodopayments::Models::SubscriptionUpdateParams::DisableOnDemand, nil]
86
88
  #
87
89
  # @param metadata [Hash{Symbol=>String}, nil]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dodopayments
4
- VERSION = "1.56.0"
4
+ VERSION = "1.56.2"
5
5
  end
data/lib/dodopayments.rb CHANGED
@@ -81,6 +81,8 @@ require_relative "dodopayments/models/brand_update_images_response"
81
81
  require_relative "dodopayments/models/brand_update_params"
82
82
  require_relative "dodopayments/models/checkout_session_create_params"
83
83
  require_relative "dodopayments/models/checkout_session_response"
84
+ require_relative "dodopayments/models/checkout_session_retrieve_params"
85
+ require_relative "dodopayments/models/checkout_session_status"
84
86
  require_relative "dodopayments/models/country_code"
85
87
  require_relative "dodopayments/models/create_new_customer"
86
88
  require_relative "dodopayments/models/currency"
@@ -0,0 +1,32 @@
1
+ # typed: strong
2
+
3
+ module Dodopayments
4
+ module Models
5
+ class CheckoutSessionRetrieveParams < Dodopayments::Internal::Type::BaseModel
6
+ extend Dodopayments::Internal::Type::RequestParameters::Converter
7
+ include Dodopayments::Internal::Type::RequestParameters
8
+
9
+ OrHash =
10
+ T.type_alias do
11
+ T.any(
12
+ Dodopayments::CheckoutSessionRetrieveParams,
13
+ Dodopayments::Internal::AnyHash
14
+ )
15
+ end
16
+
17
+ sig do
18
+ params(request_options: Dodopayments::RequestOptions::OrHash).returns(
19
+ T.attached_class
20
+ )
21
+ end
22
+ def self.new(request_options: {})
23
+ end
24
+
25
+ sig do
26
+ override.returns({ request_options: Dodopayments::RequestOptions })
27
+ end
28
+ def to_hash
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,88 @@
1
+ # typed: strong
2
+
3
+ module Dodopayments
4
+ module Models
5
+ class CheckoutSessionStatus < Dodopayments::Internal::Type::BaseModel
6
+ OrHash =
7
+ T.type_alias do
8
+ T.any(
9
+ Dodopayments::CheckoutSessionStatus,
10
+ Dodopayments::Internal::AnyHash
11
+ )
12
+ end
13
+
14
+ # Id of the checkout session
15
+ sig { returns(String) }
16
+ attr_accessor :id
17
+
18
+ # Created at timestamp
19
+ sig { returns(Time) }
20
+ attr_accessor :created_at
21
+
22
+ # Customer email: prefers payment's customer, falls back to session
23
+ sig { returns(T.nilable(String)) }
24
+ attr_accessor :customer_email
25
+
26
+ # Customer name: prefers payment's customer, falls back to session
27
+ sig { returns(T.nilable(String)) }
28
+ attr_accessor :customer_name
29
+
30
+ # Id of the payment created by the checkout sessions.
31
+ #
32
+ # Null if checkout sessions is still at the details collection stage.
33
+ sig { returns(T.nilable(String)) }
34
+ attr_accessor :payment_id
35
+
36
+ # status of the payment.
37
+ #
38
+ # Null if checkout sessions is still at the details collection stage.
39
+ sig { returns(T.nilable(Dodopayments::IntentStatus::TaggedSymbol)) }
40
+ attr_accessor :payment_status
41
+
42
+ sig do
43
+ params(
44
+ id: String,
45
+ created_at: Time,
46
+ customer_email: T.nilable(String),
47
+ customer_name: T.nilable(String),
48
+ payment_id: T.nilable(String),
49
+ payment_status: T.nilable(Dodopayments::IntentStatus::OrSymbol)
50
+ ).returns(T.attached_class)
51
+ end
52
+ def self.new(
53
+ # Id of the checkout session
54
+ id:,
55
+ # Created at timestamp
56
+ created_at:,
57
+ # Customer email: prefers payment's customer, falls back to session
58
+ customer_email: nil,
59
+ # Customer name: prefers payment's customer, falls back to session
60
+ customer_name: nil,
61
+ # Id of the payment created by the checkout sessions.
62
+ #
63
+ # Null if checkout sessions is still at the details collection stage.
64
+ payment_id: nil,
65
+ # status of the payment.
66
+ #
67
+ # Null if checkout sessions is still at the details collection stage.
68
+ payment_status: nil
69
+ )
70
+ end
71
+
72
+ sig do
73
+ override.returns(
74
+ {
75
+ id: String,
76
+ created_at: Time,
77
+ customer_email: T.nilable(String),
78
+ customer_name: T.nilable(String),
79
+ payment_id: T.nilable(String),
80
+ payment_status: T.nilable(Dodopayments::IntentStatus::TaggedSymbol)
81
+ }
82
+ )
83
+ end
84
+ def to_hash
85
+ end
86
+ end
87
+ end
88
+ end
@@ -26,6 +26,9 @@ module Dodopayments
26
26
  sig { returns(T.nilable(T::Boolean)) }
27
27
  attr_accessor :cancel_at_next_billing_date
28
28
 
29
+ sig { returns(T.nilable(String)) }
30
+ attr_accessor :customer_name
31
+
29
32
  sig do
30
33
  returns(
31
34
  T.nilable(Dodopayments::SubscriptionUpdateParams::DisableOnDemand)
@@ -59,6 +62,7 @@ module Dodopayments
59
62
  params(
60
63
  billing: T.nilable(Dodopayments::BillingAddress::OrHash),
61
64
  cancel_at_next_billing_date: T.nilable(T::Boolean),
65
+ customer_name: T.nilable(String),
62
66
  disable_on_demand:
63
67
  T.nilable(
64
68
  Dodopayments::SubscriptionUpdateParams::DisableOnDemand::OrHash
@@ -74,6 +78,7 @@ module Dodopayments
74
78
  billing: nil,
75
79
  # When set, the subscription will remain active until the end of billing period
76
80
  cancel_at_next_billing_date: nil,
81
+ customer_name: nil,
77
82
  disable_on_demand: nil,
78
83
  metadata: nil,
79
84
  next_billing_date: nil,
@@ -88,6 +93,7 @@ module Dodopayments
88
93
  {
89
94
  billing: T.nilable(Dodopayments::BillingAddress),
90
95
  cancel_at_next_billing_date: T.nilable(T::Boolean),
96
+ customer_name: T.nilable(String),
91
97
  disable_on_demand:
92
98
  T.nilable(
93
99
  Dodopayments::SubscriptionUpdateParams::DisableOnDemand
@@ -42,6 +42,11 @@ module Dodopayments
42
42
 
43
43
  CheckoutSessionResponse = Dodopayments::Models::CheckoutSessionResponse
44
44
 
45
+ CheckoutSessionRetrieveParams =
46
+ Dodopayments::Models::CheckoutSessionRetrieveParams
47
+
48
+ CheckoutSessionStatus = Dodopayments::Models::CheckoutSessionStatus
49
+
45
50
  CountryCode = Dodopayments::Models::CountryCode
46
51
 
47
52
  CreateNewCustomer = Dodopayments::Models::CreateNewCustomer
@@ -74,6 +74,15 @@ module Dodopayments
74
74
  )
75
75
  end
76
76
 
77
+ sig do
78
+ params(
79
+ id: String,
80
+ request_options: Dodopayments::RequestOptions::OrHash
81
+ ).returns(Dodopayments::CheckoutSessionStatus)
82
+ end
83
+ def retrieve(id, request_options: {})
84
+ end
85
+
77
86
  # @api private
78
87
  sig { params(client: Dodopayments::Client).returns(T.attached_class) }
79
88
  def self.new(client:)
@@ -91,6 +91,7 @@ module Dodopayments
91
91
  subscription_id: String,
92
92
  billing: T.nilable(Dodopayments::BillingAddress::OrHash),
93
93
  cancel_at_next_billing_date: T.nilable(T::Boolean),
94
+ customer_name: T.nilable(String),
94
95
  disable_on_demand:
95
96
  T.nilable(
96
97
  Dodopayments::SubscriptionUpdateParams::DisableOnDemand::OrHash
@@ -108,6 +109,7 @@ module Dodopayments
108
109
  billing: nil,
109
110
  # When set, the subscription will remain active until the end of billing period
110
111
  cancel_at_next_billing_date: nil,
112
+ customer_name: nil,
111
113
  disable_on_demand: nil,
112
114
  metadata: nil,
113
115
  next_billing_date: nil,
@@ -0,0 +1,15 @@
1
+ module Dodopayments
2
+ module Models
3
+ type checkout_session_retrieve_params =
4
+ { } & Dodopayments::Internal::Type::request_parameters
5
+
6
+ class CheckoutSessionRetrieveParams < Dodopayments::Internal::Type::BaseModel
7
+ extend Dodopayments::Internal::Type::RequestParameters::Converter
8
+ include Dodopayments::Internal::Type::RequestParameters
9
+
10
+ def initialize: (?request_options: Dodopayments::request_opts) -> void
11
+
12
+ def to_hash: -> { request_options: Dodopayments::RequestOptions }
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,45 @@
1
+ module Dodopayments
2
+ module Models
3
+ type checkout_session_status =
4
+ {
5
+ id: String,
6
+ created_at: Time,
7
+ customer_email: String?,
8
+ customer_name: String?,
9
+ payment_id: String?,
10
+ payment_status: Dodopayments::Models::intent_status?
11
+ }
12
+
13
+ class CheckoutSessionStatus < Dodopayments::Internal::Type::BaseModel
14
+ attr_accessor id: String
15
+
16
+ attr_accessor created_at: Time
17
+
18
+ attr_accessor customer_email: String?
19
+
20
+ attr_accessor customer_name: String?
21
+
22
+ attr_accessor payment_id: String?
23
+
24
+ attr_accessor payment_status: Dodopayments::Models::intent_status?
25
+
26
+ def initialize: (
27
+ id: String,
28
+ created_at: Time,
29
+ ?customer_email: String?,
30
+ ?customer_name: String?,
31
+ ?payment_id: String?,
32
+ ?payment_status: Dodopayments::Models::intent_status?
33
+ ) -> void
34
+
35
+ def to_hash: -> {
36
+ id: String,
37
+ created_at: Time,
38
+ customer_email: String?,
39
+ customer_name: String?,
40
+ payment_id: String?,
41
+ payment_status: Dodopayments::Models::intent_status?
42
+ }
43
+ end
44
+ end
45
+ end
@@ -4,6 +4,7 @@ module Dodopayments
4
4
  {
5
5
  billing: Dodopayments::BillingAddress?,
6
6
  cancel_at_next_billing_date: bool?,
7
+ customer_name: String?,
7
8
  disable_on_demand: Dodopayments::SubscriptionUpdateParams::DisableOnDemand?,
8
9
  metadata: ::Hash[Symbol, String]?,
9
10
  next_billing_date: Time?,
@@ -20,6 +21,8 @@ module Dodopayments
20
21
 
21
22
  attr_accessor cancel_at_next_billing_date: bool?
22
23
 
24
+ attr_accessor customer_name: String?
25
+
23
26
  attr_accessor disable_on_demand: Dodopayments::SubscriptionUpdateParams::DisableOnDemand?
24
27
 
25
28
  attr_accessor metadata: ::Hash[Symbol, String]?
@@ -33,6 +36,7 @@ module Dodopayments
33
36
  def initialize: (
34
37
  ?billing: Dodopayments::BillingAddress?,
35
38
  ?cancel_at_next_billing_date: bool?,
39
+ ?customer_name: String?,
36
40
  ?disable_on_demand: Dodopayments::SubscriptionUpdateParams::DisableOnDemand?,
37
41
  ?metadata: ::Hash[Symbol, String]?,
38
42
  ?next_billing_date: Time?,
@@ -44,6 +48,7 @@ module Dodopayments
44
48
  def to_hash: -> {
45
49
  billing: Dodopayments::BillingAddress?,
46
50
  cancel_at_next_billing_date: bool?,
51
+ customer_name: String?,
47
52
  disable_on_demand: Dodopayments::SubscriptionUpdateParams::DisableOnDemand?,
48
53
  metadata: ::Hash[Symbol, String]?,
49
54
  next_billing_date: Time?,
@@ -39,6 +39,10 @@ module Dodopayments
39
39
 
40
40
  class CheckoutSessionResponse = Dodopayments::Models::CheckoutSessionResponse
41
41
 
42
+ class CheckoutSessionRetrieveParams = Dodopayments::Models::CheckoutSessionRetrieveParams
43
+
44
+ class CheckoutSessionStatus = Dodopayments::Models::CheckoutSessionStatus
45
+
42
46
  module CountryCode = Dodopayments::Models::CountryCode
43
47
 
44
48
  class CreateNewCustomer = Dodopayments::Models::CreateNewCustomer
@@ -19,6 +19,11 @@ module Dodopayments
19
19
  ?request_options: Dodopayments::request_opts
20
20
  ) -> Dodopayments::CheckoutSessionResponse
21
21
 
22
+ def retrieve: (
23
+ String id,
24
+ ?request_options: Dodopayments::request_opts
25
+ ) -> Dodopayments::CheckoutSessionStatus
26
+
22
27
  def initialize: (client: Dodopayments::Client) -> void
23
28
  end
24
29
  end
@@ -30,6 +30,7 @@ module Dodopayments
30
30
  String subscription_id,
31
31
  ?billing: Dodopayments::BillingAddress?,
32
32
  ?cancel_at_next_billing_date: bool?,
33
+ ?customer_name: String?,
33
34
  ?disable_on_demand: Dodopayments::SubscriptionUpdateParams::DisableOnDemand?,
34
35
  ?metadata: ::Hash[Symbol, String]?,
35
36
  ?next_billing_date: Time?,
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.56.0
4
+ version: 1.56.2
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-10-25 00:00:00.000000000 Z
11
+ date: 2025-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool
@@ -80,6 +80,8 @@ files:
80
80
  - lib/dodopayments/models/checkout_session_create_params.rb
81
81
  - lib/dodopayments/models/checkout_session_request.rb
82
82
  - lib/dodopayments/models/checkout_session_response.rb
83
+ - lib/dodopayments/models/checkout_session_retrieve_params.rb
84
+ - lib/dodopayments/models/checkout_session_status.rb
83
85
  - lib/dodopayments/models/country_code.rb
84
86
  - lib/dodopayments/models/create_new_customer.rb
85
87
  - lib/dodopayments/models/currency.rb
@@ -305,6 +307,8 @@ files:
305
307
  - rbi/dodopayments/models/checkout_session_create_params.rbi
306
308
  - rbi/dodopayments/models/checkout_session_request.rbi
307
309
  - rbi/dodopayments/models/checkout_session_response.rbi
310
+ - rbi/dodopayments/models/checkout_session_retrieve_params.rbi
311
+ - rbi/dodopayments/models/checkout_session_status.rbi
308
312
  - rbi/dodopayments/models/country_code.rbi
309
313
  - rbi/dodopayments/models/create_new_customer.rbi
310
314
  - rbi/dodopayments/models/currency.rbi
@@ -529,6 +533,8 @@ files:
529
533
  - sig/dodopayments/models/checkout_session_create_params.rbs
530
534
  - sig/dodopayments/models/checkout_session_request.rbs
531
535
  - sig/dodopayments/models/checkout_session_response.rbs
536
+ - sig/dodopayments/models/checkout_session_retrieve_params.rbs
537
+ - sig/dodopayments/models/checkout_session_status.rbs
532
538
  - sig/dodopayments/models/country_code.rbs
533
539
  - sig/dodopayments/models/create_new_customer.rbs
534
540
  - sig/dodopayments/models/currency.rbs