dodopayments 1.52.5 → 1.53.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.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/README.md +1 -1
  4. data/lib/dodopayments/models/customers/customer_wallet.rb +43 -0
  5. data/lib/dodopayments/models/customers/wallet_list_params.rb +16 -0
  6. data/lib/dodopayments/models/customers/wallet_list_response.rb +26 -0
  7. data/lib/dodopayments/models/customers/wallets/customer_wallet_transaction.rb +102 -0
  8. data/lib/dodopayments/models/customers/wallets/ledger_entry_create_params.rb +67 -0
  9. data/lib/dodopayments/models/customers/wallets/ledger_entry_list_params.rb +40 -0
  10. data/lib/dodopayments/models/license_activate_response.rb +87 -0
  11. data/lib/dodopayments/models/payment.rb +78 -3
  12. data/lib/dodopayments/models/refund.rb +9 -1
  13. data/lib/dodopayments/models/refund_list_response.rb +81 -0
  14. data/lib/dodopayments/models/subscription_charge_params.rb +32 -1
  15. data/lib/dodopayments/resources/customers/wallets/ledger_entries.rb +75 -0
  16. data/lib/dodopayments/resources/customers/wallets.rb +38 -0
  17. data/lib/dodopayments/resources/customers.rb +4 -0
  18. data/lib/dodopayments/resources/licenses.rb +2 -2
  19. data/lib/dodopayments/resources/refunds.rb +2 -2
  20. data/lib/dodopayments/resources/subscriptions.rb +3 -1
  21. data/lib/dodopayments/version.rb +1 -1
  22. data/lib/dodopayments.rb +10 -0
  23. data/rbi/dodopayments/models/customers/customer_wallet.rbi +66 -0
  24. data/rbi/dodopayments/models/customers/wallet_list_params.rbi +34 -0
  25. data/rbi/dodopayments/models/customers/wallet_list_response.rbi +48 -0
  26. data/rbi/dodopayments/models/customers/wallets/customer_wallet_transaction.rbi +173 -0
  27. data/rbi/dodopayments/models/customers/wallets/ledger_entry_create_params.rbi +119 -0
  28. data/rbi/dodopayments/models/customers/wallets/ledger_entry_list_params.rbi +71 -0
  29. data/rbi/dodopayments/models/license_activate_response.rbi +140 -0
  30. data/rbi/dodopayments/models/payment.rbi +102 -3
  31. data/rbi/dodopayments/models/refund.rbi +13 -0
  32. data/rbi/dodopayments/models/refund_list_response.rbi +104 -0
  33. data/rbi/dodopayments/models/subscription_charge_params.rbi +74 -0
  34. data/rbi/dodopayments/resources/customers/wallets/ledger_entries.rbi +67 -0
  35. data/rbi/dodopayments/resources/customers/wallets.rbi +32 -0
  36. data/rbi/dodopayments/resources/customers.rbi +3 -0
  37. data/rbi/dodopayments/resources/licenses.rbi +1 -1
  38. data/rbi/dodopayments/resources/refunds.rbi +1 -1
  39. data/rbi/dodopayments/resources/subscriptions.rbi +6 -0
  40. data/sig/dodopayments/models/customers/customer_wallet.rbs +44 -0
  41. data/sig/dodopayments/models/customers/wallet_list_params.rbs +17 -0
  42. data/sig/dodopayments/models/customers/wallet_list_response.rbs +27 -0
  43. data/sig/dodopayments/models/customers/wallets/customer_wallet_transaction.rbs +102 -0
  44. data/sig/dodopayments/models/customers/wallets/ledger_entry_create_params.rbs +61 -0
  45. data/sig/dodopayments/models/customers/wallets/ledger_entry_list_params.rbs +48 -0
  46. data/sig/dodopayments/models/license_activate_response.rbs +62 -0
  47. data/sig/dodopayments/models/payment.rbs +61 -4
  48. data/sig/dodopayments/models/refund.rbs +5 -0
  49. data/sig/dodopayments/models/refund_list_response.rbs +60 -0
  50. data/sig/dodopayments/models/subscription_charge_params.rbs +27 -0
  51. data/sig/dodopayments/resources/customers/wallets/ledger_entries.rbs +29 -0
  52. data/sig/dodopayments/resources/customers/wallets.rbs +16 -0
  53. data/sig/dodopayments/resources/customers.rbs +2 -0
  54. data/sig/dodopayments/resources/licenses.rbs +1 -1
  55. data/sig/dodopayments/resources/refunds.rbs +1 -1
  56. data/sig/dodopayments/resources/subscriptions.rbs +1 -0
  57. metadata +32 -2
@@ -12,7 +12,7 @@ module Dodopayments
12
12
  disputes: ::Array[Dodopayments::Dispute],
13
13
  metadata: ::Hash[Symbol, String],
14
14
  payment_id: String,
15
- refunds: ::Array[Dodopayments::Refund],
15
+ refunds: ::Array[Dodopayments::Payment::Refund],
16
16
  settlement_amount: Integer,
17
17
  settlement_currency: Dodopayments::Models::currency,
18
18
  total_amount: Integer,
@@ -56,7 +56,7 @@ module Dodopayments
56
56
 
57
57
  attr_accessor payment_id: String
58
58
 
59
- attr_accessor refunds: ::Array[Dodopayments::Refund]
59
+ attr_accessor refunds: ::Array[Dodopayments::Payment::Refund]
60
60
 
61
61
  attr_accessor settlement_amount: Integer
62
62
 
@@ -109,7 +109,7 @@ module Dodopayments
109
109
  disputes: ::Array[Dodopayments::Dispute],
110
110
  metadata: ::Hash[Symbol, String],
111
111
  payment_id: String,
112
- refunds: ::Array[Dodopayments::Refund],
112
+ refunds: ::Array[Dodopayments::Payment::Refund],
113
113
  settlement_amount: Integer,
114
114
  settlement_currency: Dodopayments::Models::currency,
115
115
  total_amount: Integer,
@@ -143,7 +143,7 @@ module Dodopayments
143
143
  disputes: ::Array[Dodopayments::Dispute],
144
144
  metadata: ::Hash[Symbol, String],
145
145
  payment_id: String,
146
- refunds: ::Array[Dodopayments::Refund],
146
+ refunds: ::Array[Dodopayments::Payment::Refund],
147
147
  settlement_amount: Integer,
148
148
  settlement_currency: Dodopayments::Models::currency,
149
149
  total_amount: Integer,
@@ -166,6 +166,63 @@ module Dodopayments
166
166
  updated_at: Time?
167
167
  }
168
168
 
169
+ type refund =
170
+ {
171
+ business_id: String,
172
+ created_at: Time,
173
+ is_partial: bool,
174
+ payment_id: String,
175
+ refund_id: String,
176
+ status: Dodopayments::Models::refund_status,
177
+ amount: Integer?,
178
+ currency: Dodopayments::Models::currency?,
179
+ reason: String?
180
+ }
181
+
182
+ class Refund < Dodopayments::Internal::Type::BaseModel
183
+ attr_accessor business_id: String
184
+
185
+ attr_accessor created_at: Time
186
+
187
+ attr_accessor is_partial: bool
188
+
189
+ attr_accessor payment_id: String
190
+
191
+ attr_accessor refund_id: String
192
+
193
+ attr_accessor status: Dodopayments::Models::refund_status
194
+
195
+ attr_accessor amount: Integer?
196
+
197
+ attr_accessor currency: Dodopayments::Models::currency?
198
+
199
+ attr_accessor reason: String?
200
+
201
+ def initialize: (
202
+ business_id: String,
203
+ created_at: Time,
204
+ is_partial: bool,
205
+ payment_id: String,
206
+ refund_id: String,
207
+ status: Dodopayments::Models::refund_status,
208
+ ?amount: Integer?,
209
+ ?currency: Dodopayments::Models::currency?,
210
+ ?reason: String?
211
+ ) -> void
212
+
213
+ def to_hash: -> {
214
+ business_id: String,
215
+ created_at: Time,
216
+ is_partial: bool,
217
+ payment_id: String,
218
+ refund_id: String,
219
+ status: Dodopayments::Models::refund_status,
220
+ amount: Integer?,
221
+ currency: Dodopayments::Models::currency?,
222
+ reason: String?
223
+ }
224
+ end
225
+
169
226
  type product_cart = { product_id: String, quantity: Integer }
170
227
 
171
228
  class ProductCart < Dodopayments::Internal::Type::BaseModel
