increase 1.155.0 → 1.157.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/entity.rb +3 -0
- data/lib/increase/models/entity_create_params.rb +3 -0
- data/lib/increase/models/entity_update_params.rb +3 -0
- data/lib/increase/models/event.rb +3 -0
- data/lib/increase/models/event_list_params.rb +3 -0
- data/lib/increase/models/event_subscription.rb +3 -0
- data/lib/increase/models/event_subscription_create_params.rb +3 -0
- data/lib/increase/models/real_time_decision.rb +1053 -8
- data/lib/increase/models/real_time_decision_action_params.rb +68 -1
- data/lib/increase/resources/real_time_decisions.rb +3 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity.rbi +7 -0
- data/rbi/increase/models/entity_create_params.rbi +7 -0
- data/rbi/increase/models/entity_update_params.rbi +7 -0
- data/rbi/increase/models/event.rbi +7 -0
- data/rbi/increase/models/event_list_params.rbi +7 -0
- data/rbi/increase/models/event_subscription.rbi +7 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +7 -0
- data/rbi/increase/models/real_time_decision.rbi +2033 -10
- data/rbi/increase/models/real_time_decision_action_params.rbi +158 -0
- data/rbi/increase/resources/real_time_decisions.rbi +5 -0
- data/sig/increase/models/entity.rbs +4 -1
- data/sig/increase/models/entity_create_params.rbs +4 -1
- data/sig/increase/models/entity_update_params.rbs +4 -1
- data/sig/increase/models/event.rbs +4 -0
- data/sig/increase/models/event_list_params.rbs +4 -0
- data/sig/increase/models/event_subscription.rbs +4 -0
- data/sig/increase/models/event_subscription_create_params.rbs +4 -0
- data/sig/increase/models/real_time_decision.rbs +694 -10
- data/sig/increase/models/real_time_decision_action_params.rbs +59 -0
- data/sig/increase/resources/real_time_decisions.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 678092355ef3b05c90d3c86a1843ee59a59796c20d9e2abed67ab9a0ee30fd54
|
|
4
|
+
data.tar.gz: 5719b0cce6faaeb89ff518e87b24894541930413cd68f2609661f12d384be216
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee4072799689ced129627ea7b3bd6179ca12663e0f48a2b88afb0fe057d6ba808606803bffca4bb827125d02fc2d8a8919cbb7116674bda22754cb5b144c3b6e
|
|
7
|
+
data.tar.gz: e3d607445f2792a0dcee6b27c53e53d2539bb53b230561fb077b5f82b99b4be9da9f7fe85d91453fe810b5283214daf5d393bee13acf9e7f0946a044cc54731d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.157.0 (2025-12-08)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.156.0...v1.157.0](https://github.com/Increase/increase-ruby/compare/v1.156.0...v1.157.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([cf2e5f7](https://github.com/Increase/increase-ruby/commit/cf2e5f7ac3084a0a372d004ce292783bebd4bfcf))
|
|
10
|
+
|
|
11
|
+
## 1.156.0 (2025-12-08)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.155.0...v1.156.0](https://github.com/Increase/increase-ruby/compare/v1.155.0...v1.156.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([f2d2dd4](https://github.com/Increase/increase-ruby/commit/f2d2dd4266c3cc347ac0ec58dfa28451dc49449a))
|
|
18
|
+
|
|
3
19
|
## 1.155.0 (2025-12-06)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.154.0...v1.155.0](https://github.com/Increase/increase-ruby/compare/v1.154.0...v1.155.0)
|
data/README.md
CHANGED
|
@@ -1057,6 +1057,9 @@ module Increase
|
|
|
1057
1057
|
# Oscilar. See https://oscilar.com for more information.
|
|
1058
1058
|
OSCILAR = :oscilar
|
|
1059
1059
|
|
|
1060
|
+
# Persona. See https://withpersona.com for more information.
|
|
1061
|
+
PERSONA = :persona
|
|
1062
|
+
|
|
1060
1063
|
# @!method self.values
|
|
1061
1064
|
# @return [Array<Symbol>]
|
|
1062
1065
|
end
|
|
@@ -1542,6 +1542,9 @@ module Increase
|
|
|
1542
1542
|
# Oscilar. See https://oscilar.com for more information.
|
|
1543
1543
|
OSCILAR = :oscilar
|
|
1544
1544
|
|
|
1545
|
+
# Persona. See https://withpersona.com for more information.
|
|
1546
|
+
PERSONA = :persona
|
|
1547
|
+
|
|
1545
1548
|
# @!method self.values
|
|
1546
1549
|
# @return [Array<Symbol>]
|
|
1547
1550
|
end
|
|
@@ -403,6 +403,9 @@ module Increase
|
|
|
403
403
|
# Oscilar. See https://oscilar.com for more information.
|
|
404
404
|
OSCILAR = :oscilar
|
|
405
405
|
|
|
406
|
+
# Persona. See https://withpersona.com for more information.
|
|
407
|
+
PERSONA = :persona
|
|
408
|
+
|
|
406
409
|
# @!method self.values
|
|
407
410
|
# @return [Array<Symbol>]
|
|
408
411
|
end
|
|
@@ -325,6 +325,9 @@ module Increase
|
|
|
325
325
|
# Occurs whenever a Real-Time Decision is created in response to a card authorization.
|
|
326
326
|
REAL_TIME_DECISION_CARD_AUTHORIZATION_REQUESTED = :"real_time_decision.card_authorization_requested"
|
|
327
327
|
|
|
328
|
+
# Occurs whenever a Real-Time Decision is created in response to a card balance inquiry.
|
|
329
|
+
REAL_TIME_DECISION_CARD_BALANCE_INQUIRY_REQUESTED = :"real_time_decision.card_balance_inquiry_requested"
|
|
330
|
+
|
|
328
331
|
# Occurs whenever a Real-Time Decision is created in response to a digital wallet provisioning attempt.
|
|
329
332
|
REAL_TIME_DECISION_DIGITAL_WALLET_TOKEN_REQUESTED = :"real_time_decision.digital_wallet_token_requested"
|
|
330
333
|
|
|
@@ -327,6 +327,9 @@ module Increase
|
|
|
327
327
|
# Occurs whenever a Real-Time Decision is created in response to a card authorization.
|
|
328
328
|
REAL_TIME_DECISION_CARD_AUTHORIZATION_REQUESTED = :"real_time_decision.card_authorization_requested"
|
|
329
329
|
|
|
330
|
+
# Occurs whenever a Real-Time Decision is created in response to a card balance inquiry.
|
|
331
|
+
REAL_TIME_DECISION_CARD_BALANCE_INQUIRY_REQUESTED = :"real_time_decision.card_balance_inquiry_requested"
|
|
332
|
+
|
|
330
333
|
# Occurs whenever a Real-Time Decision is created in response to a digital wallet provisioning attempt.
|
|
331
334
|
REAL_TIME_DECISION_DIGITAL_WALLET_TOKEN_REQUESTED = :"real_time_decision.digital_wallet_token_requested"
|
|
332
335
|
|
|
@@ -348,6 +348,9 @@ module Increase
|
|
|
348
348
|
# Occurs whenever a Real-Time Decision is created in response to a card authorization.
|
|
349
349
|
REAL_TIME_DECISION_CARD_AUTHORIZATION_REQUESTED = :"real_time_decision.card_authorization_requested"
|
|
350
350
|
|
|
351
|
+
# Occurs whenever a Real-Time Decision is created in response to a card balance inquiry.
|
|
352
|
+
REAL_TIME_DECISION_CARD_BALANCE_INQUIRY_REQUESTED = :"real_time_decision.card_balance_inquiry_requested"
|
|
353
|
+
|
|
351
354
|
# Occurs whenever a Real-Time Decision is created in response to a digital wallet provisioning attempt.
|
|
352
355
|
REAL_TIME_DECISION_DIGITAL_WALLET_TOKEN_REQUESTED = :"real_time_decision.digital_wallet_token_requested"
|
|
353
356
|
|
|
@@ -317,6 +317,9 @@ module Increase
|
|
|
317
317
|
# Occurs whenever a Real-Time Decision is created in response to a card authorization.
|
|
318
318
|
REAL_TIME_DECISION_CARD_AUTHORIZATION_REQUESTED = :"real_time_decision.card_authorization_requested"
|
|
319
319
|
|
|
320
|
+
# Occurs whenever a Real-Time Decision is created in response to a card balance inquiry.
|
|
321
|
+
REAL_TIME_DECISION_CARD_BALANCE_INQUIRY_REQUESTED = :"real_time_decision.card_balance_inquiry_requested"
|
|
322
|
+
|
|
320
323
|
# Occurs whenever a Real-Time Decision is created in response to a digital wallet provisioning attempt.
|
|
321
324
|
REAL_TIME_DECISION_DIGITAL_WALLET_TOKEN_REQUESTED = :"real_time_decision.digital_wallet_token_requested"
|
|
322
325
|
|