increase 1.244.0 → 1.245.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: d03e6f27a7704d5ef853cbb6efc09a1eacd416f48530c363af0be721fe5175f2
4
- data.tar.gz: ed5a7daca75b86482b1a75fe4975b0e34fd86a853436b9f1be9ac78216764af6
3
+ metadata.gz: 1fb49e2148d54c6e411da14c39835004275a99efb66cf51361ed597224cb0166
4
+ data.tar.gz: 332f30116682e7c30878efd596781ddc837eac715a2a74d2c30bd66fd5a9a02d
5
5
  SHA512:
6
- metadata.gz: ac54ad68e80db15df210e907e1b0ce655b7ceb4b213952e95c9f671b63b47327ecaea35b16f7837a9630eaf219fdf62d542e0fd1890173ade97f7647db0130f0
7
- data.tar.gz: d3caa197960924d90d90ac00464486fbc6d5715d1831185759c5beee8141a1312d90e7bccfe4106cfea9847f739e9d544fd527822ae805342e4bf6556b66f911
6
+ metadata.gz: 7c74e5b1507d5037d79149e6d9187835f6e9aafabba17190922107dc19a045a9e68731e138a9cddc23ce64cbf5cc33e5bdd494ec54df8ada59e878447b8e88c8
7
+ data.tar.gz: 92e67743e4cfff01765486dc6ba9c08cf0427503e689783f6591181ab1a55109cdd2961cf96b9b70c483c2fa6491f335d53e3468a549dd72365618e8d17c017c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.245.0 (2026-03-12)
4
+
5
+ Full Changelog: [v1.244.0...v1.245.0](https://github.com/Increase/increase-ruby/compare/v1.244.0...v1.245.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([92af05a](https://github.com/Increase/increase-ruby/commit/92af05a3ccbe326343ba547df2276f25455124e3))
10
+
3
11
  ## 1.244.0 (2026-03-11)
4
12
 
5
13
  Full Changelog: [v1.243.0...v1.244.0](https://github.com/Increase/increase-ruby/compare/v1.243.0...v1.244.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.244.0"
18
+ gem "increase", "~> 1.245.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -35,7 +35,13 @@ module Increase
35
35
  # @return [Increase::Models::BeneficialOwnerUpdateParams::Identification, nil]
36
36
  optional :identification, -> { Increase::BeneficialOwnerUpdateParams::Identification }
37
37
 
38
- # @!method initialize(entity_beneficial_owner_id:, address: nil, confirmed_no_us_tax_id: nil, identification: nil, request_options: {})
38
+ # @!attribute name
39
+ # The individual's legal name.
40
+ #
41
+ # @return [String, nil]
42
+ optional :name, String
43
+
44
+ # @!method initialize(entity_beneficial_owner_id:, address: nil, confirmed_no_us_tax_id: nil, identification: nil, name: nil, request_options: {})
39
45
  # Some parameter documentations has been truncated, see
40
46
  # {Increase::Models::BeneficialOwnerUpdateParams} for more details.
41
47
  #
@@ -47,6 +53,8 @@ module Increase
47
53
  #
48
54
  # @param identification [Increase::Models::BeneficialOwnerUpdateParams::Identification] A means of verifying the person's identity.
49
55
  #
56
+ # @param name [String] The individual's legal name.
57
+ #
50
58
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
51
59
 
52
60
  class Address < Increase::Internal::Type::BaseModel
@@ -28,7 +28,7 @@ module Increase
28
28
  #
29
29
  # Update a Beneficial Owner
30
30
  #
31
- # @overload update(entity_beneficial_owner_id, address: nil, confirmed_no_us_tax_id: nil, identification: nil, request_options: {})
31
+ # @overload update(entity_beneficial_owner_id, address: nil, confirmed_no_us_tax_id: nil, identification: nil, name: nil, request_options: {})
32
32
  #
33
33
  # @param entity_beneficial_owner_id [String] The identifier of the Beneficial Owner to update.
34
34
  #
@@ -38,6 +38,8 @@ module Increase
38
38
  #
39
39
  # @param identification [Increase::Models::BeneficialOwnerUpdateParams::Identification] A means of verifying the person's identity.
40
40
  #
41
+ # @param name [String] The individual's legal name.
42
+ #
41
43
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
42
44
  #
43
45
  # @return [Increase::Models::EntityBeneficialOwner]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.244.0"
4
+ VERSION = "1.245.0"
5
5
  end
@@ -56,6 +56,13 @@ module Increase
56
56
  end
57
57
  attr_writer :identification
58
58
 
59
+ # The individual's legal name.
60
+ sig { returns(T.nilable(String)) }
61
+ attr_reader :name
62
+
63
+ sig { params(name: String).void }
64
+ attr_writer :name
65
+
59
66
  sig do
60
67
  params(
61
68
  entity_beneficial_owner_id: String,
@@ -63,6 +70,7 @@ module Increase
63
70
  confirmed_no_us_tax_id: T::Boolean,
64
71
  identification:
65
72
  Increase::BeneficialOwnerUpdateParams::Identification::OrHash,
73
+ name: String,
66
74
  request_options: Increase::RequestOptions::OrHash
67
75
  ).returns(T.attached_class)
68
76
  end
@@ -79,6 +87,8 @@ module Increase
79
87
  confirmed_no_us_tax_id: nil,
80
88
  # A means of verifying the person's identity.
81
89
  identification: nil,
90
+ # The individual's legal name.
91
+ name: nil,
82
92
  request_options: {}
83
93
  )
84
94
  end
@@ -91,6 +101,7 @@ module Increase
91
101
  confirmed_no_us_tax_id: T::Boolean,
92
102
  identification:
93
103
  Increase::BeneficialOwnerUpdateParams::Identification,
104
+ name: String,
94
105
  request_options: Increase::RequestOptions
95
106
  }
96
107
  )
@@ -25,6 +25,7 @@ module Increase
25
25
  confirmed_no_us_tax_id: T::Boolean,
26
26
  identification:
27
27
  Increase::BeneficialOwnerUpdateParams::Identification::OrHash,
28
+ name: String,
28
29
  request_options: Increase::RequestOptions::OrHash
29
30
  ).returns(Increase::EntityBeneficialOwner)
30
31
  end
@@ -41,6 +42,8 @@ module Increase
41
42
  confirmed_no_us_tax_id: nil,
42
43
  # A means of verifying the person's identity.
43
44
  identification: nil,
45
+ # The individual's legal name.
46
+ name: nil,
44
47
  request_options: {}
45
48
  )
46
49
  end
@@ -5,7 +5,8 @@ module Increase
5
5
  entity_beneficial_owner_id: String,
6
6
  address: Increase::BeneficialOwnerUpdateParams::Address,
7
7
  confirmed_no_us_tax_id: bool,
8
- identification: Increase::BeneficialOwnerUpdateParams::Identification
8
+ identification: Increase::BeneficialOwnerUpdateParams::Identification,
9
+ name: String
9
10
  }
10
11
  & Increase::Internal::Type::request_parameters
11
12
 
@@ -31,11 +32,16 @@ module Increase
31
32
  Increase::BeneficialOwnerUpdateParams::Identification
32
33
  ) -> Increase::BeneficialOwnerUpdateParams::Identification
33
34
 
35
+ attr_reader name: String?
36
+
37
+ def name=: (String) -> String
38
+
34
39
  def initialize: (
35
40
  entity_beneficial_owner_id: String,
36
41
  ?address: Increase::BeneficialOwnerUpdateParams::Address,
37
42
  ?confirmed_no_us_tax_id: bool,
38
43
  ?identification: Increase::BeneficialOwnerUpdateParams::Identification,
44
+ ?name: String,
39
45
  ?request_options: Increase::request_opts
40
46
  ) -> void
41
47
 
@@ -44,6 +50,7 @@ module Increase
44
50
  address: Increase::BeneficialOwnerUpdateParams::Address,
45
51
  confirmed_no_us_tax_id: bool,
46
52
  identification: Increase::BeneficialOwnerUpdateParams::Identification,
53
+ name: String,
47
54
  request_options: Increase::RequestOptions
48
55
  }
49
56
 
@@ -11,6 +11,7 @@ module Increase
11
11
  ?address: Increase::BeneficialOwnerUpdateParams::Address,
12
12
  ?confirmed_no_us_tax_id: bool,
13
13
  ?identification: Increase::BeneficialOwnerUpdateParams::Identification,
14
+ ?name: String,
14
15
  ?request_options: Increase::request_opts
15
16
  ) -> Increase::EntityBeneficialOwner
16
17
 
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.244.0
4
+ version: 1.245.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-11 00:00:00.000000000 Z
11
+ date: 2026-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi