increase 1.156.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd831e4e09fa43d44eddcabeca16cac5bc4d1a2d0af4b951fbc07432cc5a5a86
4
- data.tar.gz: 4ee99fe4c73f83debbf5708111d444a27d9150b91f2ac667b62d3e7ec8ea6ae2
3
+ metadata.gz: 678092355ef3b05c90d3c86a1843ee59a59796c20d9e2abed67ab9a0ee30fd54
4
+ data.tar.gz: 5719b0cce6faaeb89ff518e87b24894541930413cd68f2609661f12d384be216
5
5
  SHA512:
6
- metadata.gz: 8a64e0663940bd4ded0835fc552559cb531f7993a0b1f0dc7e53d0d8f61fe49d6d3d2579c4319d5c489ff39b9105acdd32a24970ccdded139085de7b6ad7bf6d
7
- data.tar.gz: f03e35022566113704cdb0e2505a3ac061790bc8c08d2eabfab5495a13c725930f510cd49ef696df3a70ead72c94ab311ce18060148e2ca22cf00caf7e61b950
6
+ metadata.gz: ee4072799689ced129627ea7b3bd6179ca12663e0f48a2b88afb0fe057d6ba808606803bffca4bb827125d02fc2d8a8919cbb7116674bda22754cb5b144c3b6e
7
+ data.tar.gz: e3d607445f2792a0dcee6b27c53e53d2539bb53b230561fb077b5f82b99b4be9da9f7fe85d91453fe810b5283214daf5d393bee13acf9e7f0946a044cc54731d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
3
11
  ## 1.156.0 (2025-12-08)
4
12
 
5
13
  Full Changelog: [v1.155.0...v1.156.0](https://github.com/Increase/increase-ruby/compare/v1.155.0...v1.156.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.156.0"
18
+ gem "increase", "~> 1.157.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-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