increase 1.90.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 +18 -0
- data/README.md +1 -1
- data/lib/increase/models/transaction.rb +1296 -173
- data/lib/increase/models/transaction_list_params.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/transaction.rbi +2282 -123
- data/rbi/increase/models/transaction_list_params.rbi +7 -0
- data/sig/increase/models/transaction.rbs +768 -0
- data/sig/increase/models/transaction_list_params.rbs +4 -0
- metadata +2 -2
@@ -112,6 +112,9 @@ module Increase
|
|
112
112
|
# Card Settlement: details will be under the `card_settlement` object.
|
113
113
|
CARD_SETTLEMENT = :card_settlement
|
114
114
|
|
115
|
+
# Card Financial: details will be under the `card_financial` object.
|
116
|
+
CARD_FINANCIAL = :card_financial
|
117
|
+
|
115
118
|
# Card Revenue Payment: details will be under the `card_revenue_payment` object.
|
116
119
|
CARD_REVENUE_PAYMENT = :card_revenue_payment
|
117
120
|
|
data/lib/increase/version.rb
CHANGED