increase 1.32.0 → 1.33.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: ab5216edf32c9128da00f20a3639c50713a1d2bd91d3f616a362fb10805e2339
4
- data.tar.gz: f417878bf19120751aa6d38cbcc6ec213e76aa1c499a9002d127ae8f07500515
3
+ metadata.gz: c57d4bf2eca13b915bb5dfbf05dbdcd7b360c48f4104f1cc55eb8b7a77f98008
4
+ data.tar.gz: 45ef70968efe1c8766e6213e70c56717a672acdc840692f552e269dfc83c14c7
5
5
  SHA512:
6
- metadata.gz: 8ba6d50cb9392eb97e7e6ec1878c637d9550a5fab4ba33ad210f03146d4b347de5f0a10275e53d431c00e8d9c646dab44710c5c7bd251eb2e6aaf97b672cfa2e
7
- data.tar.gz: 289d3f025847f3d2bd8084aeadbc13a6568828c476e66aed6edd5783fe7f103808ec82be813043f86466fdebba90bbb4a6285218a8fa909dcaccc43f264a82e8
6
+ metadata.gz: 9d8d6b4f566c09e8e19710b9a67f5d18a95375bd5a45e39d38fcb4d1be709c550eb983680f1ceefaa8fd0d05b55ff3bc72fef5d2ba26702f225c3f14d4d4e02b
7
+ data.tar.gz: c66c1754eaf70a0f180e3f1f2580518179123c4b242a6a50c9c5ba4872b2991396754e2df6cb875c9e380b742e68a6e81b238c7fb122f50295bd187a4105fd96
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.33.0 (2025-08-14)
4
+
5
+ Full Changelog: [v1.32.0...v1.33.0](https://github.com/Increase/increase-ruby/compare/v1.32.0...v1.33.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([3a7dff1](https://github.com/Increase/increase-ruby/commit/3a7dff16065381bd9a3f2e8d49e87749679d9409))
10
+
3
11
  ## 1.32.0 (2025-08-13)
4
12
 
5
13
  Full Changelog: [v1.31.0...v1.32.0](https://github.com/Increase/increase-ruby/compare/v1.31.0...v1.32.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.32.0"
18
+ gem "increase", "~> 1.33.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -119,6 +119,12 @@ module Increase
119
119
 
120
120
  # @see Increase::Models::EntityCreateBeneficialOwnerParams::BeneficialOwner::Individual#address
121
121
  class Address < Increase::Internal::Type::BaseModel
122
+ # @!attribute city
123
+ # The city, district, town, or village of the address.
124
+ #
125
+ # @return [String]
126
+ required :city, String
127
+
122
128
  # @!attribute country
123
129
  # The two-letter ISO 3166-1 alpha-2 code for the country of the address.
124
130
  #
@@ -131,13 +137,6 @@ module Increase
131
137
  # @return [String]
132
138
  required :line1, String
133
139
 
134
- # @!attribute city
135
- # The city, district, town, or village of the address. Required in certain
136
- # countries.
137
- #
138
- # @return [String, nil]
139
- optional :city, String
140
-
141
140
  # @!attribute line2
142
141
  # The second line of the address. This might be the floor or room number.
143
142
  #
@@ -157,7 +156,7 @@ module Increase
157
156
  # @return [String, nil]
158
157
  optional :zip, String
159
158
 
160
- # @!method initialize(country:, line1:, city: nil, line2: nil, state: nil, zip: nil)
159
+ # @!method initialize(city:, country:, line1:, line2: nil, state: nil, zip: nil)
161
160
  # Some parameter documentations has been truncated, see
162
161
  # {Increase::Models::EntityCreateBeneficialOwnerParams::BeneficialOwner::Individual::Address}
163
162
  # for more details.
@@ -165,12 +164,12 @@ module Increase
165
164
  # The individual's physical address. Mail receiving locations like PO Boxes and
166
165
  # PMB's are disallowed.
167
166
  #
167
+ # @param city [String] The city, district, town, or village of the address.
168
+ #
168
169
  # @param country [String] The two-letter ISO 3166-1 alpha-2 code for the country of the address.
169
170
  #
170
171
  # @param line1 [String] The first line of the address. This is usually the street number and street.
171
172
  #
172
- # @param city [String] The city, district, town, or village of the address. Required in certain countri
173
- #
174
173
  # @param line2 [String] The second line of the address. This might be the floor or room number.
175
174
  #
176
175
  # @param state [String] The two-letter United States Postal Service (USPS) abbreviation for the US state
@@ -349,6 +349,12 @@ module Increase
349
349
 
350
350
  # @see Increase::Models::EntityCreateParams::Corporation::BeneficialOwner::Individual#address
351
351
  class Address < Increase::Internal::Type::BaseModel
352
+ # @!attribute city
353
+ # The city, district, town, or village of the address.
354
+ #
355
+ # @return [String]
356
+ required :city, String
357
+
352
358
  # @!attribute country
353
359
  # The two-letter ISO 3166-1 alpha-2 code for the country of the address.
354
360
  #
@@ -361,13 +367,6 @@ module Increase
361
367
  # @return [String]
362
368
  required :line1, String
363
369
 
364
- # @!attribute city
365
- # The city, district, town, or village of the address. Required in certain
366
- # countries.
367
- #
368
- # @return [String, nil]
369
- optional :city, String
370
-
371
370
  # @!attribute line2
372
371
  # The second line of the address. This might be the floor or room number.
373
372
  #
@@ -387,7 +386,7 @@ module Increase
387
386
  # @return [String, nil]
388
387
  optional :zip, String
389
388
 
390
- # @!method initialize(country:, line1:, city: nil, line2: nil, state: nil, zip: nil)
389
+ # @!method initialize(city:, country:, line1:, line2: nil, state: nil, zip: nil)
391
390
  # Some parameter documentations has been truncated, see
392
391
  # {Increase::Models::EntityCreateParams::Corporation::BeneficialOwner::Individual::Address}
393
392
  # for more details.
@@ -395,12 +394,12 @@ module Increase
395
394
  # The individual's physical address. Mail receiving locations like PO Boxes and
396
395
  # PMB's are disallowed.
397
396
  #
397
+ # @param city [String] The city, district, town, or village of the address.
398
+ #
398
399
  # @param country [String] The two-letter ISO 3166-1 alpha-2 code for the country of the address.
399
400
  #
400
401
  # @param line1 [String] The first line of the address. This is usually the street number and street.
401
402
  #
402
- # @param city [String] The city, district, town, or village of the address. Required in certain countri
403
- #
404
403
  # @param line2 [String] The second line of the address. This might be the floor or room number.
405
404
  #
406
405
  # @param state [String] The two-letter United States Postal Service (USPS) abbreviation for the US state
@@ -32,6 +32,12 @@ module Increase
32
32
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
33
33
 
34
34
  class Address < Increase::Internal::Type::BaseModel
35
+ # @!attribute city
36
+ # The city, district, town, or village of the address.
37
+ #
38
+ # @return [String]
39
+ required :city, String
40
+
35
41
  # @!attribute country
36
42
  # The two-letter ISO 3166-1 alpha-2 code for the country of the address.
37
43
  #
@@ -44,13 +50,6 @@ module Increase
44
50
  # @return [String]
45
51
  required :line1, String
46
52
 
47
- # @!attribute city
48
- # The city, district, town, or village of the address. Required in certain
49
- # countries.
50
- #
51
- # @return [String, nil]
52
- optional :city, String
53
-
54
53
  # @!attribute line2
55
54
  # The second line of the address. This might be the floor or room number.
56
55
  #
@@ -70,7 +69,7 @@ module Increase
70
69
  # @return [String, nil]
71
70
  optional :zip, String
72
71
 
73
- # @!method initialize(country:, line1:, city: nil, line2: nil, state: nil, zip: nil)
72
+ # @!method initialize(city:, country:, line1:, line2: nil, state: nil, zip: nil)
74
73
  # Some parameter documentations has been truncated, see
75
74
  # {Increase::Models::EntityUpdateBeneficialOwnerAddressParams::Address} for more
76
75
  # details.
@@ -78,12 +77,12 @@ module Increase
78
77
  # The individual's physical address. Mail receiving locations like PO Boxes and
79
78
  # PMB's are disallowed.
80
79
  #
80
+ # @param city [String] The city, district, town, or village of the address.
81
+ #
81
82
  # @param country [String] The two-letter ISO 3166-1 alpha-2 code for the country of the address.
82
83
  #
83
84
  # @param line1 [String] The first line of the address. This is usually the street number and street.
84
85
  #
85
- # @param city [String] The city, district, town, or village of the address. Required in certain countri
86
- #
87
86
  # @param line2 [String] The second line of the address. This might be the floor or room number.
88
87
  #
89
88
  # @param state [String] The two-letter United States Postal Service (USPS) abbreviation for the US state
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.32.0"
4
+ VERSION = "1.33.0"
5
5
  end
@@ -256,6 +256,10 @@ module Increase
256
256
  )
257
257
  end
258
258
 
259
+ # The city, district, town, or village of the address.
260
+ sig { returns(String) }
261
+ attr_accessor :city
262
+
259
263
  # The two-letter ISO 3166-1 alpha-2 code for the country of the address.
260
264
  sig { returns(String) }
261
265
  attr_accessor :country
@@ -264,14 +268,6 @@ module Increase
264
268
  sig { returns(String) }
265
269
  attr_accessor :line1
266
270
 
267
- # The city, district, town, or village of the address. Required in certain
268
- # countries.
269
- sig { returns(T.nilable(String)) }
270
- attr_reader :city
271
-
272
- sig { params(city: String).void }
273
- attr_writer :city
274
-
275
271
  # The second line of the address. This might be the floor or room number.
276
272
  sig { returns(T.nilable(String)) }
277
273
  attr_reader :line2
@@ -298,22 +294,21 @@ module Increase
298
294
  # PMB's are disallowed.
299
295
  sig do
300
296
  params(
297
+ city: String,
301
298
  country: String,
302
299
  line1: String,
303
- city: String,
304
300
  line2: String,
305
301
  state: String,
306
302
  zip: String
307
303
  ).returns(T.attached_class)
308
304
  end
309
305
  def self.new(
306
+ # The city, district, town, or village of the address.
307
+ city:,
310
308
  # The two-letter ISO 3166-1 alpha-2 code for the country of the address.
311
309
  country:,
312
310
  # The first line of the address. This is usually the street number and street.
313
311
  line1:,
314
- # The city, district, town, or village of the address. Required in certain
315
- # countries.
316
- city: nil,
317
312
  # The second line of the address. This might be the floor or room number.
318
313
  line2: nil,
319
314
  # The two-letter United States Postal Service (USPS) abbreviation for the US
@@ -327,9 +322,9 @@ module Increase
327
322
  sig do
328
323
  override.returns(
329
324
  {
325
+ city: String,
330
326
  country: String,
331
327
  line1: String,
332
- city: String,
333
328
  line2: String,
334
329
  state: String,
335
330
  zip: String
@@ -656,6 +656,10 @@ module Increase
656
656
  )
657
657
  end
658
658
 
659
+ # The city, district, town, or village of the address.
660
+ sig { returns(String) }
661
+ attr_accessor :city
662
+
659
663
  # The two-letter ISO 3166-1 alpha-2 code for the country of the address.
660
664
  sig { returns(String) }
661
665
  attr_accessor :country
@@ -664,14 +668,6 @@ module Increase
664
668
  sig { returns(String) }
665
669
  attr_accessor :line1
666
670
 
667
- # The city, district, town, or village of the address. Required in certain
668
- # countries.
669
- sig { returns(T.nilable(String)) }
670
- attr_reader :city
671
-
672
- sig { params(city: String).void }
673
- attr_writer :city
674
-
675
671
  # The second line of the address. This might be the floor or room number.
676
672
  sig { returns(T.nilable(String)) }
677
673
  attr_reader :line2
@@ -698,22 +694,21 @@ module Increase
698
694
  # PMB's are disallowed.
699
695
  sig do
700
696
  params(
697
+ city: String,
701
698
  country: String,
702
699
  line1: String,
703
- city: String,
704
700
  line2: String,
705
701
  state: String,
706
702
  zip: String
707
703
  ).returns(T.attached_class)
708
704
  end
709
705
  def self.new(
706
+ # The city, district, town, or village of the address.
707
+ city:,
710
708
  # The two-letter ISO 3166-1 alpha-2 code for the country of the address.
711
709
  country:,
712
710
  # The first line of the address. This is usually the street number and street.
713
711
  line1:,
714
- # The city, district, town, or village of the address. Required in certain
715
- # countries.
716
- city: nil,
717
712
  # The second line of the address. This might be the floor or room number.
718
713
  line2: nil,
719
714
  # The two-letter United States Postal Service (USPS) abbreviation for the US
@@ -727,9 +722,9 @@ module Increase
727
722
  sig do
728
723
  override.returns(
729
724
  {
725
+ city: String,
730
726
  country: String,
731
727
  line1: String,
732
- city: String,
733
728
  line2: String,
734
729
  state: String,
735
730
  zip: String
@@ -75,6 +75,10 @@ module Increase
75
75
  )
76
76
  end
77
77
 
78
+ # The city, district, town, or village of the address.
79
+ sig { returns(String) }
80
+ attr_accessor :city
81
+
78
82
  # The two-letter ISO 3166-1 alpha-2 code for the country of the address.
79
83
  sig { returns(String) }
80
84
  attr_accessor :country
@@ -83,14 +87,6 @@ module Increase
83
87
  sig { returns(String) }
84
88
  attr_accessor :line1
85
89
 
86
- # The city, district, town, or village of the address. Required in certain
87
- # countries.
88
- sig { returns(T.nilable(String)) }
89
- attr_reader :city
90
-
91
- sig { params(city: String).void }
92
- attr_writer :city
93
-
94
90
  # The second line of the address. This might be the floor or room number.
95
91
  sig { returns(T.nilable(String)) }
96
92
  attr_reader :line2
@@ -117,22 +113,21 @@ module Increase
117
113
  # PMB's are disallowed.
118
114
  sig do
119
115
  params(
116
+ city: String,
120
117
  country: String,
121
118
  line1: String,
122
- city: String,
123
119
  line2: String,
124
120
  state: String,
125
121
  zip: String
126
122
  ).returns(T.attached_class)
127
123
  end
128
124
  def self.new(
125
+ # The city, district, town, or village of the address.
126
+ city:,
129
127
  # The two-letter ISO 3166-1 alpha-2 code for the country of the address.
130
128
  country:,
131
129
  # The first line of the address. This is usually the street number and street.
132
130
  line1:,
133
- # The city, district, town, or village of the address. Required in certain
134
- # countries.
135
- city: nil,
136
131
  # The second line of the address. This might be the floor or room number.
137
132
  line2: nil,
138
133
  # The two-letter United States Postal Service (USPS) abbreviation for the US
@@ -146,9 +141,9 @@ module Increase
146
141
  sig do
147
142
  override.returns(
148
143
  {
144
+ city: String,
149
145
  country: String,
150
146
  line1: String,
151
- city: String,
152
147
  line2: String,
153
148
  state: String,
154
149
  zip: String
@@ -90,23 +90,21 @@ module Increase
90
90
 
91
91
  type address =
92
92
  {
93
+ city: String,
93
94
  country: String,
94
95
  :line1 => String,
95
- city: String,
96
96
  :line2 => String,
97
97
  state: String,
98
98
  zip: String
99
99
  }
100
100
 
101
101
  class Address < Increase::Internal::Type::BaseModel
102
+ attr_accessor city: String
103
+
102
104
  attr_accessor country: String
103
105
 
104
106
  attr_accessor line1: String
105
107
 
106
- attr_reader city: String?
107
-
108
- def city=: (String) -> String
109
-
110
108
  attr_reader line2: String?
111
109
 
112
110
  def line2=: (String) -> String
@@ -120,18 +118,18 @@ module Increase
120
118
  def zip=: (String) -> String
121
119
 
122
120
  def initialize: (
121
+ city: String,
123
122
  country: String,
124
123
  line1: String,
125
- ?city: String,
126
124
  ?line2: String,
127
125
  ?state: String,
128
126
  ?zip: String
129
127
  ) -> void
130
128
 
131
129
  def to_hash: -> {
130
+ city: String,
132
131
  country: String,
133
132
  :line1 => String,
134
- city: String,
135
133
  :line2 => String,
136
134
  state: String,
137
135
  zip: String
@@ -284,23 +284,21 @@ module Increase
284
284
 
285
285
  type address =
286
286
  {
287
+ city: String,
287
288
  country: String,
288
289
  :line1 => String,
289
- city: String,
290
290
  :line2 => String,
291
291
  state: String,
292
292
  zip: String
293
293
  }
294
294
 
295
295
  class Address < Increase::Internal::Type::BaseModel
296
+ attr_accessor city: String
297
+
296
298
  attr_accessor country: String
297
299
 
298
300
  attr_accessor line1: String
299
301
 
300
- attr_reader city: String?
301
-
302
- def city=: (String) -> String
303
-
304
302
  attr_reader line2: String?
305
303
 
306
304
  def line2=: (String) -> String
@@ -314,18 +312,18 @@ module Increase
314
312
  def zip=: (String) -> String
315
313
 
316
314
  def initialize: (
315
+ city: String,
317
316
  country: String,
318
317
  line1: String,
319
- ?city: String,
320
318
  ?line2: String,
321
319
  ?state: String,
322
320
  ?zip: String
323
321
  ) -> void
324
322
 
325
323
  def to_hash: -> {
324
+ city: String,
326
325
  country: String,
327
326
  :line1 => String,
328
- city: String,
329
327
  :line2 => String,
330
328
  state: String,
331
329
  zip: String
@@ -29,23 +29,21 @@ module Increase
29
29
 
30
30
  type address =
31
31
  {
32
+ city: String,
32
33
  country: String,
33
34
  :line1 => String,
34
- city: String,
35
35
  :line2 => String,
36
36
  state: String,
37
37
  zip: String
38
38
  }
39
39
 
40
40
  class Address < Increase::Internal::Type::BaseModel
41
+ attr_accessor city: String
42
+
41
43
  attr_accessor country: String
42
44
 
43
45
  attr_accessor line1: String
44
46
 
45
- attr_reader city: String?
46
-
47
- def city=: (String) -> String
48
-
49
47
  attr_reader line2: String?
50
48
 
51
49
  def line2=: (String) -> String
@@ -59,18 +57,18 @@ module Increase
59
57
  def zip=: (String) -> String
60
58
 
61
59
  def initialize: (
60
+ city: String,
62
61
  country: String,
63
62
  line1: String,
64
- ?city: String,
65
63
  ?line2: String,
66
64
  ?state: String,
67
65
  ?zip: String
68
66
  ) -> void
69
67
 
70
68
  def to_hash: -> {
69
+ city: String,
71
70
  country: String,
72
71
  :line1 => String,
73
- city: String,
74
72
  :line2 => String,
75
73
  state: String,
76
74
  zip: String
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.32.0
4
+ version: 1.33.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-13 00:00:00.000000000 Z
11
+ date: 2025-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool