increase 1.188.0 → 1.189.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: c98557936bb267bc225fcb8324d48c6973f0f5a1971850833cbe003cf92f2dd2
4
- data.tar.gz: 4ebd4bef09b3597873cb144c1bddf7f0ee7e6a731756240d73e537f3a36010d5
3
+ metadata.gz: e6e53c55b6c2839a5691ea1ae10b89264568dab59707a05085e6cdc47af8a5a5
4
+ data.tar.gz: d38680e592e501c85b7d966d910fe75ea53249b7590405071d6a33c15863d4b7
5
5
  SHA512:
6
- metadata.gz: 4bbf0a1760bba1aadbd3da7ccc5b871b6c92c6ff216ce42cc5d91799fc7d0f41a740bef64489f662ba95c5ef50c48a727af4e58d7bb1d57e77a0bf1cc99ff611
7
- data.tar.gz: 063d3224a71d7704b734fd9d463f0fd7d9c45735a4992809d55356a7724d4155c96ea74addb4d35715ea94bca21e196f354d9cc6127c86acf3c0f754d44b3e0a
6
+ metadata.gz: e6a2664aa42b10b6c5bc74f883e56a711287a2db07cd43645f10018d6003d18e6da12b0d29ff7cdd1a5f62b1bab7159eab7236e442e843a093576dd586969172
7
+ data.tar.gz: 02c00c56304f4422c47f8033e73916ea85a9139c5b8bdf3e8dc857ff99f9dda927c4bb7ec16d0a82fcda8437dd3632f48be613217f6c1115e37d86a85c8f494d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.189.0 (2026-01-30)
4
+
5
+ Full Changelog: [v1.188.0...v1.189.0](https://github.com/Increase/increase-ruby/compare/v1.188.0...v1.189.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([e8708e4](https://github.com/Increase/increase-ruby/commit/e8708e4623934db6877f7fce9e49a908181dcaa1))
10
+
3
11
  ## 1.188.0 (2026-01-30)
4
12
 
5
13
  Full Changelog: [v1.187.0...v1.188.0](https://github.com/Increase/increase-ruby/compare/v1.187.0...v1.188.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.188.0"
18
+ gem "increase", "~> 1.189.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -13,8 +13,8 @@ module Increase
13
13
  # @!attribute bank_name
14
14
  # The name of the excluded institution.
15
15
  #
16
- # @return [String]
17
- required :bank_name, String
16
+ # @return [String, nil]
17
+ required :bank_name, String, nil?: true
18
18
 
19
19
  # @!attribute created_at
20
20
  # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
@@ -80,7 +80,7 @@ module Increase
80
80
  #
81
81
  # @param id [String] The identifier of this exclusion request.
82
82
  #
83
- # @param bank_name [String] The name of the excluded institution.
83
+ # @param bank_name [String, nil] The name of the excluded institution.
84
84
  #
85
85
  # @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
86
86
  #
@@ -7,23 +7,29 @@ module Increase
7
7
  extend Increase::Internal::Type::RequestParameters::Converter
8
8
  include Increase::Internal::Type::RequestParameters
9
9
 
10
- # @!attribute bank_name
11
- # The name of the financial institution to be excluded.
12
- #
13
- # @return [String]
14
- required :bank_name, String
15
-
16
10
  # @!attribute entity_id
17
11
  # The identifier of the Entity whose deposits will be excluded.
18
12
  #
19
13
  # @return [String]
20
14
  required :entity_id, String
21
15
 
22
- # @!method initialize(bank_name:, entity_id:, request_options: {})
23
- # @param bank_name [String] The name of the financial institution to be excluded.
16
+ # @!attribute fdic_certificate_number
17
+ # The FDIC certificate number of the financial institution to be excluded. An FDIC
18
+ # certificate number uniquely identifies a financial institution, and is different
19
+ # than a routing number. To find one, we recommend searching by Bank Name using
20
+ # the [FDIC's bankfind tool](https://banks.data.fdic.gov/bankfind-suite/bankfind).
21
+ #
22
+ # @return [String]
23
+ required :fdic_certificate_number, String
24
+
25
+ # @!method initialize(entity_id:, fdic_certificate_number:, request_options: {})
26
+ # Some parameter documentations has been truncated, see
27
+ # {Increase::Models::IntrafiExclusionCreateParams} for more details.
24
28
  #
25
29
  # @param entity_id [String] The identifier of the Entity whose deposits will be excluded.
26
30
  #
31
+ # @param fdic_certificate_number [String] The FDIC certificate number of the financial institution to be excluded. An FDIC
32
+ #
27
33
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
28
34
  end
29
35
  end
@@ -3,14 +3,17 @@
3
3
  module Increase
4
4
  module Resources
5
5
  class IntrafiExclusions
6
- # Create an IntraFi Exclusion
6
+ # Some parameter documentations has been truncated, see
7
+ # {Increase::Models::IntrafiExclusionCreateParams} for more details.
7
8
  #
8
- # @overload create(bank_name:, entity_id:, request_options: {})
9
+ # Create an IntraFi Exclusion
9
10
  #
10
- # @param bank_name [String] The name of the financial institution to be excluded.
11
+ # @overload create(entity_id:, fdic_certificate_number:, request_options: {})
11
12
  #
12
13
  # @param entity_id [String] The identifier of the Entity whose deposits will be excluded.
13
14
  #
15
+ # @param fdic_certificate_number [String] The FDIC certificate number of the financial institution to be excluded. An FDIC
16
+ #
14
17
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
15
18
  #
16
19
  # @return [Increase::Models::IntrafiExclusion]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.188.0"
4
+ VERSION = "1.189.0"
5
5
  end
@@ -13,7 +13,7 @@ module Increase
13
13
  attr_accessor :id
14
14
 
15
15
  # The name of the excluded institution.
16
- sig { returns(String) }
16
+ sig { returns(T.nilable(String)) }
17
17
  attr_accessor :bank_name
18
18
 
19
19
  # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
@@ -60,7 +60,7 @@ module Increase
60
60
  sig do
61
61
  params(
62
62
  id: String,
63
- bank_name: String,
63
+ bank_name: T.nilable(String),
64
64
  created_at: Time,
65
65
  entity_id: String,
66
66
  excluded_at: T.nilable(Time),
@@ -104,7 +104,7 @@ module Increase
104
104
  override.returns(
105
105
  {
106
106
  id: String,
107
- bank_name: String,
107
+ bank_name: T.nilable(String),
108
108
  created_at: Time,
109
109
  entity_id: String,
110
110
  excluded_at: T.nilable(Time),
@@ -14,26 +14,32 @@ module Increase
14
14
  )
15
15
  end
16
16
 
17
- # The name of the financial institution to be excluded.
18
- sig { returns(String) }
19
- attr_accessor :bank_name
20
-
21
17
  # The identifier of the Entity whose deposits will be excluded.
22
18
  sig { returns(String) }
23
19
  attr_accessor :entity_id
24
20
 
21
+ # The FDIC certificate number of the financial institution to be excluded. An FDIC
22
+ # certificate number uniquely identifies a financial institution, and is different
23
+ # than a routing number. To find one, we recommend searching by Bank Name using
24
+ # the [FDIC's bankfind tool](https://banks.data.fdic.gov/bankfind-suite/bankfind).
25
+ sig { returns(String) }
26
+ attr_accessor :fdic_certificate_number
27
+
25
28
  sig do
26
29
  params(
27
- bank_name: String,
28
30
  entity_id: String,
31
+ fdic_certificate_number: String,
29
32
  request_options: Increase::RequestOptions::OrHash
30
33
  ).returns(T.attached_class)
31
34
  end
32
35
  def self.new(
33
- # The name of the financial institution to be excluded.
34
- bank_name:,
35
36
  # The identifier of the Entity whose deposits will be excluded.
36
37
  entity_id:,
38
+ # The FDIC certificate number of the financial institution to be excluded. An FDIC
39
+ # certificate number uniquely identifies a financial institution, and is different
40
+ # than a routing number. To find one, we recommend searching by Bank Name using
41
+ # the [FDIC's bankfind tool](https://banks.data.fdic.gov/bankfind-suite/bankfind).
42
+ fdic_certificate_number:,
37
43
  request_options: {}
38
44
  )
39
45
  end
@@ -41,8 +47,8 @@ module Increase
41
47
  sig do
42
48
  override.returns(
43
49
  {
44
- bank_name: String,
45
50
  entity_id: String,
51
+ fdic_certificate_number: String,
46
52
  request_options: Increase::RequestOptions
47
53
  }
48
54
  )
@@ -6,16 +6,19 @@ module Increase
6
6
  # Create an IntraFi Exclusion
7
7
  sig do
8
8
  params(
9
- bank_name: String,
10
9
  entity_id: String,
10
+ fdic_certificate_number: String,
11
11
  request_options: Increase::RequestOptions::OrHash
12
12
  ).returns(Increase::IntrafiExclusion)
13
13
  end
14
14
  def create(
15
- # The name of the financial institution to be excluded.
16
- bank_name:,
17
15
  # The identifier of the Entity whose deposits will be excluded.
18
16
  entity_id:,
17
+ # The FDIC certificate number of the financial institution to be excluded. An FDIC
18
+ # certificate number uniquely identifies a financial institution, and is different
19
+ # than a routing number. To find one, we recommend searching by Bank Name using
20
+ # the [FDIC's bankfind tool](https://banks.data.fdic.gov/bankfind-suite/bankfind).
21
+ fdic_certificate_number:,
19
22
  request_options: {}
20
23
  )
21
24
  end
@@ -3,7 +3,7 @@ module Increase
3
3
  type intrafi_exclusion =
4
4
  {
5
5
  id: String,
6
- bank_name: String,
6
+ bank_name: String?,
7
7
  created_at: Time,
8
8
  entity_id: String,
9
9
  excluded_at: Time?,
@@ -17,7 +17,7 @@ module Increase
17
17
  class IntrafiExclusion < Increase::Internal::Type::BaseModel
18
18
  attr_accessor id: String
19
19
 
20
- attr_accessor bank_name: String
20
+ attr_accessor bank_name: String?
21
21
 
22
22
  attr_accessor created_at: Time
23
23
 
@@ -37,7 +37,7 @@ module Increase
37
37
 
38
38
  def initialize: (
39
39
  id: String,
40
- bank_name: String,
40
+ bank_name: String?,
41
41
  created_at: Time,
42
42
  entity_id: String,
43
43
  excluded_at: Time?,
@@ -50,7 +50,7 @@ module Increase
50
50
 
51
51
  def to_hash: -> {
52
52
  id: String,
53
- bank_name: String,
53
+ bank_name: String?,
54
54
  created_at: Time,
55
55
  entity_id: String,
56
56
  excluded_at: Time?,
@@ -1,26 +1,26 @@
1
1
  module Increase
2
2
  module Models
3
3
  type intrafi_exclusion_create_params =
4
- { bank_name: String, entity_id: String }
4
+ { entity_id: String, fdic_certificate_number: String }
5
5
  & Increase::Internal::Type::request_parameters
6
6
 
7
7
  class IntrafiExclusionCreateParams < Increase::Internal::Type::BaseModel
8
8
  extend Increase::Internal::Type::RequestParameters::Converter
9
9
  include Increase::Internal::Type::RequestParameters
10
10
 
11
- attr_accessor bank_name: String
12
-
13
11
  attr_accessor entity_id: String
14
12
 
13
+ attr_accessor fdic_certificate_number: String
14
+
15
15
  def initialize: (
16
- bank_name: String,
17
16
  entity_id: String,
17
+ fdic_certificate_number: String,
18
18
  ?request_options: Increase::request_opts
19
19
  ) -> void
20
20
 
21
21
  def to_hash: -> {
22
- bank_name: String,
23
22
  entity_id: String,
23
+ fdic_certificate_number: String,
24
24
  request_options: Increase::RequestOptions
25
25
  }
26
26
  end
@@ -2,8 +2,8 @@ module Increase
2
2
  module Resources
3
3
  class IntrafiExclusions
4
4
  def create: (
5
- bank_name: String,
6
5
  entity_id: String,
6
+ fdic_certificate_number: String,
7
7
  ?request_options: Increase::request_opts
8
8
  ) -> Increase::IntrafiExclusion
9
9
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.188.0
4
+ version: 1.189.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase