increase 1.89.0 → 1.91.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 +26 -0
- data/README.md +1 -1
- data/lib/increase/models/event_subscription_create_params.rb +23 -1
- data/lib/increase/models/transaction.rb +1296 -173
- data/lib/increase/models/transaction_list_params.rb +3 -0
- data/lib/increase/resources/event_subscriptions.rb +3 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/event_subscription_create_params.rbi +54 -0
- data/rbi/increase/models/transaction.rbi +2282 -123
- data/rbi/increase/models/transaction_list_params.rbi +7 -0
- data/rbi/increase/resources/event_subscriptions.rbi +3 -0
- data/sig/increase/models/event_subscription_create_params.rbs +24 -1
- data/sig/increase/models/transaction.rbs +768 -0
- data/sig/increase/models/transaction_list_params.rbs +4 -0
- data/sig/increase/resources/event_subscriptions.rbs +1 -0
- metadata +2 -2
@@ -92,6 +92,7 @@ module Increase
|
|
92
92
|
| :card_dispute_loss
|
93
93
|
| :card_refund
|
94
94
|
| :card_settlement
|
95
|
+
| :card_financial
|
95
96
|
| :card_revenue_payment
|
96
97
|
| :check_deposit_acceptance
|
97
98
|
| :check_deposit_return
|
@@ -151,6 +152,9 @@ module Increase
|
|
151
152
|
# Card Settlement: details will be under the `card_settlement` object.
|
152
153
|
CARD_SETTLEMENT: :card_settlement
|
153
154
|
|
155
|
+
# Card Financial: details will be under the `card_financial` object.
|
156
|
+
CARD_FINANCIAL: :card_financial
|
157
|
+
|
154
158
|
# Card Revenue Payment: details will be under the `card_revenue_payment` object.
|
155
159
|
CARD_REVENUE_PAYMENT: :card_revenue_payment
|
156
160
|
|
@@ -6,6 +6,7 @@ module Increase
|
|
6
6
|
?oauth_connection_id: String,
|
7
7
|
?selected_event_category: Increase::Models::EventSubscriptionCreateParams::selected_event_category,
|
8
8
|
?shared_secret: String,
|
9
|
+
?status: Increase::Models::EventSubscriptionCreateParams::status,
|
9
10
|
?request_options: Increase::request_opts
|
10
11
|
) -> Increase::EventSubscription
|
11
12
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: increase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.91.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Increase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|