dodopayments 2.1.2 → 2.3.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.
Files changed (142) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +38 -0
  3. data/README.md +3 -3
  4. data/lib/dodopayments/client.rb +15 -0
  5. data/lib/dodopayments/models/checkout_session_customization.rb +4 -4
  6. data/lib/dodopayments/models/checkout_session_request.rb +10 -1
  7. data/lib/dodopayments/models/customer_retrieve_payment_methods_response.rb +13 -1
  8. data/lib/dodopayments/models/customers/customer_portal_create_params.rb +13 -1
  9. data/lib/dodopayments/models/invoices/payment_retrieve_payout_params.rb +22 -0
  10. data/lib/dodopayments/models/payment_method_types.rb +3 -0
  11. data/lib/dodopayments/models/product_collection_create_params.rb +98 -0
  12. data/lib/dodopayments/models/product_collection_create_response.rb +226 -0
  13. data/lib/dodopayments/models/product_collection_delete_params.rb +20 -0
  14. data/lib/dodopayments/models/product_collection_list_params.rb +46 -0
  15. data/lib/dodopayments/models/product_collection_list_response.rb +65 -0
  16. data/lib/dodopayments/models/product_collection_retrieve_params.rb +20 -0
  17. data/lib/dodopayments/models/product_collection_retrieve_response.rb +226 -0
  18. data/lib/dodopayments/models/product_collection_unarchive_params.rb +20 -0
  19. data/lib/dodopayments/models/product_collection_unarchive_response.rb +33 -0
  20. data/lib/dodopayments/models/product_collection_update_images_params.rb +29 -0
  21. data/lib/dodopayments/models/product_collection_update_images_response.rb +25 -0
  22. data/lib/dodopayments/models/product_collection_update_params.rb +61 -0
  23. data/lib/dodopayments/models/product_collections/group_create_params.rb +71 -0
  24. data/lib/dodopayments/models/product_collections/group_create_response.rb +160 -0
  25. data/lib/dodopayments/models/product_collections/group_delete_params.rb +28 -0
  26. data/lib/dodopayments/models/product_collections/group_update_params.rb +59 -0
  27. data/lib/dodopayments/models/product_collections/groups/item_create_params.rb +60 -0
  28. data/lib/dodopayments/models/product_collections/groups/item_create_response.rb +136 -0
  29. data/lib/dodopayments/models/product_collections/groups/item_delete_params.rb +36 -0
  30. data/lib/dodopayments/models/product_collections/groups/item_update_params.rb +47 -0
  31. data/lib/dodopayments/models/subscription.rb +107 -1
  32. data/lib/dodopayments/models/subscription_cancel_change_plan_params.rb +20 -0
  33. data/lib/dodopayments/models/subscription_list_response.rb +109 -1
  34. data/lib/dodopayments/models/subscription_preview_change_plan_response.rb +10 -1
  35. data/lib/dodopayments/models/update_subscription_plan_req.rb +29 -1
  36. data/lib/dodopayments/models/your_webhook_url_create_params.rb +32 -0
  37. data/lib/dodopayments/models.rb +20 -0
  38. data/lib/dodopayments/resources/checkout_sessions.rb +6 -2
  39. data/lib/dodopayments/resources/customers/customer_portal.rb +6 -1
  40. data/lib/dodopayments/resources/invoices/payments.rb +18 -0
  41. data/lib/dodopayments/resources/product_collections/groups/items.rb +111 -0
  42. data/lib/dodopayments/resources/product_collections/groups.rb +109 -0
  43. data/lib/dodopayments/resources/product_collections.rb +179 -0
  44. data/lib/dodopayments/resources/subscriptions.rb +24 -2
  45. data/lib/dodopayments/resources/webhooks.rb +11 -1
  46. data/lib/dodopayments/resources/your_webhook_url.rb +56 -0
  47. data/lib/dodopayments/version.rb +1 -1
  48. data/lib/dodopayments.rb +31 -3
  49. data/rbi/dodopayments/client.rbi +12 -0
  50. data/rbi/dodopayments/models/checkout_session_customization.rbi +12 -13
  51. data/rbi/dodopayments/models/checkout_session_request.rbi +10 -0
  52. data/rbi/dodopayments/models/credit_entitlement_cart_response.rbi +4 -4
  53. data/rbi/dodopayments/models/credit_entitlements/credit_ledger_entry.rbi +2 -2
  54. data/rbi/dodopayments/models/customer_retrieve_payment_methods_response.rbi +6 -0
  55. data/rbi/dodopayments/models/customers/customer_portal_create_params.rbi +13 -0
  56. data/rbi/dodopayments/models/dispute.rbi +4 -4
  57. data/rbi/dodopayments/models/get_dispute.rbi +4 -4
  58. data/rbi/dodopayments/models/invoices/payment_retrieve_payout_params.rbi +40 -0
  59. data/rbi/dodopayments/models/license_key.rbi +2 -2
  60. data/rbi/dodopayments/models/meter_cart_response_item.rbi +2 -2
  61. data/rbi/dodopayments/models/payment.rbi +10 -12
  62. data/rbi/dodopayments/models/payment_method_types.rbi +3 -0
  63. data/rbi/dodopayments/models/product_collection_create_params.rbi +180 -0
  64. data/rbi/dodopayments/models/product_collection_create_response.rbi +303 -0
  65. data/rbi/dodopayments/models/product_collection_delete_params.rbi +38 -0
  66. data/rbi/dodopayments/models/product_collection_list_params.rbi +82 -0
  67. data/rbi/dodopayments/models/product_collection_list_response.rbi +88 -0
  68. data/rbi/dodopayments/models/product_collection_retrieve_params.rbi +38 -0
  69. data/rbi/dodopayments/models/product_collection_retrieve_response.rbi +305 -0
  70. data/rbi/dodopayments/models/product_collection_unarchive_params.rbi +38 -0
  71. data/rbi/dodopayments/models/product_collection_unarchive_response.rbi +56 -0
  72. data/rbi/dodopayments/models/product_collection_update_images_params.rbi +52 -0
  73. data/rbi/dodopayments/models/product_collection_update_images_response.rbi +40 -0
  74. data/rbi/dodopayments/models/product_collection_update_params.rbi +84 -0
  75. data/rbi/dodopayments/models/product_collections/group_create_params.rbi +123 -0
  76. data/rbi/dodopayments/models/product_collections/group_create_response.rbi +204 -0
  77. data/rbi/dodopayments/models/product_collections/group_delete_params.rbi +48 -0
  78. data/rbi/dodopayments/models/product_collections/group_update_params.rbi +80 -0
  79. data/rbi/dodopayments/models/product_collections/groups/item_create_params.rbi +113 -0
  80. data/rbi/dodopayments/models/product_collections/groups/item_create_response.rbi +156 -0
  81. data/rbi/dodopayments/models/product_collections/groups/item_delete_params.rbi +55 -0
  82. data/rbi/dodopayments/models/product_collections/groups/item_update_params.rbi +68 -0
  83. data/rbi/dodopayments/models/refund.rbi +4 -4
  84. data/rbi/dodopayments/models/refund_list_item.rbi +4 -4
  85. data/rbi/dodopayments/models/subscription.rbi +169 -10
  86. data/rbi/dodopayments/models/subscription_cancel_change_plan_params.rbi +41 -0
  87. data/rbi/dodopayments/models/subscription_list_response.rbi +179 -0
  88. data/rbi/dodopayments/models/subscription_preview_change_plan_response.rbi +12 -1
  89. data/rbi/dodopayments/models/update_subscription_plan_req.rbi +70 -0
  90. data/rbi/dodopayments/models/your_webhook_url_create_params.rbi +56 -0
  91. data/rbi/dodopayments/models.rbi +28 -0
  92. data/rbi/dodopayments/resources/checkout_sessions.rbi +8 -0
  93. data/rbi/dodopayments/resources/customers/customer_portal.rbi +4 -0
  94. data/rbi/dodopayments/resources/invoices/payments.rbi +9 -0
  95. data/rbi/dodopayments/resources/product_collections/groups/items.rbi +83 -0
  96. data/rbi/dodopayments/resources/product_collections/groups.rbi +90 -0
  97. data/rbi/dodopayments/resources/product_collections.rbi +149 -0
  98. data/rbi/dodopayments/resources/subscriptions.rbi +27 -0
  99. data/rbi/dodopayments/resources/webhooks.rbi +10 -2
  100. data/rbi/dodopayments/resources/your_webhook_url.rbi +53 -0
  101. data/sig/dodopayments/client.rbs +7 -0
  102. data/sig/dodopayments/models/checkout_session_customization.rbs +4 -8
  103. data/sig/dodopayments/models/checkout_session_request.rbs +5 -0
  104. data/sig/dodopayments/models/customers/customer_portal_create_params.rbs +7 -1
  105. data/sig/dodopayments/models/invoices/payment_retrieve_payout_params.rbs +25 -0
  106. data/sig/dodopayments/models/product_collection_create_params.rbs +80 -0
  107. data/sig/dodopayments/models/product_collection_create_response.rbs +179 -0
  108. data/sig/dodopayments/models/product_collection_delete_params.rbs +23 -0
  109. data/sig/dodopayments/models/product_collection_list_params.rbs +49 -0
  110. data/sig/dodopayments/models/product_collection_list_response.rbs +50 -0
  111. data/sig/dodopayments/models/product_collection_retrieve_params.rbs +23 -0
  112. data/sig/dodopayments/models/product_collection_retrieve_response.rbs +179 -0
  113. data/sig/dodopayments/models/product_collection_unarchive_params.rbs +23 -0
  114. data/sig/dodopayments/models/product_collection_unarchive_response.rbs +30 -0
  115. data/sig/dodopayments/models/product_collection_update_images_params.rbs +28 -0
  116. data/sig/dodopayments/models/product_collection_update_images_response.rbs +16 -0
  117. data/sig/dodopayments/models/product_collection_update_params.rbs +51 -0
  118. data/sig/dodopayments/models/product_collections/group_create_params.rbs +55 -0
  119. data/sig/dodopayments/models/product_collections/group_create_response.rbs +129 -0
  120. data/sig/dodopayments/models/product_collections/group_delete_params.rbs +30 -0
  121. data/sig/dodopayments/models/product_collections/group_update_params.rbs +48 -0
  122. data/sig/dodopayments/models/product_collections/groups/item_create_params.rbs +52 -0
  123. data/sig/dodopayments/models/product_collections/groups/item_create_response.rbs +104 -0
  124. data/sig/dodopayments/models/product_collections/groups/item_delete_params.rbs +36 -0
  125. data/sig/dodopayments/models/product_collections/groups/item_update_params.rbs +40 -0
  126. data/sig/dodopayments/models/subscription.rbs +75 -0
  127. data/sig/dodopayments/models/subscription_cancel_change_plan_params.rbs +24 -0
  128. data/sig/dodopayments/models/subscription_list_response.rbs +75 -0
  129. data/sig/dodopayments/models/subscription_preview_change_plan_response.rbs +5 -0
  130. data/sig/dodopayments/models/update_subscription_plan_req.rbs +25 -1
  131. data/sig/dodopayments/models/your_webhook_url_create_params.rbs +42 -0
  132. data/sig/dodopayments/models.rbs +20 -0
  133. data/sig/dodopayments/resources/checkout_sessions.rbs +2 -0
  134. data/sig/dodopayments/resources/customers/customer_portal.rbs +1 -0
  135. data/sig/dodopayments/resources/invoices/payments.rbs +5 -0
  136. data/sig/dodopayments/resources/product_collections/groups/items.rbs +33 -0
  137. data/sig/dodopayments/resources/product_collections/groups.rbs +34 -0
  138. data/sig/dodopayments/resources/product_collections.rbs +56 -0
  139. data/sig/dodopayments/resources/subscriptions.rbs +7 -0
  140. data/sig/dodopayments/resources/webhooks.rbs +3 -1
  141. data/sig/dodopayments/resources/your_webhook_url.rbs +18 -0
  142. metadata +97 -2
@@ -0,0 +1,34 @@
1
+ module Dodopayments
2
+ module Resources
3
+ class ProductCollections
4
+ class Groups
5
+ attr_reader items: Dodopayments::Resources::ProductCollections::Groups::Items
6
+
7
+ def create: (
8
+ String id,
9
+ products: ::Array[Dodopayments::ProductCollections::GroupCreateParams::Product],
10
+ ?group_name: String?,
11
+ ?status: bool?,
12
+ ?request_options: Dodopayments::request_opts
13
+ ) -> Dodopayments::Models::ProductCollections::GroupCreateResponse
14
+
15
+ def update: (
16
+ String group_id,
17
+ id: String,
18
+ ?group_name: String?,
19
+ ?product_order: ::Array[String]?,
20
+ ?status: bool?,
21
+ ?request_options: Dodopayments::request_opts
22
+ ) -> nil
23
+
24
+ def delete: (
25
+ String group_id,
26
+ id: String,
27
+ ?request_options: Dodopayments::request_opts
28
+ ) -> nil
29
+
30
+ def initialize: (client: Dodopayments::Client) -> void
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,56 @@
1
+ module Dodopayments
2
+ module Resources
3
+ class ProductCollections
4
+ attr_reader groups: Dodopayments::Resources::ProductCollections::Groups
5
+
6
+ def create: (
7
+ groups: ::Array[Dodopayments::ProductCollectionCreateParams::Group],
8
+ name: String,
9
+ ?brand_id: String?,
10
+ ?description: String?,
11
+ ?request_options: Dodopayments::request_opts
12
+ ) -> Dodopayments::Models::ProductCollectionCreateResponse
13
+
14
+ def retrieve: (
15
+ String id,
16
+ ?request_options: Dodopayments::request_opts
17
+ ) -> Dodopayments::Models::ProductCollectionRetrieveResponse
18
+
19
+ def update: (
20
+ String id,
21
+ ?brand_id: String?,
22
+ ?description: String?,
23
+ ?group_order: ::Array[String]?,
24
+ ?image_id: String?,
25
+ ?name: String?,
26
+ ?request_options: Dodopayments::request_opts
27
+ ) -> nil
28
+
29
+ def list: (
30
+ ?archived: bool,
31
+ ?brand_id: String,
32
+ ?page_number: Integer,
33
+ ?page_size: Integer,
34
+ ?request_options: Dodopayments::request_opts
35
+ ) -> Dodopayments::Internal::DefaultPageNumberPagination[Dodopayments::Models::ProductCollectionListResponse]
36
+
37
+ def delete: (
38
+ String id,
39
+ ?request_options: Dodopayments::request_opts
40
+ ) -> nil
41
+
42
+ def unarchive: (
43
+ String id,
44
+ ?request_options: Dodopayments::request_opts
45
+ ) -> Dodopayments::Models::ProductCollectionUnarchiveResponse
46
+
47
+ def update_images: (
48
+ String id,
49
+ ?force_update: bool?,
50
+ ?request_options: Dodopayments::request_opts
51
+ ) -> Dodopayments::Models::ProductCollectionUpdateImagesResponse
52
+
53
+ def initialize: (client: Dodopayments::Client) -> void
54
+ end
55
+ end
56
+ end
@@ -56,6 +56,11 @@ module Dodopayments
56
56
  ?request_options: Dodopayments::request_opts
57
57
  ) -> Dodopayments::Internal::DefaultPageNumberPagination[Dodopayments::Models::SubscriptionListResponse]
58
58
 
59
+ def cancel_change_plan: (
60
+ String subscription_id,
61
+ ?request_options: Dodopayments::request_opts
62
+ ) -> nil
63
+
59
64
  def change_plan: (
60
65
  String subscription_id,
61
66
  product_id: String,
@@ -63,6 +68,7 @@ module Dodopayments
63
68
  quantity: Integer,
64
69
  ?addons: ::Array[Dodopayments::AttachAddon]?,
65
70
  ?discount_code: String?,
71
+ ?effective_at: Dodopayments::Models::UpdateSubscriptionPlanReq::effective_at,
66
72
  ?metadata: ::Hash[Symbol, String]?,
67
73
  ?on_payment_failure: Dodopayments::Models::UpdateSubscriptionPlanReq::on_payment_failure?,
68
74
  ?request_options: Dodopayments::request_opts
@@ -86,6 +92,7 @@ module Dodopayments
86
92
  quantity: Integer,
87
93
  ?addons: ::Array[Dodopayments::AttachAddon]?,
88
94
  ?discount_code: String?,
95
+ ?effective_at: Dodopayments::Models::UpdateSubscriptionPlanReq::effective_at,
89
96
  ?metadata: ::Hash[Symbol, String]?,
90
97
  ?on_payment_failure: Dodopayments::Models::UpdateSubscriptionPlanReq::on_payment_failure?,
91
98
  ?request_options: Dodopayments::request_opts
@@ -81,7 +81,9 @@ module Dodopayments
81
81
  | Dodopayments::SubscriptionUpdatedWebhookEvent)
82
82
 
83
83
  def unwrap: (
84
- String payload
84
+ String payload,
85
+ headers: ::Hash[String, String],
86
+ ?key: String?
85
87
  ) -> (Dodopayments::CreditAddedWebhookEvent
86
88
  | Dodopayments::CreditBalanceLowWebhookEvent
87
89
  | Dodopayments::CreditDeductedWebhookEvent
@@ -0,0 +1,18 @@
1
+ module Dodopayments
2
+ module Resources
3
+ class YourWebhookURL
4
+ def create: (
5
+ business_id: String,
6
+ data: Dodopayments::Models::WebhookPayload::data,
7
+ timestamp: Time,
8
+ type: Dodopayments::Models::webhook_event_type,
9
+ webhook_id: String,
10
+ webhook_signature: String,
11
+ webhook_timestamp: String,
12
+ ?request_options: Dodopayments::request_opts
13
+ ) -> nil
14
+
15
+ def initialize: (client: Dodopayments::Client) -> void
16
+ end
17
+ end
18
+ end
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: 2.1.2
4
+ version: 2.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dodo Payments
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-06 00:00:00.000000000 Z
11
+ date: 2026-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: standardwebhooks
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
41
55
  description:
42
56
  email: support@dodopayments.com
43
57
  executables: []
@@ -187,6 +201,7 @@ files:
187
201
  - lib/dodopayments/models/get_dispute.rb
188
202
  - lib/dodopayments/models/intent_status.rb
189
203
  - lib/dodopayments/models/invoices/payment_retrieve_params.rb
204
+ - lib/dodopayments/models/invoices/payment_retrieve_payout_params.rb
190
205
  - lib/dodopayments/models/invoices/payment_retrieve_refund_params.rb
191
206
  - lib/dodopayments/models/license_activate_params.rb
192
207
  - lib/dodopayments/models/license_activate_response.rb
@@ -238,6 +253,26 @@ files:
238
253
  - lib/dodopayments/models/price.rb
239
254
  - lib/dodopayments/models/product.rb
240
255
  - lib/dodopayments/models/product_archive_params.rb
256
+ - lib/dodopayments/models/product_collection_create_params.rb
257
+ - lib/dodopayments/models/product_collection_create_response.rb
258
+ - lib/dodopayments/models/product_collection_delete_params.rb
259
+ - lib/dodopayments/models/product_collection_list_params.rb
260
+ - lib/dodopayments/models/product_collection_list_response.rb
261
+ - lib/dodopayments/models/product_collection_retrieve_params.rb
262
+ - lib/dodopayments/models/product_collection_retrieve_response.rb
263
+ - lib/dodopayments/models/product_collection_unarchive_params.rb
264
+ - lib/dodopayments/models/product_collection_unarchive_response.rb
265
+ - lib/dodopayments/models/product_collection_update_images_params.rb
266
+ - lib/dodopayments/models/product_collection_update_images_response.rb
267
+ - lib/dodopayments/models/product_collection_update_params.rb
268
+ - lib/dodopayments/models/product_collections/group_create_params.rb
269
+ - lib/dodopayments/models/product_collections/group_create_response.rb
270
+ - lib/dodopayments/models/product_collections/group_delete_params.rb
271
+ - lib/dodopayments/models/product_collections/group_update_params.rb
272
+ - lib/dodopayments/models/product_collections/groups/item_create_params.rb
273
+ - lib/dodopayments/models/product_collections/groups/item_create_response.rb
274
+ - lib/dodopayments/models/product_collections/groups/item_delete_params.rb
275
+ - lib/dodopayments/models/product_collections/groups/item_update_params.rb
241
276
  - lib/dodopayments/models/product_create_params.rb
242
277
  - lib/dodopayments/models/product_item_req.rb
243
278
  - lib/dodopayments/models/product_list_params.rb
@@ -263,6 +298,7 @@ files:
263
298
  - lib/dodopayments/models/refund_succeeded_webhook_event.rb
264
299
  - lib/dodopayments/models/subscription.rb
265
300
  - lib/dodopayments/models/subscription_active_webhook_event.rb
301
+ - lib/dodopayments/models/subscription_cancel_change_plan_params.rb
266
302
  - lib/dodopayments/models/subscription_cancelled_webhook_event.rb
267
303
  - lib/dodopayments/models/subscription_change_plan_params.rb
268
304
  - lib/dodopayments/models/subscription_charge_params.rb
@@ -315,6 +351,7 @@ files:
315
351
  - lib/dodopayments/models/webhooks/header_retrieve_params.rb
316
352
  - lib/dodopayments/models/webhooks/header_retrieve_response.rb
317
353
  - lib/dodopayments/models/webhooks/header_update_params.rb
354
+ - lib/dodopayments/models/your_webhook_url_create_params.rb
318
355
  - lib/dodopayments/request_options.rb
319
356
  - lib/dodopayments/resources/addons.rb
320
357
  - lib/dodopayments/resources/balances.rb
@@ -337,6 +374,9 @@ files:
337
374
  - lib/dodopayments/resources/misc.rb
338
375
  - lib/dodopayments/resources/payments.rb
339
376
  - lib/dodopayments/resources/payouts.rb
377
+ - lib/dodopayments/resources/product_collections.rb
378
+ - lib/dodopayments/resources/product_collections/groups.rb
379
+ - lib/dodopayments/resources/product_collections/groups/items.rb
340
380
  - lib/dodopayments/resources/products.rb
341
381
  - lib/dodopayments/resources/products/images.rb
342
382
  - lib/dodopayments/resources/products/short_links.rb
@@ -346,6 +386,7 @@ files:
346
386
  - lib/dodopayments/resources/webhook_events.rb
347
387
  - lib/dodopayments/resources/webhooks.rb
348
388
  - lib/dodopayments/resources/webhooks/headers.rb
389
+ - lib/dodopayments/resources/your_webhook_url.rb
349
390
  - lib/dodopayments/version.rb
350
391
  - manifest.yaml
351
392
  - rbi/dodopayments/client.rbi
@@ -485,6 +526,7 @@ files:
485
526
  - rbi/dodopayments/models/get_dispute.rbi
486
527
  - rbi/dodopayments/models/intent_status.rbi
487
528
  - rbi/dodopayments/models/invoices/payment_retrieve_params.rbi
529
+ - rbi/dodopayments/models/invoices/payment_retrieve_payout_params.rbi
488
530
  - rbi/dodopayments/models/invoices/payment_retrieve_refund_params.rbi
489
531
  - rbi/dodopayments/models/license_activate_params.rbi
490
532
  - rbi/dodopayments/models/license_activate_response.rbi
@@ -536,6 +578,26 @@ files:
536
578
  - rbi/dodopayments/models/price.rbi
537
579
  - rbi/dodopayments/models/product.rbi
538
580
  - rbi/dodopayments/models/product_archive_params.rbi
581
+ - rbi/dodopayments/models/product_collection_create_params.rbi
582
+ - rbi/dodopayments/models/product_collection_create_response.rbi
583
+ - rbi/dodopayments/models/product_collection_delete_params.rbi
584
+ - rbi/dodopayments/models/product_collection_list_params.rbi
585
+ - rbi/dodopayments/models/product_collection_list_response.rbi
586
+ - rbi/dodopayments/models/product_collection_retrieve_params.rbi
587
+ - rbi/dodopayments/models/product_collection_retrieve_response.rbi
588
+ - rbi/dodopayments/models/product_collection_unarchive_params.rbi
589
+ - rbi/dodopayments/models/product_collection_unarchive_response.rbi
590
+ - rbi/dodopayments/models/product_collection_update_images_params.rbi
591
+ - rbi/dodopayments/models/product_collection_update_images_response.rbi
592
+ - rbi/dodopayments/models/product_collection_update_params.rbi
593
+ - rbi/dodopayments/models/product_collections/group_create_params.rbi
594
+ - rbi/dodopayments/models/product_collections/group_create_response.rbi
595
+ - rbi/dodopayments/models/product_collections/group_delete_params.rbi
596
+ - rbi/dodopayments/models/product_collections/group_update_params.rbi
597
+ - rbi/dodopayments/models/product_collections/groups/item_create_params.rbi
598
+ - rbi/dodopayments/models/product_collections/groups/item_create_response.rbi
599
+ - rbi/dodopayments/models/product_collections/groups/item_delete_params.rbi
600
+ - rbi/dodopayments/models/product_collections/groups/item_update_params.rbi
539
601
  - rbi/dodopayments/models/product_create_params.rbi
540
602
  - rbi/dodopayments/models/product_item_req.rbi
541
603
  - rbi/dodopayments/models/product_list_params.rbi
@@ -561,6 +623,7 @@ files:
561
623
  - rbi/dodopayments/models/refund_succeeded_webhook_event.rbi
562
624
  - rbi/dodopayments/models/subscription.rbi
563
625
  - rbi/dodopayments/models/subscription_active_webhook_event.rbi
626
+ - rbi/dodopayments/models/subscription_cancel_change_plan_params.rbi
564
627
  - rbi/dodopayments/models/subscription_cancelled_webhook_event.rbi
565
628
  - rbi/dodopayments/models/subscription_change_plan_params.rbi
566
629
  - rbi/dodopayments/models/subscription_charge_params.rbi
@@ -613,6 +676,7 @@ files:
613
676
  - rbi/dodopayments/models/webhooks/header_retrieve_params.rbi
614
677
  - rbi/dodopayments/models/webhooks/header_retrieve_response.rbi
615
678
  - rbi/dodopayments/models/webhooks/header_update_params.rbi
679
+ - rbi/dodopayments/models/your_webhook_url_create_params.rbi
616
680
  - rbi/dodopayments/request_options.rbi
617
681
  - rbi/dodopayments/resources/addons.rbi
618
682
  - rbi/dodopayments/resources/balances.rbi
@@ -635,6 +699,9 @@ files:
635
699
  - rbi/dodopayments/resources/misc.rbi
636
700
  - rbi/dodopayments/resources/payments.rbi
637
701
  - rbi/dodopayments/resources/payouts.rbi
702
+ - rbi/dodopayments/resources/product_collections.rbi
703
+ - rbi/dodopayments/resources/product_collections/groups.rbi
704
+ - rbi/dodopayments/resources/product_collections/groups/items.rbi
638
705
  - rbi/dodopayments/resources/products.rbi
639
706
  - rbi/dodopayments/resources/products/images.rbi
640
707
  - rbi/dodopayments/resources/products/short_links.rbi
@@ -644,6 +711,7 @@ files:
644
711
  - rbi/dodopayments/resources/webhook_events.rbi
645
712
  - rbi/dodopayments/resources/webhooks.rbi
646
713
  - rbi/dodopayments/resources/webhooks/headers.rbi
714
+ - rbi/dodopayments/resources/your_webhook_url.rbi
647
715
  - rbi/dodopayments/version.rbi
648
716
  - sig/dodopayments/client.rbs
649
717
  - sig/dodopayments/errors.rbs
@@ -782,6 +850,7 @@ files:
782
850
  - sig/dodopayments/models/get_dispute.rbs
783
851
  - sig/dodopayments/models/intent_status.rbs
784
852
  - sig/dodopayments/models/invoices/payment_retrieve_params.rbs
853
+ - sig/dodopayments/models/invoices/payment_retrieve_payout_params.rbs
785
854
  - sig/dodopayments/models/invoices/payment_retrieve_refund_params.rbs
786
855
  - sig/dodopayments/models/license_activate_params.rbs
787
856
  - sig/dodopayments/models/license_activate_response.rbs
@@ -833,6 +902,26 @@ files:
833
902
  - sig/dodopayments/models/price.rbs
834
903
  - sig/dodopayments/models/product.rbs
835
904
  - sig/dodopayments/models/product_archive_params.rbs
905
+ - sig/dodopayments/models/product_collection_create_params.rbs
906
+ - sig/dodopayments/models/product_collection_create_response.rbs
907
+ - sig/dodopayments/models/product_collection_delete_params.rbs
908
+ - sig/dodopayments/models/product_collection_list_params.rbs
909
+ - sig/dodopayments/models/product_collection_list_response.rbs
910
+ - sig/dodopayments/models/product_collection_retrieve_params.rbs
911
+ - sig/dodopayments/models/product_collection_retrieve_response.rbs
912
+ - sig/dodopayments/models/product_collection_unarchive_params.rbs
913
+ - sig/dodopayments/models/product_collection_unarchive_response.rbs
914
+ - sig/dodopayments/models/product_collection_update_images_params.rbs
915
+ - sig/dodopayments/models/product_collection_update_images_response.rbs
916
+ - sig/dodopayments/models/product_collection_update_params.rbs
917
+ - sig/dodopayments/models/product_collections/group_create_params.rbs
918
+ - sig/dodopayments/models/product_collections/group_create_response.rbs
919
+ - sig/dodopayments/models/product_collections/group_delete_params.rbs
920
+ - sig/dodopayments/models/product_collections/group_update_params.rbs
921
+ - sig/dodopayments/models/product_collections/groups/item_create_params.rbs
922
+ - sig/dodopayments/models/product_collections/groups/item_create_response.rbs
923
+ - sig/dodopayments/models/product_collections/groups/item_delete_params.rbs
924
+ - sig/dodopayments/models/product_collections/groups/item_update_params.rbs
836
925
  - sig/dodopayments/models/product_create_params.rbs
837
926
  - sig/dodopayments/models/product_item_req.rbs
838
927
  - sig/dodopayments/models/product_list_params.rbs
@@ -858,6 +947,7 @@ files:
858
947
  - sig/dodopayments/models/refund_succeeded_webhook_event.rbs
859
948
  - sig/dodopayments/models/subscription.rbs
860
949
  - sig/dodopayments/models/subscription_active_webhook_event.rbs
950
+ - sig/dodopayments/models/subscription_cancel_change_plan_params.rbs
861
951
  - sig/dodopayments/models/subscription_cancelled_webhook_event.rbs
862
952
  - sig/dodopayments/models/subscription_change_plan_params.rbs
863
953
  - sig/dodopayments/models/subscription_charge_params.rbs
@@ -910,6 +1000,7 @@ files:
910
1000
  - sig/dodopayments/models/webhooks/header_retrieve_params.rbs
911
1001
  - sig/dodopayments/models/webhooks/header_retrieve_response.rbs
912
1002
  - sig/dodopayments/models/webhooks/header_update_params.rbs
1003
+ - sig/dodopayments/models/your_webhook_url_create_params.rbs
913
1004
  - sig/dodopayments/request_options.rbs
914
1005
  - sig/dodopayments/resources/addons.rbs
915
1006
  - sig/dodopayments/resources/balances.rbs
@@ -932,6 +1023,9 @@ files:
932
1023
  - sig/dodopayments/resources/misc.rbs
933
1024
  - sig/dodopayments/resources/payments.rbs
934
1025
  - sig/dodopayments/resources/payouts.rbs
1026
+ - sig/dodopayments/resources/product_collections.rbs
1027
+ - sig/dodopayments/resources/product_collections/groups.rbs
1028
+ - sig/dodopayments/resources/product_collections/groups/items.rbs
935
1029
  - sig/dodopayments/resources/products.rbs
936
1030
  - sig/dodopayments/resources/products/images.rbs
937
1031
  - sig/dodopayments/resources/products/short_links.rbs
@@ -941,6 +1035,7 @@ files:
941
1035
  - sig/dodopayments/resources/webhook_events.rbs
942
1036
  - sig/dodopayments/resources/webhooks.rbs
943
1037
  - sig/dodopayments/resources/webhooks/headers.rbs
1038
+ - sig/dodopayments/resources/your_webhook_url.rbs
944
1039
  - sig/dodopayments/version.rbs
945
1040
  homepage: https://gemdocs.org/gems/dodopayments
946
1041
  licenses: []