increase 1.52.0 → 1.53.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: 550d7b8e8d5187b1b4114f6d660f1ed237d0bc61894e590b72ece057cdf51cf6
4
- data.tar.gz: 6e277feb0f1cffd99c8fd9de135a364188f4148acd7f34ddf689d71bb38a03e0
3
+ metadata.gz: e57f72955c10a22b6754deef8612bcab8cfa8e1d3b16b728e46670cb86c3eb73
4
+ data.tar.gz: 6cc5fbb117f5dfa1e8621efcac0da0a6680ff0bd594b86016ffb500efbdd22da
5
5
  SHA512:
6
- metadata.gz: a449e675c43b935523fbc545cd319e67219cc6404417a7be40641faab863c5c7e66f5279b5e645dcf70ba14cd69f729dd2e84d965d4cdb34660fe8446c199b7f
7
- data.tar.gz: f591c3cabd504e5d16ec7f11a35f2899b755e47f58db9382dffc1b608012b9e28f0f2c5a5e6be772bf5f5e1d8ab889c5f1ec2e5aefb0f76151f699e64f005ebe
6
+ metadata.gz: 7913751d0a1c092d47f0a94a0e955f9ffc0d8bd1345e3a1ac2c336e66a837cde8d5662fb13f1f5fd2a9063ce4c9eff16b2eed8c2bd7c44f881dceadee04e9a51
7
+ data.tar.gz: 1622ec122004a8d024e8cbf450e68d7e8c5f6369bf51f64bead6eb48ec1a7620125c7563dcd38f2fdfad840cb95a21351651bd8375f391dffed321cf0033944b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.53.0 (2025-08-26)
4
+
5
+ Full Changelog: [v1.52.0...v1.53.0](https://github.com/Increase/increase-ruby/compare/v1.52.0...v1.53.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([0978f47](https://github.com/Increase/increase-ruby/commit/0978f470ead5ad55589045b5f9317e7aff10cb65))
10
+
3
11
  ## 1.52.0 (2025-08-26)
4
12
 
5
13
  Full Changelog: [v1.51.0...v1.52.0](https://github.com/Increase/increase-ruby/compare/v1.51.0...v1.52.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.52.0"
18
+ gem "increase", "~> 1.53.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -694,12 +694,6 @@ module Increase
694
694
 
695
695
  # @see Increase::Models::ACHTransfer#inbound_funds_hold
696
696
  class InboundFundsHold < Increase::Internal::Type::BaseModel
697
- # @!attribute id
698
- # The Inbound Funds Hold identifier.
699
- #
700
- # @return [String]
701
- required :id, String
702
-
703
697
  # @!attribute amount
704
698
  # The held amount in the minor unit of the account's currency. For dollars, for
705
699
  # example, this is cents.
@@ -759,15 +753,13 @@ module Increase
759
753
  # @return [Symbol, Increase::Models::ACHTransfer::InboundFundsHold::Type]
760
754
  required :type, enum: -> { Increase::ACHTransfer::InboundFundsHold::Type }
761
755
 
762
- # @!method initialize(id:, amount:, automatically_releases_at:, created_at:, currency:, held_transaction_id:, pending_transaction_id:, released_at:, status:, type:)
756
+ # @!method initialize(amount:, automatically_releases_at:, created_at:, currency:, held_transaction_id:, pending_transaction_id:, released_at:, status:, type:)
763
757
  # Some parameter documentations has been truncated, see
764
758
  # {Increase::Models::ACHTransfer::InboundFundsHold} for more details.
765
759
  #
766
760
  # Increase will sometimes hold the funds for ACH debit transfers. If funds are
767
761
  # held, this sub-object will contain details of the hold.
768
762
  #
769
- # @param id [String] The Inbound Funds Hold identifier.
770
- #
771
763
  # @param amount [Integer] The held amount in the minor unit of the account's currency. For dollars, for ex
772
764
  #
773
765
  # @param automatically_releases_at [Time] When the hold will be released automatically. Certain conditions may cause it to
@@ -617,12 +617,6 @@ module Increase
617
617
 
618
618
  # @see Increase::Models::CheckDeposit#inbound_funds_hold
619
619
  class InboundFundsHold < Increase::Internal::Type::BaseModel
620
- # @!attribute id
621
- # The Inbound Funds Hold identifier.
622
- #
623
- # @return [String]
624
- required :id, String
625
-
626
620
  # @!attribute amount
627
621
  # The held amount in the minor unit of the account's currency. For dollars, for
628
622
  # example, this is cents.
@@ -682,15 +676,13 @@ module Increase
682
676
  # @return [Symbol, Increase::Models::CheckDeposit::InboundFundsHold::Type]
683
677
  required :type, enum: -> { Increase::CheckDeposit::InboundFundsHold::Type }
684
678
 
685
- # @!method initialize(id:, amount:, automatically_releases_at:, created_at:, currency:, held_transaction_id:, pending_transaction_id:, released_at:, status:, type:)
679
+ # @!method initialize(amount:, automatically_releases_at:, created_at:, currency:, held_transaction_id:, pending_transaction_id:, released_at:, status:, type:)
686
680
  # Some parameter documentations has been truncated, see
687
681
  # {Increase::Models::CheckDeposit::InboundFundsHold} for more details.
688
682
  #
689
683
  # Increase will sometimes hold the funds for Check Deposits. If funds are held,
690
684
  # this sub-object will contain details of the hold.
691
685
  #
692
- # @param id [String] The Inbound Funds Hold identifier.
693
- #
694
686
  # @param amount [Integer] The held amount in the minor unit of the account's currency. For dollars, for ex
695
687
  #
696
688
  # @param automatically_releases_at [Time] When the hold will be released automatically. Certain conditions may cause it to
@@ -1801,12 +1801,6 @@ module Increase
1801
1801
 
1802
1802
  # @see Increase::Models::PendingTransaction::Source#inbound_funds_hold
1803
1803
  class InboundFundsHold < Increase::Internal::Type::BaseModel
1804
- # @!attribute id
1805
- # The Inbound Funds Hold identifier.
1806
- #
1807
- # @return [String]
1808
- required :id, String
1809
-
1810
1804
  # @!attribute amount
1811
1805
  # The held amount in the minor unit of the account's currency. For dollars, for
1812
1806
  # example, this is cents.
@@ -1866,7 +1860,7 @@ module Increase
1866
1860
  # @return [Symbol, Increase::Models::PendingTransaction::Source::InboundFundsHold::Type]
1867
1861
  required :type, enum: -> { Increase::PendingTransaction::Source::InboundFundsHold::Type }
1868
1862
 
1869
- # @!method initialize(id:, amount:, automatically_releases_at:, created_at:, currency:, held_transaction_id:, pending_transaction_id:, released_at:, status:, type:)
1863
+ # @!method initialize(amount:, automatically_releases_at:, created_at:, currency:, held_transaction_id:, pending_transaction_id:, released_at:, status:, type:)
1870
1864
  # Some parameter documentations has been truncated, see
1871
1865
  # {Increase::Models::PendingTransaction::Source::InboundFundsHold} for more
1872
1866
  # details.
@@ -1876,8 +1870,6 @@ module Increase
1876
1870
  # certain transaction types to account for return windows where funds might still
1877
1871
  # be clawed back by the sending institution.
1878
1872
  #
1879
- # @param id [String] The Inbound Funds Hold identifier.
1880
- #
1881
1873
  # @param amount [Integer] The held amount in the minor unit of the account's currency. For dollars, for ex
1882
1874
  #
1883
1875
  # @param automatically_releases_at [Time] When the hold will be released automatically. Certain conditions may cause it to
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.52.0"
4
+ VERSION = "1.53.0"
5
5
  end
@@ -1179,10 +1179,6 @@ module Increase
1179
1179
  )
1180
1180
  end
1181
1181
 
1182
- # The Inbound Funds Hold identifier.
1183
- sig { returns(String) }
1184
- attr_accessor :id
1185
-
1186
1182
  # The held amount in the minor unit of the account's currency. For dollars, for
1187
1183
  # example, this is cents.
1188
1184
  sig { returns(Integer) }
@@ -1236,7 +1232,6 @@ module Increase
1236
1232
  # held, this sub-object will contain details of the hold.
1237
1233
  sig do
1238
1234
  params(
1239
- id: String,
1240
1235
  amount: Integer,
1241
1236
  automatically_releases_at: Time,
1242
1237
  created_at: Time,
@@ -1250,8 +1245,6 @@ module Increase
1250
1245
  ).returns(T.attached_class)
1251
1246
  end
1252
1247
  def self.new(
1253
- # The Inbound Funds Hold identifier.
1254
- id:,
1255
1248
  # The held amount in the minor unit of the account's currency. For dollars, for
1256
1249
  # example, this is cents.
1257
1250
  amount:,
@@ -1281,7 +1274,6 @@ module Increase
1281
1274
  sig do
1282
1275
  override.returns(
1283
1276
  {
1284
- id: String,
1285
1277
  amount: Integer,
1286
1278
  automatically_releases_at: Time,
1287
1279
  created_at: Time,
@@ -1088,10 +1088,6 @@ module Increase
1088
1088
  )
1089
1089
  end
1090
1090
 
1091
- # The Inbound Funds Hold identifier.
1092
- sig { returns(String) }
1093
- attr_accessor :id
1094
-
1095
1091
  # The held amount in the minor unit of the account's currency. For dollars, for
1096
1092
  # example, this is cents.
1097
1093
  sig { returns(Integer) }
@@ -1147,7 +1143,6 @@ module Increase
1147
1143
  # this sub-object will contain details of the hold.
1148
1144
  sig do
1149
1145
  params(
1150
- id: String,
1151
1146
  amount: Integer,
1152
1147
  automatically_releases_at: Time,
1153
1148
  created_at: Time,
@@ -1161,8 +1156,6 @@ module Increase
1161
1156
  ).returns(T.attached_class)
1162
1157
  end
1163
1158
  def self.new(
1164
- # The Inbound Funds Hold identifier.
1165
- id:,
1166
1159
  # The held amount in the minor unit of the account's currency. For dollars, for
1167
1160
  # example, this is cents.
1168
1161
  amount:,
@@ -1192,7 +1185,6 @@ module Increase
1192
1185
  sig do
1193
1186
  override.returns(
1194
1187
  {
1195
- id: String,
1196
1188
  amount: Integer,
1197
1189
  automatically_releases_at: Time,
1198
1190
  created_at: Time,
@@ -3409,10 +3409,6 @@ module Increase
3409
3409
  )
3410
3410
  end
3411
3411
 
3412
- # The Inbound Funds Hold identifier.
3413
- sig { returns(String) }
3414
- attr_accessor :id
3415
-
3416
3412
  # The held amount in the minor unit of the account's currency. For dollars, for
3417
3413
  # example, this is cents.
3418
3414
  sig { returns(Integer) }
@@ -3472,7 +3468,6 @@ module Increase
3472
3468
  # be clawed back by the sending institution.
3473
3469
  sig do
3474
3470
  params(
3475
- id: String,
3476
3471
  amount: Integer,
3477
3472
  automatically_releases_at: Time,
3478
3473
  created_at: Time,
@@ -3488,8 +3483,6 @@ module Increase
3488
3483
  ).returns(T.attached_class)
3489
3484
  end
3490
3485
  def self.new(
3491
- # The Inbound Funds Hold identifier.
3492
- id:,
3493
3486
  # The held amount in the minor unit of the account's currency. For dollars, for
3494
3487
  # example, this is cents.
3495
3488
  amount:,
@@ -3519,7 +3512,6 @@ module Increase
3519
3512
  sig do
3520
3513
  override.returns(
3521
3514
  {
3522
- id: String,
3523
3515
  amount: Integer,
3524
3516
  automatically_releases_at: Time,
3525
3517
  created_at: Time,
@@ -467,7 +467,6 @@ module Increase
467
467
 
468
468
  type inbound_funds_hold =
469
469
  {
470
- id: String,
471
470
  amount: Integer,
472
471
  automatically_releases_at: Time,
473
472
  created_at: Time,
@@ -480,8 +479,6 @@ module Increase
480
479
  }
481
480
 
482
481
  class InboundFundsHold < Increase::Internal::Type::BaseModel
483
- attr_accessor id: String
484
-
485
482
  attr_accessor amount: Integer
486
483
 
487
484
  attr_accessor automatically_releases_at: Time
@@ -501,7 +498,6 @@ module Increase
501
498
  attr_accessor type: Increase::Models::ACHTransfer::InboundFundsHold::type_
502
499
 
503
500
  def initialize: (
504
- id: String,
505
501
  amount: Integer,
506
502
  automatically_releases_at: Time,
507
503
  created_at: Time,
@@ -514,7 +510,6 @@ module Increase
514
510
  ) -> void
515
511
 
516
512
  def to_hash: -> {
517
- id: String,
518
513
  amount: Integer,
519
514
  automatically_releases_at: Time,
520
515
  created_at: Time,
@@ -499,7 +499,6 @@ module Increase
499
499
 
500
500
  type inbound_funds_hold =
501
501
  {
502
- id: String,
503
502
  amount: Integer,
504
503
  automatically_releases_at: Time,
505
504
  created_at: Time,
@@ -512,8 +511,6 @@ module Increase
512
511
  }
513
512
 
514
513
  class InboundFundsHold < Increase::Internal::Type::BaseModel
515
- attr_accessor id: String
516
-
517
514
  attr_accessor amount: Integer
518
515
 
519
516
  attr_accessor automatically_releases_at: Time
@@ -533,7 +530,6 @@ module Increase
533
530
  attr_accessor type: Increase::Models::CheckDeposit::InboundFundsHold::type_
534
531
 
535
532
  def initialize: (
536
- id: String,
537
533
  amount: Integer,
538
534
  automatically_releases_at: Time,
539
535
  created_at: Time,
@@ -546,7 +542,6 @@ module Increase
546
542
  ) -> void
547
543
 
548
544
  def to_hash: -> {
549
- id: String,
550
545
  amount: Integer,
551
546
  automatically_releases_at: Time,
552
547
  created_at: Time,
@@ -1234,7 +1234,6 @@ module Increase
1234
1234
 
1235
1235
  type inbound_funds_hold =
1236
1236
  {
1237
- id: String,
1238
1237
  amount: Integer,
1239
1238
  automatically_releases_at: Time,
1240
1239
  created_at: Time,
@@ -1247,8 +1246,6 @@ module Increase
1247
1246
  }
1248
1247
 
1249
1248
  class InboundFundsHold < Increase::Internal::Type::BaseModel
1250
- attr_accessor id: String
1251
-
1252
1249
  attr_accessor amount: Integer
1253
1250
 
1254
1251
  attr_accessor automatically_releases_at: Time
@@ -1268,7 +1265,6 @@ module Increase
1268
1265
  attr_accessor type: Increase::Models::PendingTransaction::Source::InboundFundsHold::type_
1269
1266
 
1270
1267
  def initialize: (
1271
- id: String,
1272
1268
  amount: Integer,
1273
1269
  automatically_releases_at: Time,
1274
1270
  created_at: Time,
@@ -1281,7 +1277,6 @@ module Increase
1281
1277
  ) -> void
1282
1278
 
1283
1279
  def to_hash: -> {
1284
- id: String,
1285
1280
  amount: Integer,
1286
1281
  automatically_releases_at: Time,
1287
1282
  created_at: Time,
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.52.0
4
+ version: 1.53.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-08-26 00:00:00.000000000 Z
11
+ date: 2025-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool