increase 1.188.0 → 1.190.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: 7bd834fc48e899fee75f59b54bdc4082f4f1f9be0b89607eed8efa1eb58d957c
4
+ data.tar.gz: 79a61d911c1eab08e86b2264f2f1cb5369b1ffb429acb7f32f92b96cdc167f6d
5
5
  SHA512:
6
- metadata.gz: 4bbf0a1760bba1aadbd3da7ccc5b871b6c92c6ff216ce42cc5d91799fc7d0f41a740bef64489f662ba95c5ef50c48a727af4e58d7bb1d57e77a0bf1cc99ff611
7
- data.tar.gz: 063d3224a71d7704b734fd9d463f0fd7d9c45735a4992809d55356a7724d4155c96ea74addb4d35715ea94bca21e196f354d9cc6127c86acf3c0f754d44b3e0a
6
+ metadata.gz: 9140791cd7ec2d7a9b262cbd55caf13294f2529a7d5ae965e06c2d4445dde2eb0fd44f79fb463c40c587b13e0c7add28356f955131f5f00cb455e7d6c3ebe6c9
7
+ data.tar.gz: 82ec0f394f2e62bb993300c9769388f1d696362d262f1713f8312e3015a188ee89296da959cc56eb5cf61fb14cacc92658e7bab9e8d86d1ee53cd6e10f386caa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.190.0 (2026-01-30)
4
+
5
+ Full Changelog: [v1.189.0...v1.190.0](https://github.com/Increase/increase-ruby/compare/v1.189.0...v1.190.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([f7cc074](https://github.com/Increase/increase-ruby/commit/f7cc0747c6b88057f4d8cfa995b15069062d222c))
10
+
11
+ ## 1.189.0 (2026-01-30)
12
+
13
+ Full Changelog: [v1.188.0...v1.189.0](https://github.com/Increase/increase-ruby/compare/v1.188.0...v1.189.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([e8708e4](https://github.com/Increase/increase-ruby/commit/e8708e4623934db6877f7fce9e49a908181dcaa1))
18
+
3
19
  ## 1.188.0 (2026-01-30)
4
20
 
5
21
  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.190.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -55,8 +55,8 @@ module Increase
55
55
  # @!attribute funding
56
56
  # Whether the Account is funded by a loan or by deposits.
57
57
  #
58
- # @return [Symbol, Increase::Models::Account::Funding, nil]
59
- required :funding, enum: -> { Increase::Account::Funding }, nil?: true
58
+ # @return [Symbol, Increase::Models::Account::Funding]
59
+ required :funding, enum: -> { Increase::Account::Funding }
60
60
 
61
61
  # @!attribute idempotency_key
62
62
  # The idempotency key you chose for this object. This value is unique across
@@ -148,7 +148,7 @@ module Increase
148
148
  #
149
149
  # @param entity_id [String] The identifier for the Entity the Account belongs to.
150
150
  #
151
- # @param funding [Symbol, Increase::Models::Account::Funding, nil] Whether the Account is funded by a loan or by deposits.
151
+ # @param funding [Symbol, Increase::Models::Account::Funding] Whether the Account is funded by a loan or by deposits.
152
152
  #
153
153
  # @param idempotency_key [String, nil] The idempotency key you chose for this object. This value is unique across Incre
154
154
  #
@@ -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.190.0"
5
5
  end
@@ -41,7 +41,7 @@ module Increase
41
41
  attr_accessor :entity_id
42
42
 
43
43
  # Whether the Account is funded by a loan or by deposits.
44
- sig { returns(T.nilable(Increase::Account::Funding::TaggedSymbol)) }
44
+ sig { returns(Increase::Account::Funding::TaggedSymbol) }
45
45
  attr_accessor :funding
46
46
 
47
47
  # The idempotency key you chose for this object. This value is unique across
@@ -107,7 +107,7 @@ module Increase
107
107
  created_at: Time,
108
108
  currency: Increase::Account::Currency::OrSymbol,
109
109
  entity_id: String,
110
- funding: T.nilable(Increase::Account::Funding::OrSymbol),
110
+ funding: Increase::Account::Funding::OrSymbol,
111
111
  idempotency_key: T.nilable(String),
112
112
  informational_entity_id: T.nilable(String),
113
113
  interest_accrued: String,
@@ -185,7 +185,7 @@ module Increase
185
185
  created_at: Time,
186
186
  currency: Increase::Account::Currency::TaggedSymbol,
187
187
  entity_id: String,
188
- funding: T.nilable(Increase::Account::Funding::TaggedSymbol),
188
+ funding: Increase::Account::Funding::TaggedSymbol,
189
189
  idempotency_key: T.nilable(String),
190
190
  informational_entity_id: T.nilable(String),
191
191
  interest_accrued: String,
@@ -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
@@ -9,7 +9,7 @@ module Increase
9
9
  created_at: Time,
10
10
  currency: Increase::Models::Account::currency,
11
11
  entity_id: String,
12
- funding: Increase::Models::Account::funding?,
12
+ funding: Increase::Models::Account::funding,
13
13
  idempotency_key: String?,
14
14
  informational_entity_id: String?,
15
15
  interest_accrued: String,
@@ -37,7 +37,7 @@ module Increase
37
37
 
38
38
  attr_accessor entity_id: String
39
39
 
40
- attr_accessor funding: Increase::Models::Account::funding?
40
+ attr_accessor funding: Increase::Models::Account::funding
41
41
 
42
42
  attr_accessor idempotency_key: String?
43
43
 
@@ -67,7 +67,7 @@ module Increase
67
67
  created_at: Time,
68
68
  currency: Increase::Models::Account::currency,
69
69
  entity_id: String,
70
- funding: Increase::Models::Account::funding?,
70
+ funding: Increase::Models::Account::funding,
71
71
  idempotency_key: String?,
72
72
  informational_entity_id: String?,
73
73
  interest_accrued: String,
@@ -88,7 +88,7 @@ module Increase
88
88
  created_at: Time,
89
89
  currency: Increase::Models::Account::currency,
90
90
  entity_id: String,
91
- funding: Increase::Models::Account::funding?,
91
+ funding: Increase::Models::Account::funding,
92
92
  idempotency_key: String?,
93
93
  informational_entity_id: String?,
94
94
  interest_accrued: String,
@@ -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.190.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase