dodopayments 2.26.0 → 2.27.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/dodopayments/client.rb +4 -0
- data/lib/dodopayments/models/balance_ledger_entry.rb +7 -1
- data/lib/dodopayments/models/blocklist/block_by_customer_id.rb +18 -0
- data/lib/dodopayments/models/blocklist/block_by_email.rb +18 -0
- data/lib/dodopayments/models/blocklist/block_identifier.rb +21 -0
- data/lib/dodopayments/models/blocklist/blocked_customer.rb +128 -0
- data/lib/dodopayments/models/blocklist/blocked_customer_source.rb +22 -0
- data/lib/dodopayments/models/blocklist/create_blocked_customer_request.rb +66 -0
- data/lib/dodopayments/models/blocklist/customer_create_params.rb +16 -0
- data/lib/dodopayments/models/blocklist/customer_delete_params.rb +22 -0
- data/lib/dodopayments/models/blocklist/customer_list_params.rb +64 -0
- data/lib/dodopayments/models/blocklist/customer_retrieve_params.rb +22 -0
- data/lib/dodopayments/models/blocklist/customers/blocked_customer_note.rb +44 -0
- data/lib/dodopayments/models/blocklist/customers/note_create_params.rb +24 -0
- data/lib/dodopayments/models/blocklist/customers/note_request.rb +19 -0
- data/lib/dodopayments/models/blocklist/customers/note_update_params.rb +30 -0
- data/lib/dodopayments/models/customer.rb +22 -1
- data/lib/dodopayments/models/dunning_recovered_webhook_event.rb +1 -0
- data/lib/dodopayments/models/dunning_started_webhook_event.rb +1 -0
- data/lib/dodopayments/models/manual_retry.rb +76 -0
- data/lib/dodopayments/models/manual_retry_state.rb +50 -0
- data/lib/dodopayments/models/payment_retrieve_retry_state_params.rb +20 -0
- data/lib/dodopayments/models/payment_retry_params.rb +20 -0
- data/lib/dodopayments/models/subscription_active_webhook_event.rb +32 -4
- data/lib/dodopayments/models/subscription_cancelled_webhook_event.rb +33 -4
- data/lib/dodopayments/models/subscription_expired_webhook_event.rb +32 -4
- data/lib/dodopayments/models/subscription_failed_webhook_event.rb +32 -4
- data/lib/dodopayments/models/subscription_list_params.rb +1 -0
- data/lib/dodopayments/models/subscription_on_hold_webhook_event.rb +32 -4
- data/lib/dodopayments/models/subscription_past_due_webhook_event.rb +68 -0
- data/lib/dodopayments/models/subscription_paused_webhook_event.rb +32 -4
- data/lib/dodopayments/models/subscription_plan_changed_webhook_event.rb +33 -4
- data/lib/dodopayments/models/subscription_renewed_webhook_event.rb +32 -4
- data/lib/dodopayments/models/subscription_status.rb +1 -0
- data/lib/dodopayments/models/subscription_unpaused_webhook_event.rb +32 -4
- data/lib/dodopayments/models/subscription_update_params.rb +1 -0
- data/lib/dodopayments/models/subscription_update_payment_method_webhook_event.rb +34 -4
- data/lib/dodopayments/models/subscription_updated_webhook_event.rb +32 -4
- data/lib/dodopayments/models/unsafe_unwrap_webhook_event.rb +3 -1
- data/lib/dodopayments/models/unwrap_webhook_event.rb +3 -1
- data/lib/dodopayments/models/webhook_event_type.rb +1 -0
- data/lib/dodopayments/models/webhook_payload.rb +19 -1
- data/lib/dodopayments/models.rb +12 -0
- data/lib/dodopayments/resources/blocklist/customers/notes.rb +68 -0
- data/lib/dodopayments/resources/blocklist/customers.rb +107 -0
- data/lib/dodopayments/resources/blocklist.rb +18 -0
- data/lib/dodopayments/resources/payments.rb +36 -0
- data/lib/dodopayments/resources/webhooks.rb +2 -2
- data/lib/dodopayments/version.rb +1 -1
- data/lib/dodopayments.rb +23 -1
- data/rbi/dodopayments/client.rbi +3 -0
- data/rbi/dodopayments/models/balance_ledger_entry.rbi +6 -0
- data/rbi/dodopayments/models/blocklist/block_by_customer_id.rbi +32 -0
- data/rbi/dodopayments/models/blocklist/block_by_email.rbi +32 -0
- data/rbi/dodopayments/models/blocklist/block_identifier.rbi +30 -0
- data/rbi/dodopayments/models/blocklist/blocked_customer.rbi +161 -0
- data/rbi/dodopayments/models/blocklist/blocked_customer_source.rbi +55 -0
- data/rbi/dodopayments/models/blocklist/create_blocked_customer_request.rbi +143 -0
- data/rbi/dodopayments/models/blocklist/customer_create_params.rbi +34 -0
- data/rbi/dodopayments/models/blocklist/customer_delete_params.rbi +40 -0
- data/rbi/dodopayments/models/blocklist/customer_list_params.rbi +88 -0
- data/rbi/dodopayments/models/blocklist/customer_retrieve_params.rbi +40 -0
- data/rbi/dodopayments/models/blocklist/customers/blocked_customer_note.rbi +66 -0
- data/rbi/dodopayments/models/blocklist/customers/note_create_params.rbi +45 -0
- data/rbi/dodopayments/models/blocklist/customers/note_request.rbi +30 -0
- data/rbi/dodopayments/models/blocklist/customers/note_update_params.rbi +50 -0
- data/rbi/dodopayments/models/customer.rbi +20 -0
- data/rbi/dodopayments/models/dunning_recovered_webhook_event.rbi +5 -0
- data/rbi/dodopayments/models/dunning_started_webhook_event.rbi +5 -0
- data/rbi/dodopayments/models/manual_retry.rbi +93 -0
- data/rbi/dodopayments/models/manual_retry_state.rbi +65 -0
- data/rbi/dodopayments/models/payment_retrieve_retry_state_params.rbi +38 -0
- data/rbi/dodopayments/models/payment_retry_params.rbi +38 -0
- data/rbi/dodopayments/models/subscription_active_webhook_event.rbi +53 -6
- data/rbi/dodopayments/models/subscription_cancelled_webhook_event.rbi +53 -6
- data/rbi/dodopayments/models/subscription_expired_webhook_event.rbi +53 -6
- data/rbi/dodopayments/models/subscription_failed_webhook_event.rbi +53 -6
- data/rbi/dodopayments/models/subscription_list_params.rbi +5 -0
- data/rbi/dodopayments/models/subscription_on_hold_webhook_event.rbi +53 -6
- data/rbi/dodopayments/models/subscription_past_due_webhook_event.rbi +114 -0
- data/rbi/dodopayments/models/subscription_paused_webhook_event.rbi +53 -6
- data/rbi/dodopayments/models/subscription_plan_changed_webhook_event.rbi +53 -6
- data/rbi/dodopayments/models/subscription_renewed_webhook_event.rbi +53 -6
- data/rbi/dodopayments/models/subscription_status.rbi +2 -0
- data/rbi/dodopayments/models/subscription_unpaused_webhook_event.rbi +53 -6
- data/rbi/dodopayments/models/subscription_update_params.rbi +5 -0
- data/rbi/dodopayments/models/subscription_update_payment_method_webhook_event.rbi +58 -6
- data/rbi/dodopayments/models/subscription_updated_webhook_event.rbi +53 -6
- data/rbi/dodopayments/models/unsafe_unwrap_webhook_event.rbi +1 -0
- data/rbi/dodopayments/models/unwrap_webhook_event.rbi +1 -0
- data/rbi/dodopayments/models/webhook_event_type.rbi +5 -0
- data/rbi/dodopayments/models/webhook_payload.rbi +37 -3
- data/rbi/dodopayments/models.rbi +14 -0
- data/rbi/dodopayments/resources/blocklist/customers/notes.rbi +50 -0
- data/rbi/dodopayments/resources/blocklist/customers.rbi +88 -0
- data/rbi/dodopayments/resources/blocklist.rbi +15 -0
- data/rbi/dodopayments/resources/payments.rbi +26 -0
- data/rbi/dodopayments/resources/webhooks.rbi +2 -0
- data/sig/dodopayments/client.rbs +2 -0
- data/sig/dodopayments/models/balance_ledger_entry.rbs +5 -0
- data/sig/dodopayments/models/blocklist/block_by_customer_id.rbs +15 -0
- data/sig/dodopayments/models/blocklist/block_by_email.rbs +15 -0
- data/sig/dodopayments/models/blocklist/block_identifier.rbs +15 -0
- data/sig/dodopayments/models/blocklist/blocked_customer.rbs +87 -0
- data/sig/dodopayments/models/blocklist/blocked_customer_source.rbs +20 -0
- data/sig/dodopayments/models/blocklist/create_blocked_customer_request.rbs +71 -0
- data/sig/dodopayments/models/blocklist/customer_create_params.rbs +17 -0
- data/sig/dodopayments/models/blocklist/customer_delete_params.rbs +25 -0
- data/sig/dodopayments/models/blocklist/customer_list_params.rbs +53 -0
- data/sig/dodopayments/models/blocklist/customer_retrieve_params.rbs +25 -0
- data/sig/dodopayments/models/blocklist/customers/blocked_customer_note.rbs +44 -0
- data/sig/dodopayments/models/blocklist/customers/note_create_params.rbs +30 -0
- data/sig/dodopayments/models/blocklist/customers/note_request.rbs +17 -0
- data/sig/dodopayments/models/blocklist/customers/note_update_params.rbs +36 -0
- data/sig/dodopayments/models/customer.rbs +10 -0
- data/sig/dodopayments/models/dunning_recovered_webhook_event.rbs +2 -1
- data/sig/dodopayments/models/dunning_started_webhook_event.rbs +2 -1
- data/sig/dodopayments/models/manual_retry.rbs +55 -0
- data/sig/dodopayments/models/manual_retry_state.rbs +40 -0
- data/sig/dodopayments/models/payment_retrieve_retry_state_params.rbs +23 -0
- data/sig/dodopayments/models/payment_retry_params.rbs +23 -0
- data/sig/dodopayments/models/subscription_active_webhook_event.rbs +16 -4
- data/sig/dodopayments/models/subscription_cancelled_webhook_event.rbs +16 -4
- data/sig/dodopayments/models/subscription_expired_webhook_event.rbs +16 -4
- data/sig/dodopayments/models/subscription_failed_webhook_event.rbs +16 -4
- data/sig/dodopayments/models/subscription_list_params.rbs +2 -0
- data/sig/dodopayments/models/subscription_on_hold_webhook_event.rbs +16 -4
- data/sig/dodopayments/models/subscription_past_due_webhook_event.rbs +47 -0
- data/sig/dodopayments/models/subscription_paused_webhook_event.rbs +16 -4
- data/sig/dodopayments/models/subscription_plan_changed_webhook_event.rbs +16 -4
- data/sig/dodopayments/models/subscription_renewed_webhook_event.rbs +16 -4
- data/sig/dodopayments/models/subscription_status.rbs +9 -1
- data/sig/dodopayments/models/subscription_unpaused_webhook_event.rbs +16 -4
- data/sig/dodopayments/models/subscription_update_params.rbs +2 -0
- data/sig/dodopayments/models/subscription_update_payment_method_webhook_event.rbs +16 -4
- data/sig/dodopayments/models/subscription_updated_webhook_event.rbs +16 -4
- data/sig/dodopayments/models/unsafe_unwrap_webhook_event.rbs +1 -0
- data/sig/dodopayments/models/unwrap_webhook_event.rbs +1 -0
- data/sig/dodopayments/models/webhook_event_type.rbs +2 -0
- data/sig/dodopayments/models/webhook_payload.rbs +16 -4
- data/sig/dodopayments/models.rbs +12 -0
- data/sig/dodopayments/resources/blocklist/customers/notes.rbs +24 -0
- data/sig/dodopayments/resources/blocklist/customers.rbs +36 -0
- data/sig/dodopayments/resources/blocklist.rbs +9 -0
- data/sig/dodopayments/resources/payments.rbs +10 -0
- data/sig/dodopayments/resources/webhooks.rbs +2 -0
- metadata +68 -2
|
@@ -15,11 +15,16 @@ module Dodopayments
|
|
|
15
15
|
sig { returns(String) }
|
|
16
16
|
attr_accessor :business_id
|
|
17
17
|
|
|
18
|
-
#
|
|
19
|
-
|
|
18
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
19
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
20
|
+
sig { returns(Dodopayments::SubscriptionActiveWebhookEvent::Data) }
|
|
20
21
|
attr_reader :data
|
|
21
22
|
|
|
22
|
-
sig
|
|
23
|
+
sig do
|
|
24
|
+
params(
|
|
25
|
+
data: Dodopayments::SubscriptionActiveWebhookEvent::Data::OrHash
|
|
26
|
+
).void
|
|
27
|
+
end
|
|
23
28
|
attr_writer :data
|
|
24
29
|
|
|
25
30
|
# The timestamp of when the event occurred
|
|
@@ -33,7 +38,7 @@ module Dodopayments
|
|
|
33
38
|
sig do
|
|
34
39
|
params(
|
|
35
40
|
business_id: String,
|
|
36
|
-
data: Dodopayments::
|
|
41
|
+
data: Dodopayments::SubscriptionActiveWebhookEvent::Data::OrHash,
|
|
37
42
|
timestamp: Time,
|
|
38
43
|
type: Symbol
|
|
39
44
|
).returns(T.attached_class)
|
|
@@ -41,7 +46,8 @@ module Dodopayments
|
|
|
41
46
|
def self.new(
|
|
42
47
|
# The business identifier
|
|
43
48
|
business_id:,
|
|
44
|
-
#
|
|
49
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
50
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
45
51
|
data:,
|
|
46
52
|
# The timestamp of when the event occurred
|
|
47
53
|
timestamp:,
|
|
@@ -54,7 +60,7 @@ module Dodopayments
|
|
|
54
60
|
override.returns(
|
|
55
61
|
{
|
|
56
62
|
business_id: String,
|
|
57
|
-
data: Dodopayments::
|
|
63
|
+
data: Dodopayments::SubscriptionActiveWebhookEvent::Data,
|
|
58
64
|
timestamp: Time,
|
|
59
65
|
type: Symbol
|
|
60
66
|
}
|
|
@@ -62,6 +68,47 @@ module Dodopayments
|
|
|
62
68
|
end
|
|
63
69
|
def to_hash
|
|
64
70
|
end
|
|
71
|
+
|
|
72
|
+
class Data < Dodopayments::Models::Subscription
|
|
73
|
+
OrHash =
|
|
74
|
+
T.type_alias do
|
|
75
|
+
T.any(
|
|
76
|
+
Dodopayments::SubscriptionActiveWebhookEvent::Data,
|
|
77
|
+
Dodopayments::Internal::AnyHash
|
|
78
|
+
)
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
82
|
+
# `cancelled` at this time.
|
|
83
|
+
#
|
|
84
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
85
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
86
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
87
|
+
# deadline too, next to a `past_due` status.
|
|
88
|
+
sig { returns(T.nilable(Time)) }
|
|
89
|
+
attr_accessor :past_due_ends_at
|
|
90
|
+
|
|
91
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
92
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
93
|
+
sig do
|
|
94
|
+
params(past_due_ends_at: T.nilable(Time)).returns(T.attached_class)
|
|
95
|
+
end
|
|
96
|
+
def self.new(
|
|
97
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
98
|
+
# `cancelled` at this time.
|
|
99
|
+
#
|
|
100
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
101
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
102
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
103
|
+
# deadline too, next to a `past_due` status.
|
|
104
|
+
past_due_ends_at: nil
|
|
105
|
+
)
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
sig { override.returns({ past_due_ends_at: T.nilable(Time) }) }
|
|
109
|
+
def to_hash
|
|
110
|
+
end
|
|
111
|
+
end
|
|
65
112
|
end
|
|
66
113
|
end
|
|
67
114
|
end
|
|
@@ -15,11 +15,16 @@ module Dodopayments
|
|
|
15
15
|
sig { returns(String) }
|
|
16
16
|
attr_accessor :business_id
|
|
17
17
|
|
|
18
|
-
#
|
|
19
|
-
|
|
18
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
19
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
20
|
+
sig { returns(Dodopayments::SubscriptionCancelledWebhookEvent::Data) }
|
|
20
21
|
attr_reader :data
|
|
21
22
|
|
|
22
|
-
sig
|
|
23
|
+
sig do
|
|
24
|
+
params(
|
|
25
|
+
data: Dodopayments::SubscriptionCancelledWebhookEvent::Data::OrHash
|
|
26
|
+
).void
|
|
27
|
+
end
|
|
23
28
|
attr_writer :data
|
|
24
29
|
|
|
25
30
|
# The timestamp of when the event occurred
|
|
@@ -33,7 +38,7 @@ module Dodopayments
|
|
|
33
38
|
sig do
|
|
34
39
|
params(
|
|
35
40
|
business_id: String,
|
|
36
|
-
data: Dodopayments::
|
|
41
|
+
data: Dodopayments::SubscriptionCancelledWebhookEvent::Data::OrHash,
|
|
37
42
|
timestamp: Time,
|
|
38
43
|
type: Symbol
|
|
39
44
|
).returns(T.attached_class)
|
|
@@ -41,7 +46,8 @@ module Dodopayments
|
|
|
41
46
|
def self.new(
|
|
42
47
|
# The business identifier
|
|
43
48
|
business_id:,
|
|
44
|
-
#
|
|
49
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
50
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
45
51
|
data:,
|
|
46
52
|
# The timestamp of when the event occurred
|
|
47
53
|
timestamp:,
|
|
@@ -54,7 +60,7 @@ module Dodopayments
|
|
|
54
60
|
override.returns(
|
|
55
61
|
{
|
|
56
62
|
business_id: String,
|
|
57
|
-
data: Dodopayments::
|
|
63
|
+
data: Dodopayments::SubscriptionCancelledWebhookEvent::Data,
|
|
58
64
|
timestamp: Time,
|
|
59
65
|
type: Symbol
|
|
60
66
|
}
|
|
@@ -62,6 +68,47 @@ module Dodopayments
|
|
|
62
68
|
end
|
|
63
69
|
def to_hash
|
|
64
70
|
end
|
|
71
|
+
|
|
72
|
+
class Data < Dodopayments::Models::Subscription
|
|
73
|
+
OrHash =
|
|
74
|
+
T.type_alias do
|
|
75
|
+
T.any(
|
|
76
|
+
Dodopayments::SubscriptionCancelledWebhookEvent::Data,
|
|
77
|
+
Dodopayments::Internal::AnyHash
|
|
78
|
+
)
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
82
|
+
# `cancelled` at this time.
|
|
83
|
+
#
|
|
84
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
85
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
86
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
87
|
+
# deadline too, next to a `past_due` status.
|
|
88
|
+
sig { returns(T.nilable(Time)) }
|
|
89
|
+
attr_accessor :past_due_ends_at
|
|
90
|
+
|
|
91
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
92
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
93
|
+
sig do
|
|
94
|
+
params(past_due_ends_at: T.nilable(Time)).returns(T.attached_class)
|
|
95
|
+
end
|
|
96
|
+
def self.new(
|
|
97
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
98
|
+
# `cancelled` at this time.
|
|
99
|
+
#
|
|
100
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
101
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
102
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
103
|
+
# deadline too, next to a `past_due` status.
|
|
104
|
+
past_due_ends_at: nil
|
|
105
|
+
)
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
sig { override.returns({ past_due_ends_at: T.nilable(Time) }) }
|
|
109
|
+
def to_hash
|
|
110
|
+
end
|
|
111
|
+
end
|
|
65
112
|
end
|
|
66
113
|
end
|
|
67
114
|
end
|
|
@@ -15,11 +15,16 @@ module Dodopayments
|
|
|
15
15
|
sig { returns(String) }
|
|
16
16
|
attr_accessor :business_id
|
|
17
17
|
|
|
18
|
-
#
|
|
19
|
-
|
|
18
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
19
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
20
|
+
sig { returns(Dodopayments::SubscriptionExpiredWebhookEvent::Data) }
|
|
20
21
|
attr_reader :data
|
|
21
22
|
|
|
22
|
-
sig
|
|
23
|
+
sig do
|
|
24
|
+
params(
|
|
25
|
+
data: Dodopayments::SubscriptionExpiredWebhookEvent::Data::OrHash
|
|
26
|
+
).void
|
|
27
|
+
end
|
|
23
28
|
attr_writer :data
|
|
24
29
|
|
|
25
30
|
# The timestamp of when the event occurred
|
|
@@ -33,7 +38,7 @@ module Dodopayments
|
|
|
33
38
|
sig do
|
|
34
39
|
params(
|
|
35
40
|
business_id: String,
|
|
36
|
-
data: Dodopayments::
|
|
41
|
+
data: Dodopayments::SubscriptionExpiredWebhookEvent::Data::OrHash,
|
|
37
42
|
timestamp: Time,
|
|
38
43
|
type: Symbol
|
|
39
44
|
).returns(T.attached_class)
|
|
@@ -41,7 +46,8 @@ module Dodopayments
|
|
|
41
46
|
def self.new(
|
|
42
47
|
# The business identifier
|
|
43
48
|
business_id:,
|
|
44
|
-
#
|
|
49
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
50
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
45
51
|
data:,
|
|
46
52
|
# The timestamp of when the event occurred
|
|
47
53
|
timestamp:,
|
|
@@ -54,7 +60,7 @@ module Dodopayments
|
|
|
54
60
|
override.returns(
|
|
55
61
|
{
|
|
56
62
|
business_id: String,
|
|
57
|
-
data: Dodopayments::
|
|
63
|
+
data: Dodopayments::SubscriptionExpiredWebhookEvent::Data,
|
|
58
64
|
timestamp: Time,
|
|
59
65
|
type: Symbol
|
|
60
66
|
}
|
|
@@ -62,6 +68,47 @@ module Dodopayments
|
|
|
62
68
|
end
|
|
63
69
|
def to_hash
|
|
64
70
|
end
|
|
71
|
+
|
|
72
|
+
class Data < Dodopayments::Models::Subscription
|
|
73
|
+
OrHash =
|
|
74
|
+
T.type_alias do
|
|
75
|
+
T.any(
|
|
76
|
+
Dodopayments::SubscriptionExpiredWebhookEvent::Data,
|
|
77
|
+
Dodopayments::Internal::AnyHash
|
|
78
|
+
)
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
82
|
+
# `cancelled` at this time.
|
|
83
|
+
#
|
|
84
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
85
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
86
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
87
|
+
# deadline too, next to a `past_due` status.
|
|
88
|
+
sig { returns(T.nilable(Time)) }
|
|
89
|
+
attr_accessor :past_due_ends_at
|
|
90
|
+
|
|
91
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
92
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
93
|
+
sig do
|
|
94
|
+
params(past_due_ends_at: T.nilable(Time)).returns(T.attached_class)
|
|
95
|
+
end
|
|
96
|
+
def self.new(
|
|
97
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
98
|
+
# `cancelled` at this time.
|
|
99
|
+
#
|
|
100
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
101
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
102
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
103
|
+
# deadline too, next to a `past_due` status.
|
|
104
|
+
past_due_ends_at: nil
|
|
105
|
+
)
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
sig { override.returns({ past_due_ends_at: T.nilable(Time) }) }
|
|
109
|
+
def to_hash
|
|
110
|
+
end
|
|
111
|
+
end
|
|
65
112
|
end
|
|
66
113
|
end
|
|
67
114
|
end
|
|
@@ -15,11 +15,16 @@ module Dodopayments
|
|
|
15
15
|
sig { returns(String) }
|
|
16
16
|
attr_accessor :business_id
|
|
17
17
|
|
|
18
|
-
#
|
|
19
|
-
|
|
18
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
19
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
20
|
+
sig { returns(Dodopayments::SubscriptionFailedWebhookEvent::Data) }
|
|
20
21
|
attr_reader :data
|
|
21
22
|
|
|
22
|
-
sig
|
|
23
|
+
sig do
|
|
24
|
+
params(
|
|
25
|
+
data: Dodopayments::SubscriptionFailedWebhookEvent::Data::OrHash
|
|
26
|
+
).void
|
|
27
|
+
end
|
|
23
28
|
attr_writer :data
|
|
24
29
|
|
|
25
30
|
# The timestamp of when the event occurred
|
|
@@ -33,7 +38,7 @@ module Dodopayments
|
|
|
33
38
|
sig do
|
|
34
39
|
params(
|
|
35
40
|
business_id: String,
|
|
36
|
-
data: Dodopayments::
|
|
41
|
+
data: Dodopayments::SubscriptionFailedWebhookEvent::Data::OrHash,
|
|
37
42
|
timestamp: Time,
|
|
38
43
|
type: Symbol
|
|
39
44
|
).returns(T.attached_class)
|
|
@@ -41,7 +46,8 @@ module Dodopayments
|
|
|
41
46
|
def self.new(
|
|
42
47
|
# The business identifier
|
|
43
48
|
business_id:,
|
|
44
|
-
#
|
|
49
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
50
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
45
51
|
data:,
|
|
46
52
|
# The timestamp of when the event occurred
|
|
47
53
|
timestamp:,
|
|
@@ -54,7 +60,7 @@ module Dodopayments
|
|
|
54
60
|
override.returns(
|
|
55
61
|
{
|
|
56
62
|
business_id: String,
|
|
57
|
-
data: Dodopayments::
|
|
63
|
+
data: Dodopayments::SubscriptionFailedWebhookEvent::Data,
|
|
58
64
|
timestamp: Time,
|
|
59
65
|
type: Symbol
|
|
60
66
|
}
|
|
@@ -62,6 +68,47 @@ module Dodopayments
|
|
|
62
68
|
end
|
|
63
69
|
def to_hash
|
|
64
70
|
end
|
|
71
|
+
|
|
72
|
+
class Data < Dodopayments::Models::Subscription
|
|
73
|
+
OrHash =
|
|
74
|
+
T.type_alias do
|
|
75
|
+
T.any(
|
|
76
|
+
Dodopayments::SubscriptionFailedWebhookEvent::Data,
|
|
77
|
+
Dodopayments::Internal::AnyHash
|
|
78
|
+
)
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
82
|
+
# `cancelled` at this time.
|
|
83
|
+
#
|
|
84
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
85
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
86
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
87
|
+
# deadline too, next to a `past_due` status.
|
|
88
|
+
sig { returns(T.nilable(Time)) }
|
|
89
|
+
attr_accessor :past_due_ends_at
|
|
90
|
+
|
|
91
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
92
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
93
|
+
sig do
|
|
94
|
+
params(past_due_ends_at: T.nilable(Time)).returns(T.attached_class)
|
|
95
|
+
end
|
|
96
|
+
def self.new(
|
|
97
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
98
|
+
# `cancelled` at this time.
|
|
99
|
+
#
|
|
100
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
101
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
102
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
103
|
+
# deadline too, next to a `past_due` status.
|
|
104
|
+
past_due_ends_at: nil
|
|
105
|
+
)
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
sig { override.returns({ past_due_ends_at: T.nilable(Time) }) }
|
|
109
|
+
def to_hash
|
|
110
|
+
end
|
|
111
|
+
end
|
|
65
112
|
end
|
|
66
113
|
end
|
|
67
114
|
end
|
|
@@ -186,6 +186,11 @@ module Dodopayments
|
|
|
186
186
|
:expired,
|
|
187
187
|
Dodopayments::SubscriptionListParams::Status::TaggedSymbol
|
|
188
188
|
)
|
|
189
|
+
PAST_DUE =
|
|
190
|
+
T.let(
|
|
191
|
+
:past_due,
|
|
192
|
+
Dodopayments::SubscriptionListParams::Status::TaggedSymbol
|
|
193
|
+
)
|
|
189
194
|
|
|
190
195
|
sig do
|
|
191
196
|
override.returns(
|
|
@@ -15,11 +15,16 @@ module Dodopayments
|
|
|
15
15
|
sig { returns(String) }
|
|
16
16
|
attr_accessor :business_id
|
|
17
17
|
|
|
18
|
-
#
|
|
19
|
-
|
|
18
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
19
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
20
|
+
sig { returns(Dodopayments::SubscriptionOnHoldWebhookEvent::Data) }
|
|
20
21
|
attr_reader :data
|
|
21
22
|
|
|
22
|
-
sig
|
|
23
|
+
sig do
|
|
24
|
+
params(
|
|
25
|
+
data: Dodopayments::SubscriptionOnHoldWebhookEvent::Data::OrHash
|
|
26
|
+
).void
|
|
27
|
+
end
|
|
23
28
|
attr_writer :data
|
|
24
29
|
|
|
25
30
|
# The timestamp of when the event occurred
|
|
@@ -33,7 +38,7 @@ module Dodopayments
|
|
|
33
38
|
sig do
|
|
34
39
|
params(
|
|
35
40
|
business_id: String,
|
|
36
|
-
data: Dodopayments::
|
|
41
|
+
data: Dodopayments::SubscriptionOnHoldWebhookEvent::Data::OrHash,
|
|
37
42
|
timestamp: Time,
|
|
38
43
|
type: Symbol
|
|
39
44
|
).returns(T.attached_class)
|
|
@@ -41,7 +46,8 @@ module Dodopayments
|
|
|
41
46
|
def self.new(
|
|
42
47
|
# The business identifier
|
|
43
48
|
business_id:,
|
|
44
|
-
#
|
|
49
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
50
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
45
51
|
data:,
|
|
46
52
|
# The timestamp of when the event occurred
|
|
47
53
|
timestamp:,
|
|
@@ -54,7 +60,7 @@ module Dodopayments
|
|
|
54
60
|
override.returns(
|
|
55
61
|
{
|
|
56
62
|
business_id: String,
|
|
57
|
-
data: Dodopayments::
|
|
63
|
+
data: Dodopayments::SubscriptionOnHoldWebhookEvent::Data,
|
|
58
64
|
timestamp: Time,
|
|
59
65
|
type: Symbol
|
|
60
66
|
}
|
|
@@ -62,6 +68,47 @@ module Dodopayments
|
|
|
62
68
|
end
|
|
63
69
|
def to_hash
|
|
64
70
|
end
|
|
71
|
+
|
|
72
|
+
class Data < Dodopayments::Models::Subscription
|
|
73
|
+
OrHash =
|
|
74
|
+
T.type_alias do
|
|
75
|
+
T.any(
|
|
76
|
+
Dodopayments::SubscriptionOnHoldWebhookEvent::Data,
|
|
77
|
+
Dodopayments::Internal::AnyHash
|
|
78
|
+
)
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
82
|
+
# `cancelled` at this time.
|
|
83
|
+
#
|
|
84
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
85
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
86
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
87
|
+
# deadline too, next to a `past_due` status.
|
|
88
|
+
sig { returns(T.nilable(Time)) }
|
|
89
|
+
attr_accessor :past_due_ends_at
|
|
90
|
+
|
|
91
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
92
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
93
|
+
sig do
|
|
94
|
+
params(past_due_ends_at: T.nilable(Time)).returns(T.attached_class)
|
|
95
|
+
end
|
|
96
|
+
def self.new(
|
|
97
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
98
|
+
# `cancelled` at this time.
|
|
99
|
+
#
|
|
100
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
101
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
102
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
103
|
+
# deadline too, next to a `past_due` status.
|
|
104
|
+
past_due_ends_at: nil
|
|
105
|
+
)
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
sig { override.returns({ past_due_ends_at: T.nilable(Time) }) }
|
|
109
|
+
def to_hash
|
|
110
|
+
end
|
|
111
|
+
end
|
|
65
112
|
end
|
|
66
113
|
end
|
|
67
114
|
end
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
# typed: strong
|
|
2
|
+
|
|
3
|
+
module Dodopayments
|
|
4
|
+
module Models
|
|
5
|
+
class SubscriptionPastDueWebhookEvent < Dodopayments::Internal::Type::BaseModel
|
|
6
|
+
OrHash =
|
|
7
|
+
T.type_alias do
|
|
8
|
+
T.any(
|
|
9
|
+
Dodopayments::SubscriptionPastDueWebhookEvent,
|
|
10
|
+
Dodopayments::Internal::AnyHash
|
|
11
|
+
)
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
# The business identifier
|
|
15
|
+
sig { returns(String) }
|
|
16
|
+
attr_accessor :business_id
|
|
17
|
+
|
|
18
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
19
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
20
|
+
sig { returns(Dodopayments::SubscriptionPastDueWebhookEvent::Data) }
|
|
21
|
+
attr_reader :data
|
|
22
|
+
|
|
23
|
+
sig do
|
|
24
|
+
params(
|
|
25
|
+
data: Dodopayments::SubscriptionPastDueWebhookEvent::Data::OrHash
|
|
26
|
+
).void
|
|
27
|
+
end
|
|
28
|
+
attr_writer :data
|
|
29
|
+
|
|
30
|
+
# The timestamp of when the event occurred
|
|
31
|
+
sig { returns(Time) }
|
|
32
|
+
attr_accessor :timestamp
|
|
33
|
+
|
|
34
|
+
# The event type
|
|
35
|
+
sig { returns(Symbol) }
|
|
36
|
+
attr_accessor :type
|
|
37
|
+
|
|
38
|
+
sig do
|
|
39
|
+
params(
|
|
40
|
+
business_id: String,
|
|
41
|
+
data: Dodopayments::SubscriptionPastDueWebhookEvent::Data::OrHash,
|
|
42
|
+
timestamp: Time,
|
|
43
|
+
type: Symbol
|
|
44
|
+
).returns(T.attached_class)
|
|
45
|
+
end
|
|
46
|
+
def self.new(
|
|
47
|
+
# The business identifier
|
|
48
|
+
business_id:,
|
|
49
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
50
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
51
|
+
data:,
|
|
52
|
+
# The timestamp of when the event occurred
|
|
53
|
+
timestamp:,
|
|
54
|
+
# The event type
|
|
55
|
+
type: :"subscription.past_due"
|
|
56
|
+
)
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
sig do
|
|
60
|
+
override.returns(
|
|
61
|
+
{
|
|
62
|
+
business_id: String,
|
|
63
|
+
data: Dodopayments::SubscriptionPastDueWebhookEvent::Data,
|
|
64
|
+
timestamp: Time,
|
|
65
|
+
type: Symbol
|
|
66
|
+
}
|
|
67
|
+
)
|
|
68
|
+
end
|
|
69
|
+
def to_hash
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
class Data < Dodopayments::Models::Subscription
|
|
73
|
+
OrHash =
|
|
74
|
+
T.type_alias do
|
|
75
|
+
T.any(
|
|
76
|
+
Dodopayments::SubscriptionPastDueWebhookEvent::Data,
|
|
77
|
+
Dodopayments::Internal::AnyHash
|
|
78
|
+
)
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
82
|
+
# `cancelled` at this time.
|
|
83
|
+
#
|
|
84
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
85
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
86
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
87
|
+
# deadline too, next to a `past_due` status.
|
|
88
|
+
sig { returns(T.nilable(Time)) }
|
|
89
|
+
attr_accessor :past_due_ends_at
|
|
90
|
+
|
|
91
|
+
# Subscription payload sent on a webhook. It carries every field of
|
|
92
|
+
# `SubscriptionResponse`, plus the grace-period deadline.
|
|
93
|
+
sig do
|
|
94
|
+
params(past_due_ends_at: T.nilable(Time)).returns(T.attached_class)
|
|
95
|
+
end
|
|
96
|
+
def self.new(
|
|
97
|
+
# Time when the grace period ends. The subscription moves to `on_hold` or to
|
|
98
|
+
# `cancelled` at this time.
|
|
99
|
+
#
|
|
100
|
+
# Read in the same query as the rest of the payload, so it always comes from the
|
|
101
|
+
# row snapshot that produced `status`. It is set whenever the subscription sits in
|
|
102
|
+
# a window at that moment. A delayed event of another type therefore carries the
|
|
103
|
+
# deadline too, next to a `past_due` status.
|
|
104
|
+
past_due_ends_at: nil
|
|
105
|
+
)
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
sig { override.returns({ past_due_ends_at: T.nilable(Time) }) }
|
|
109
|
+
def to_hash
|
|
110
|
+
end
|
|
111
|
+
end
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
end
|