@@ -4,6 +4,7 @@ module Dodopayments
4
4
  {
5
5
  business_id: String,
6
6
  created_at: Time,
7
+ customer: Dodopayments::CustomerLimitedDetails,
7
8
  is_partial: bool,
8
9
  payment_id: String,
9
10
  refund_id: String,
@@ -18,6 +19,8 @@ module Dodopayments
18
19
 
19
20
  attr_accessor created_at: Time
20
21
 
22
+ attr_accessor customer: Dodopayments::CustomerLimitedDetails
23
+
21
24
  attr_accessor is_partial: bool
22
25
 
23
26
  attr_accessor payment_id: String
@@ -35,6 +38,7 @@ module Dodopayments
35
38
  def initialize: (
36
39
  business_id: String,
37
40
  created_at: Time,
41
+ customer: Dodopayments::CustomerLimitedDetails,
38
42
  is_partial: bool,
39
43
  payment_id: String,
40
44
  refund_id: String,
@@ -47,6 +51,7 @@ module Dodopayments
47
51
  def to_hash: -> {
48
52
  business_id: String,
49
53
  created_at: Time,
54
+ customer: Dodopayments::CustomerLimitedDetails,
50
55
  is_partial: bool,
51
56
  payment_id: String,
52
57
  refund_id: String,
@@ -0,0 +1,60 @@
1
+ module Dodopayments
2
+ module Models
3
+ type refund_list_response =
4
+ {
5
+ business_id: String,
6
+ created_at: Time,
7
+ is_partial: bool,
8
+ payment_id: String,
9
+ refund_id: String,
10
+ status: Dodopayments::Models::refund_status,
11
+ amount: Integer?,
12
+ currency: Dodopayments::Models::currency?,
13
+ reason: String?
14
+ }
15
+
16
+ class RefundListResponse < Dodopayments::Internal::Type::BaseModel
17
+ attr_accessor business_id: String
18
+
19
+ attr_accessor created_at: Time
20
+
21
+ attr_accessor is_partial: bool
22
+
23
+ attr_accessor payment_id: String
24
+
25
+ attr_accessor refund_id: String
26
+
27
+ attr_accessor status: Dodopayments::Models::refund_status
28
+
29
+ attr_accessor amount: Integer?
30
+
31
+ attr_accessor currency: Dodopayments::Models::currency?
32
+
33
+ attr_accessor reason: String?
34
+
35
+ def initialize: (
36
+ business_id: String,
37
+ created_at: Time,
38
+ is_partial: bool,
39
+ payment_id: String,
40
+ refund_id: String,
41
+ status: Dodopayments::Models::refund_status,
42
+ ?amount: Integer?,
43
+ ?currency: Dodopayments::Models::currency?,
44
+ ?reason: String?
45
+ ) -> void
46
+
47
+ def to_hash: -> {
48
+ business_id: String,
49
+ created_at: Time,
50
+ is_partial: bool,
51
+ payment_id: String,
52
+ refund_id: String,
53
+ status: Dodopayments::Models::refund_status,
54
+ amount: Integer?,
55
+ currency: Dodopayments::Models::currency?,
56
+ reason: String?
57
+ }
58
+ end
59
+ end
60
+ end
@@ -4,6 +4,7 @@ module Dodopayments
4
4
  {
5
5
  product_price: Integer,
6
6
  adaptive_currency_fees_inclusive: bool?,
7
+ customer_balance_config: Dodopayments::SubscriptionChargeParams::CustomerBalanceConfig?,
7
8
  metadata: ::Hash[Symbol, String]?,
8
9
  product_currency: Dodopayments::Models::currency?,
9
10
  product_description: String?
@@ -18,6 +19,8 @@ module Dodopayments
18
19
 
19
20
  attr_accessor adaptive_currency_fees_inclusive: bool?
20
21
 
22
+ attr_accessor customer_balance_config: Dodopayments::SubscriptionChargeParams::CustomerBalanceConfig?
23
+
21
24
  attr_accessor metadata: ::Hash[Symbol, String]?
22
25
 
23
26
  attr_accessor product_currency: Dodopayments::Models::currency?
@@ -27,6 +30,7 @@ module Dodopayments
27
30
  def initialize: (
28
31
  product_price: Integer,
29
32
  ?adaptive_currency_fees_inclusive: bool?,
33
+ ?customer_balance_config: Dodopayments::SubscriptionChargeParams::CustomerBalanceConfig?,
30
34
  ?metadata: ::Hash[Symbol, String]?,
31
35
  ?product_currency: Dodopayments::Models::currency?,
32
36
  ?product_description: String?,
@@ -36,11 +40,34 @@ module Dodopayments
36
40
  def to_hash: -> {
37
41
  product_price: Integer,
38
42
  adaptive_currency_fees_inclusive: bool?,
43
+ customer_balance_config: Dodopayments::SubscriptionChargeParams::CustomerBalanceConfig?,
39
44
  metadata: ::Hash[Symbol, String]?,
40
45
  product_currency: Dodopayments::Models::currency?,
41
46
  product_description: String?,
42
47
  request_options: Dodopayments::RequestOptions
43
48
  }
49
+
50
+ type customer_balance_config =
51
+ {
52
+ allow_customer_credits_purchase: bool?,
53
+ allow_customer_credits_usage: bool?
54
+ }
55
+
56
+ class CustomerBalanceConfig < Dodopayments::Internal::Type::BaseModel
57
+ attr_accessor allow_customer_credits_purchase: bool?
58
+
59
+ attr_accessor allow_customer_credits_usage: bool?
60
+
61
+ def initialize: (
62
+ ?allow_customer_credits_purchase: bool?,
63
+ ?allow_customer_credits_usage: bool?
64
+ ) -> void
65
+
66
+ def to_hash: -> {
67
+ allow_customer_credits_purchase: bool?,
68
+ allow_customer_credits_usage: bool?
69
+ }
70
+ end
44
71
  end
45
72
  end
46
73
  end
@@ -0,0 +1,29 @@
1
+ module Dodopayments
2
+ module Resources
3
+ class Customers
4
+ class Wallets
5
+ class LedgerEntries
6
+ def create: (
7
+ String customer_id,
8
+ amount: Integer,
9
+ currency: Dodopayments::Models::currency,
10
+ entry_type: Dodopayments::Models::Customers::Wallets::LedgerEntryCreateParams::entry_type,
11
+ ?idempotency_key: String?,
12
+ ?reason: String?,
13
+ ?request_options: Dodopayments::request_opts
14
+ ) -> Dodopayments::Customers::CustomerWallet
15
+
16
+ def list: (
17
+ String customer_id,
18
+ ?currency: Dodopayments::Models::currency,
19
+ ?page_number: Integer,
20
+ ?page_size: Integer,
21
+ ?request_options: Dodopayments::request_opts
22
+ ) -> Dodopayments::Internal::DefaultPageNumberPagination[Dodopayments::Customers::Wallets::CustomerWalletTransaction]
23
+
24
+ def initialize: (client: Dodopayments::Client) -> void
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,16 @@
1
+ module Dodopayments
2
+ module Resources
3
+ class Customers
4
+ class Wallets
5
+ attr_reader ledger_entries: Dodopayments::Resources::Customers::Wallets::LedgerEntries
6
+
7
+ def list: (
8
+ String customer_id,
9
+ ?request_options: Dodopayments::request_opts
10
+ ) -> Dodopayments::Models::Customers::WalletListResponse
11
+
12
+ def initialize: (client: Dodopayments::Client) -> void
13
+ end
14
+ end
15
+ end
16
+ end
@@ -3,6 +3,8 @@ module Dodopayments
3
3
  class Customers
4
4
  attr_reader customer_portal: Dodopayments::Resources::Customers::CustomerPortal
5
5
 
6
+ attr_reader wallets: Dodopayments::Resources::Customers::Wallets
7
+
6
8
  def create: (
7
9
  email: String,
8
10
  name: String,
@@ -5,7 +5,7 @@ module Dodopayments
5
5
  license_key: String,
6
6
  name: String,
7
7
  ?request_options: Dodopayments::request_opts
8
- ) -> Dodopayments::LicenseKeyInstance
8
+ ) -> Dodopayments::Models::LicenseActivateResponse
9
9
 
10
10
  def deactivate: (
11
11
  license_key: String,
@@ -21,7 +21,7 @@ module Dodopayments
21
21
  ?page_size: Integer,
22
22
  ?status: Dodopayments::Models::RefundListParams::status,
23
23
  ?request_options: Dodopayments::request_opts
24
- ) -> Dodopayments::Internal::DefaultPageNumberPagination[Dodopayments::Refund]
24
+ ) -> Dodopayments::Internal::DefaultPageNumberPagination[Dodopayments::Models::RefundListResponse]
25
25
 
26
26
  def initialize: (client: Dodopayments::Client) -> void
27
27
  end
@@ -61,6 +61,7 @@ module Dodopayments
61
61
  String subscription_id,
62
62
  product_price: Integer,
63
63
  ?adaptive_currency_fees_inclusive: bool?,
64
+ ?customer_balance_config: Dodopayments::SubscriptionChargeParams::CustomerBalanceConfig?,
64
65
  ?metadata: ::Hash[Symbol, String]?,
65
66
  ?product_currency: Dodopayments::Models::currency?,
66
67
  ?product_description: String?,
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.52.5
4
+ version: 1.53.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-09-04 00:00:00.000000000 Z
11
+ date: 2025-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool
@@ -92,6 +92,12 @@ files:
92
92
  - lib/dodopayments/models/customer_retrieve_params.rb
93
93
  - lib/dodopayments/models/customer_update_params.rb
94
94
  - lib/dodopayments/models/customers/customer_portal_create_params.rb
95
+ - lib/dodopayments/models/customers/customer_wallet.rb
96
+ - lib/dodopayments/models/customers/wallet_list_params.rb
97
+ - lib/dodopayments/models/customers/wallet_list_response.rb
98
+ - lib/dodopayments/models/customers/wallets/customer_wallet_transaction.rb
99
+ - lib/dodopayments/models/customers/wallets/ledger_entry_create_params.rb
100
+ - lib/dodopayments/models/customers/wallets/ledger_entry_list_params.rb
95
101
  - lib/dodopayments/models/discount.rb
96
102
  - lib/dodopayments/models/discount_create_params.rb
97
103
  - lib/dodopayments/models/discount_delete_params.rb
@@ -112,6 +118,7 @@ files:
112
118
  - lib/dodopayments/models/invoices/payment_retrieve_params.rb
113
119
  - lib/dodopayments/models/invoices/payment_retrieve_refund_params.rb
114
120
  - lib/dodopayments/models/license_activate_params.rb
121
+ - lib/dodopayments/models/license_activate_response.rb
115
122
  - lib/dodopayments/models/license_deactivate_params.rb
116
123
  - lib/dodopayments/models/license_key.rb
117
124
  - lib/dodopayments/models/license_key_duration.rb
@@ -165,6 +172,7 @@ files:
165
172
  - lib/dodopayments/models/refund.rb
166
173
  - lib/dodopayments/models/refund_create_params.rb
167
174
  - lib/dodopayments/models/refund_list_params.rb
175
+ - lib/dodopayments/models/refund_list_response.rb
168
176
  - lib/dodopayments/models/refund_retrieve_params.rb
169
177
  - lib/dodopayments/models/refund_status.rb
170
178
  - lib/dodopayments/models/subscription.rb
@@ -205,6 +213,8 @@ files:
205
213
  - lib/dodopayments/resources/checkout_sessions.rb
206
214
  - lib/dodopayments/resources/customers.rb
207
215
  - lib/dodopayments/resources/customers/customer_portal.rb
216
+ - lib/dodopayments/resources/customers/wallets.rb
217
+ - lib/dodopayments/resources/customers/wallets/ledger_entries.rb
208
218
  - lib/dodopayments/resources/discounts.rb
209
219
  - lib/dodopayments/resources/disputes.rb
210
220
  - lib/dodopayments/resources/invoices.rb
@@ -282,6 +292,12 @@ files:
282
292
  - rbi/dodopayments/models/customer_retrieve_params.rbi
283
293
  - rbi/dodopayments/models/customer_update_params.rbi
284
294
  - rbi/dodopayments/models/customers/customer_portal_create_params.rbi
295
+ - rbi/dodopayments/models/customers/customer_wallet.rbi
296
+ - rbi/dodopayments/models/customers/wallet_list_params.rbi
297
+ - rbi/dodopayments/models/customers/wallet_list_response.rbi
298
+ - rbi/dodopayments/models/customers/wallets/customer_wallet_transaction.rbi
299
+ - rbi/dodopayments/models/customers/wallets/ledger_entry_create_params.rbi
300
+ - rbi/dodopayments/models/customers/wallets/ledger_entry_list_params.rbi
285
301
  - rbi/dodopayments/models/discount.rbi
286
302
  - rbi/dodopayments/models/discount_create_params.rbi
287
303
  - rbi/dodopayments/models/discount_delete_params.rbi
@@ -302,6 +318,7 @@ files:
302
318
  - rbi/dodopayments/models/invoices/payment_retrieve_params.rbi
303
319
  - rbi/dodopayments/models/invoices/payment_retrieve_refund_params.rbi
304
320
  - rbi/dodopayments/models/license_activate_params.rbi
321
+ - rbi/dodopayments/models/license_activate_response.rbi
305
322
  - rbi/dodopayments/models/license_deactivate_params.rbi
306
323
  - rbi/dodopayments/models/license_key.rbi
307
324
  - rbi/dodopayments/models/license_key_duration.rbi
@@ -355,6 +372,7 @@ files:
355
372
  - rbi/dodopayments/models/refund.rbi
356
373
  - rbi/dodopayments/models/refund_create_params.rbi
357
374
  - rbi/dodopayments/models/refund_list_params.rbi
375
+ - rbi/dodopayments/models/refund_list_response.rbi
358
376
  - rbi/dodopayments/models/refund_retrieve_params.rbi
359
377
  - rbi/dodopayments/models/refund_status.rbi
360
378
  - rbi/dodopayments/models/subscription.rbi
@@ -395,6 +413,8 @@ files:
395
413
  - rbi/dodopayments/resources/checkout_sessions.rbi
396
414
  - rbi/dodopayments/resources/customers.rbi
397
415
  - rbi/dodopayments/resources/customers/customer_portal.rbi
416
+ - rbi/dodopayments/resources/customers/wallets.rbi
417
+ - rbi/dodopayments/resources/customers/wallets/ledger_entries.rbi
398
418
  - rbi/dodopayments/resources/discounts.rbi
399
419
  - rbi/dodopayments/resources/disputes.rbi
400
420
  - rbi/dodopayments/resources/invoices.rbi
@@ -471,6 +491,12 @@ files:
471
491
  - sig/dodopayments/models/customer_retrieve_params.rbs
472
492
  - sig/dodopayments/models/customer_update_params.rbs
473
493
  - sig/dodopayments/models/customers/customer_portal_create_params.rbs
494
+ - sig/dodopayments/models/customers/customer_wallet.rbs
495
+ - sig/dodopayments/models/customers/wallet_list_params.rbs
496
+ - sig/dodopayments/models/customers/wallet_list_response.rbs
497
+ - sig/dodopayments/models/customers/wallets/customer_wallet_transaction.rbs
498
+ - sig/dodopayments/models/customers/wallets/ledger_entry_create_params.rbs
499
+ - sig/dodopayments/models/customers/wallets/ledger_entry_list_params.rbs
474
500
  - sig/dodopayments/models/discount.rbs
475
501
  - sig/dodopayments/models/discount_create_params.rbs
476
502
  - sig/dodopayments/models/discount_delete_params.rbs
@@ -491,6 +517,7 @@ files:
491
517
  - sig/dodopayments/models/invoices/payment_retrieve_params.rbs
492
518
  - sig/dodopayments/models/invoices/payment_retrieve_refund_params.rbs
493
519
  - sig/dodopayments/models/license_activate_params.rbs
520
+ - sig/dodopayments/models/license_activate_response.rbs
494
521
  - sig/dodopayments/models/license_deactivate_params.rbs
495
522
  - sig/dodopayments/models/license_key.rbs
496
523
  - sig/dodopayments/models/license_key_duration.rbs
@@ -544,6 +571,7 @@ files:
544
571
  - sig/dodopayments/models/refund.rbs
545
572
  - sig/dodopayments/models/refund_create_params.rbs
546
573
  - sig/dodopayments/models/refund_list_params.rbs
574
+ - sig/dodopayments/models/refund_list_response.rbs
547
575
  - sig/dodopayments/models/refund_retrieve_params.rbs
548
576
  - sig/dodopayments/models/refund_status.rbs
549
577
  - sig/dodopayments/models/subscription.rbs
@@ -584,6 +612,8 @@ files:
584
612
  - sig/dodopayments/resources/checkout_sessions.rbs
585
613
  - sig/dodopayments/resources/customers.rbs
586
614
  - sig/dodopayments/resources/customers/customer_portal.rbs
615
+ - sig/dodopayments/resources/customers/wallets.rbs
616
+ - sig/dodopayments/resources/customers/wallets/ledger_entries.rbs
587
617
  - sig/dodopayments/resources/discounts.rbs
588
618
  - sig/dodopayments/resources/disputes.rbs
589
619
  - sig/dodopayments/resources/invoices.rbs