increase 1.237.0 → 1.239.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.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -0
  3. data/README.md +1 -1
  4. data/lib/increase/client.rb +4 -0
  5. data/lib/increase/models/beneficial_owner_list_params.rb +54 -0
  6. data/lib/increase/models/beneficial_owner_retrieve_params.rb +22 -0
  7. data/lib/increase/models/card_payment.rb +139 -90
  8. data/lib/increase/models/entity.rb +3 -207
  9. data/lib/increase/models/entity_beneficial_owner.rb +238 -0
  10. data/lib/increase/models/real_time_decision.rb +138 -86
  11. data/lib/increase/models.rb +6 -0
  12. data/lib/increase/resources/beneficial_owners.rb +67 -0
  13. data/lib/increase/version.rb +1 -1
  14. data/lib/increase.rb +4 -0
  15. data/rbi/increase/client.rbi +3 -0
  16. data/rbi/increase/models/beneficial_owner_list_params.rbi +89 -0
  17. data/rbi/increase/models/beneficial_owner_retrieve_params.rbi +46 -0
  18. data/rbi/increase/models/card_payment.rbi +316 -165
  19. data/rbi/increase/models/entity.rbi +3 -403
  20. data/rbi/increase/models/entity_beneficial_owner.rbi +412 -0
  21. data/rbi/increase/models/real_time_decision.rbi +316 -165
  22. data/rbi/increase/models.rbi +7 -0
  23. data/rbi/increase/resources/beneficial_owners.rbi +54 -0
  24. data/sig/increase/client.rbs +2 -0
  25. data/sig/increase/models/beneficial_owner_list_params.rbs +47 -0
  26. data/sig/increase/models/beneficial_owner_retrieve_params.rbs +24 -0
  27. data/sig/increase/models/card_payment.rbs +115 -67
  28. data/sig/increase/models/entity.rbs +4 -174
  29. data/sig/increase/models/entity_beneficial_owner.rbs +193 -0
  30. data/sig/increase/models/real_time_decision.rbs +114 -67
  31. data/sig/increase/models.rbs +6 -0
  32. data/sig/increase/resources/beneficial_owners.rbs +20 -0
  33. metadata +14 -2
@@ -0,0 +1,193 @@
1
+ module Increase
2
+ module Models
3
+ type entity_beneficial_owner =
4
+ {
5
+ id: String,
6
+ company_title: String?,
7
+ created_at: Time,
8
+ individual: Increase::EntityBeneficialOwner::Individual,
9
+ prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong],
10
+ type: Increase::Models::EntityBeneficialOwner::type_
11
+ }
12
+
13
+ class EntityBeneficialOwner < Increase::Internal::Type::BaseModel
14
+ attr_accessor id: String
15
+
16
+ attr_accessor company_title: String?
17
+
18
+ attr_accessor created_at: Time
19
+
20
+ attr_accessor individual: Increase::EntityBeneficialOwner::Individual
21
+
22
+ attr_accessor prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong]
23
+
24
+ attr_accessor type: Increase::Models::EntityBeneficialOwner::type_
25
+
26
+ def initialize: (
27
+ id: String,
28
+ company_title: String?,
29
+ created_at: Time,
30
+ individual: Increase::EntityBeneficialOwner::Individual,
31
+ prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong],
32
+ type: Increase::Models::EntityBeneficialOwner::type_
33
+ ) -> void
34
+
35
+ def to_hash: -> {
36
+ id: String,
37
+ company_title: String?,
38
+ created_at: Time,
39
+ individual: Increase::EntityBeneficialOwner::Individual,
40
+ prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong],
41
+ type: Increase::Models::EntityBeneficialOwner::type_
42
+ }
43
+
44
+ type individual =
45
+ {
46
+ address: Increase::EntityBeneficialOwner::Individual::Address,
47
+ date_of_birth: Date,
48
+ identification: Increase::EntityBeneficialOwner::Individual::Identification,
49
+ name: String
50
+ }
51
+
52
+ class Individual < Increase::Internal::Type::BaseModel
53
+ attr_accessor address: Increase::EntityBeneficialOwner::Individual::Address
54
+
55
+ attr_accessor date_of_birth: Date
56
+
57
+ attr_accessor identification: Increase::EntityBeneficialOwner::Individual::Identification
58
+
59
+ attr_accessor name: String
60
+
61
+ def initialize: (
62
+ address: Increase::EntityBeneficialOwner::Individual::Address,
63
+ date_of_birth: Date,
64
+ identification: Increase::EntityBeneficialOwner::Individual::Identification,
65
+ name: String
66
+ ) -> void
67
+
68
+ def to_hash: -> {
69
+ address: Increase::EntityBeneficialOwner::Individual::Address,
70
+ date_of_birth: Date,
71
+ identification: Increase::EntityBeneficialOwner::Individual::Identification,
72
+ name: String
73
+ }
74
+
75
+ type address =
76
+ {
77
+ city: String?,
78
+ country: String,
79
+ :line1 => String,
80
+ :line2 => String?,
81
+ state: String?,
82
+ zip: String?
83
+ }
84
+
85
+ class Address < Increase::Internal::Type::BaseModel
86
+ attr_accessor city: String?
87
+
88
+ attr_accessor country: String
89
+
90
+ attr_accessor line1: String
91
+
92
+ attr_accessor line2: String?
93
+
94
+ attr_accessor state: String?
95
+
96
+ attr_accessor zip: String?
97
+
98
+ def initialize: (
99
+ city: String?,
100
+ country: String,
101
+ line1: String,
102
+ line2: String?,
103
+ state: String?,
104
+ zip: String?
105
+ ) -> void
106
+
107
+ def to_hash: -> {
108
+ city: String?,
109
+ country: String,
110
+ :line1 => String,
111
+ :line2 => String?,
112
+ state: String?,
113
+ zip: String?
114
+ }
115
+ end
116
+
117
+ type identification =
118
+ {
119
+ method_: Increase::Models::EntityBeneficialOwner::Individual::Identification::method_,
120
+ :number_last4 => String
121
+ }
122
+
123
+ class Identification < Increase::Internal::Type::BaseModel
124
+ attr_accessor method_: Increase::Models::EntityBeneficialOwner::Individual::Identification::method_
125
+
126
+ attr_accessor number_last4: String
127
+
128
+ def initialize: (
129
+ method_: Increase::Models::EntityBeneficialOwner::Individual::Identification::method_,
130
+ number_last4: String
131
+ ) -> void
132
+
133
+ def to_hash: -> {
134
+ method_: Increase::Models::EntityBeneficialOwner::Individual::Identification::method_,
135
+ :number_last4 => String
136
+ }
137
+
138
+ type method_ =
139
+ :social_security_number
140
+ | :individual_taxpayer_identification_number
141
+ | :passport
142
+ | :drivers_license
143
+ | :other
144
+
145
+ module Method
146
+ extend Increase::Internal::Type::Enum
147
+
148
+ # A social security number.
149
+ SOCIAL_SECURITY_NUMBER: :social_security_number
150
+
151
+ # An individual taxpayer identification number (ITIN).
152
+ INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER: :individual_taxpayer_identification_number
153
+
154
+ # A passport number.
155
+ PASSPORT: :passport
156
+
157
+ # A driver's license number.
158
+ DRIVERS_LICENSE: :drivers_license
159
+
160
+ # Another identifying document.
161
+ OTHER: :other
162
+
163
+ def self?.values: -> ::Array[Increase::Models::EntityBeneficialOwner::Individual::Identification::method_]
164
+ end
165
+ end
166
+ end
167
+
168
+ type prong = :ownership | :control
169
+
170
+ module Prong
171
+ extend Increase::Internal::Type::Enum
172
+
173
+ # A person with 25% or greater direct or indirect ownership of the entity.
174
+ OWNERSHIP: :ownership
175
+
176
+ # A person who manages, directs, or has significant control of the entity.
177
+ CONTROL: :control
178
+
179
+ def self?.values: -> ::Array[Increase::Models::EntityBeneficialOwner::prong]
180
+ end
181
+
182
+ type type_ = :entity_beneficial_owner
183
+
184
+ module Type
185
+ extend Increase::Internal::Type::Enum
186
+
187
+ ENTITY_BENEFICIAL_OWNER: :entity_beneficial_owner
188
+
189
+ def self?.values: -> ::Array[Increase::Models::EntityBeneficialOwner::type_]
190
+ end
191
+ end
192
+ end
193
+ end
@@ -85,7 +85,6 @@ module Increase
85
85
  card_id: String,
86
86
  cardholder_email: String?,
87
87
  cardholder_name: String?,
88
- category: Increase::Models::RealTimeDecision::CardAuthentication::category?,
89
88
  decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?,
90
89
  device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
91
90
  directory_server_transaction_id: String,
@@ -93,10 +92,8 @@ module Increase
93
92
  merchant_category_code: String?,
94
93
  merchant_country: String?,
95
94
  merchant_name: String?,
95
+ message_category: Increase::RealTimeDecision::CardAuthentication::MessageCategory,
96
96
  prior_authenticated_card_payment_id: String?,
97
- purchase_amount: Integer?,
98
- purchase_amount_cardholder_estimated: Integer?,
99
- purchase_currency: String?,
100
97
  requestor_authentication_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_authentication_indicator?,
101
98
  requestor_challenge_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_challenge_indicator?,
102
99
  requestor_name: String,
@@ -109,7 +106,6 @@ module Increase
109
106
  shipping_address_postal_code: String?,
110
107
  shipping_address_state: String?,
111
108
  three_d_secure_server_transaction_id: String,
112
- transaction_type: Increase::Models::RealTimeDecision::CardAuthentication::transaction_type?,
113
109
  upcoming_card_payment_id: String
114
110
  }
115
111
 
@@ -138,8 +134,6 @@ module Increase
138
134
 
139
135
  attr_accessor cardholder_name: String?
140
136
 
141
- attr_accessor category: Increase::Models::RealTimeDecision::CardAuthentication::category?
142
-
143
137
  attr_accessor decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?
144
138
 
145
139
  attr_accessor device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel
@@ -154,13 +148,9 @@ module Increase
154
148
 
155
149
  attr_accessor merchant_name: String?
156
150
 
157
- attr_accessor prior_authenticated_card_payment_id: String?
158
-
159
- attr_accessor purchase_amount: Integer?
151
+ attr_accessor message_category: Increase::RealTimeDecision::CardAuthentication::MessageCategory
160
152
 
161
- attr_accessor purchase_amount_cardholder_estimated: Integer?
162
-
163
- attr_accessor purchase_currency: String?
153
+ attr_accessor prior_authenticated_card_payment_id: String?
164
154
 
165
155
  attr_accessor requestor_authentication_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_authentication_indicator?
166
156
 
@@ -186,8 +176,6 @@ module Increase
186
176
 
187
177
  attr_accessor three_d_secure_server_transaction_id: String
188
178
 
189
- attr_accessor transaction_type: Increase::Models::RealTimeDecision::CardAuthentication::transaction_type?
190
-
191
179
  attr_accessor upcoming_card_payment_id: String
192
180
 
193
181
  def initialize: (
@@ -203,7 +191,6 @@ module Increase
203
191
  card_id: String,
204
192
  cardholder_email: String?,
205
193
  cardholder_name: String?,
206
- category: Increase::Models::RealTimeDecision::CardAuthentication::category?,
207
194
  decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?,
208
195
  device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
209
196
  directory_server_transaction_id: String,
@@ -211,10 +198,8 @@ module Increase
211
198
  merchant_category_code: String?,
212
199
  merchant_country: String?,
213
200
  merchant_name: String?,
201
+ message_category: Increase::RealTimeDecision::CardAuthentication::MessageCategory,
214
202
  prior_authenticated_card_payment_id: String?,
215
- purchase_amount: Integer?,
216
- purchase_amount_cardholder_estimated: Integer?,
217
- purchase_currency: String?,
218
203
  requestor_authentication_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_authentication_indicator?,
219
204
  requestor_challenge_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_challenge_indicator?,
220
205
  requestor_name: String,
@@ -227,7 +212,6 @@ module Increase
227
212
  shipping_address_postal_code: String?,
228
213
  shipping_address_state: String?,
229
214
  three_d_secure_server_transaction_id: String,
230
- transaction_type: Increase::Models::RealTimeDecision::CardAuthentication::transaction_type?,
231
215
  upcoming_card_payment_id: String
232
216
  ) -> void
233
217
 
@@ -244,7 +228,6 @@ module Increase
244
228
  card_id: String,
245
229
  cardholder_email: String?,
246
230
  cardholder_name: String?,
247
- category: Increase::Models::RealTimeDecision::CardAuthentication::category?,
248
231
  decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?,
249
232
  device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
250
233
  directory_server_transaction_id: String,
@@ -252,10 +235,8 @@ module Increase
252
235
  merchant_category_code: String?,
253
236
  merchant_country: String?,
254
237
  merchant_name: String?,
238
+ message_category: Increase::RealTimeDecision::CardAuthentication::MessageCategory,
255
239
  prior_authenticated_card_payment_id: String?,
256
- purchase_amount: Integer?,
257
- purchase_amount_cardholder_estimated: Integer?,
258
- purchase_currency: String?,
259
240
  requestor_authentication_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_authentication_indicator?,
260
241
  requestor_challenge_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_challenge_indicator?,
261
242
  requestor_name: String,
@@ -268,24 +249,9 @@ module Increase
268
249
  shipping_address_postal_code: String?,
269
250
  shipping_address_state: String?,
270
251
  three_d_secure_server_transaction_id: String,
271
- transaction_type: Increase::Models::RealTimeDecision::CardAuthentication::transaction_type?,
272
252
  upcoming_card_payment_id: String
273
253
  }
274
254
 
275
- type category = :payment_authentication | :non_payment_authentication
276
-
277
- module Category
278
- extend Increase::Internal::Type::Enum
279
-
280
- # The authentication attempt is for a payment.
281
- PAYMENT_AUTHENTICATION: :payment_authentication
282
-
283
- # The authentication attempt is not for a payment.
284
- NON_PAYMENT_AUTHENTICATION: :non_payment_authentication
285
-
286
- def self?.values: -> ::Array[Increase::Models::RealTimeDecision::CardAuthentication::category]
287
- end
288
-
289
255
  type decision = :approve | :challenge | :deny
290
256
 
291
257
  module Decision
@@ -499,6 +465,115 @@ module Increase
499
465
  end
500
466
  end
501
467
 
468
+ type message_category =
469
+ {
470
+ category: Increase::Models::RealTimeDecision::CardAuthentication::MessageCategory::category,
471
+ non_payment: Increase::RealTimeDecision::CardAuthentication::MessageCategory::NonPayment?,
472
+ payment: Increase::RealTimeDecision::CardAuthentication::MessageCategory::Payment?
473
+ }
474
+
475
+ class MessageCategory < Increase::Internal::Type::BaseModel
476
+ attr_accessor category: Increase::Models::RealTimeDecision::CardAuthentication::MessageCategory::category
477
+
478
+ attr_accessor non_payment: Increase::RealTimeDecision::CardAuthentication::MessageCategory::NonPayment?
479
+
480
+ attr_accessor payment: Increase::RealTimeDecision::CardAuthentication::MessageCategory::Payment?
481
+
482
+ def initialize: (
483
+ category: Increase::Models::RealTimeDecision::CardAuthentication::MessageCategory::category,
484
+ non_payment: Increase::RealTimeDecision::CardAuthentication::MessageCategory::NonPayment?,
485
+ payment: Increase::RealTimeDecision::CardAuthentication::MessageCategory::Payment?
486
+ ) -> void
487
+
488
+ def to_hash: -> {
489
+ category: Increase::Models::RealTimeDecision::CardAuthentication::MessageCategory::category,
490
+ non_payment: Increase::RealTimeDecision::CardAuthentication::MessageCategory::NonPayment?,
491
+ payment: Increase::RealTimeDecision::CardAuthentication::MessageCategory::Payment?
492
+ }
493
+
494
+ type category = :payment_authentication | :non_payment_authentication
495
+
496
+ module Category
497
+ extend Increase::Internal::Type::Enum
498
+
499
+ # The authentication attempt is for a payment.
500
+ PAYMENT_AUTHENTICATION: :payment_authentication
501
+
502
+ # The authentication attempt is not for a payment.
503
+ NON_PAYMENT_AUTHENTICATION: :non_payment_authentication
504
+
505
+ def self?.values: -> ::Array[Increase::Models::RealTimeDecision::CardAuthentication::MessageCategory::category]
506
+ end
507
+
508
+ type non_payment = { }
509
+
510
+ class NonPayment < Increase::Internal::Type::BaseModel
511
+ def initialize: -> void
512
+
513
+ def to_hash: -> { }
514
+ end
515
+
516
+ type payment =
517
+ {
518
+ purchase_amount: Integer,
519
+ purchase_amount_cardholder_estimated: Integer?,
520
+ purchase_currency: String,
521
+ transaction_type: Increase::Models::RealTimeDecision::CardAuthentication::MessageCategory::Payment::transaction_type?
522
+ }
523
+
524
+ class Payment < Increase::Internal::Type::BaseModel
525
+ attr_accessor purchase_amount: Integer
526
+
527
+ attr_accessor purchase_amount_cardholder_estimated: Integer?
528
+
529
+ attr_accessor purchase_currency: String
530
+
531
+ attr_accessor transaction_type: Increase::Models::RealTimeDecision::CardAuthentication::MessageCategory::Payment::transaction_type?
532
+
533
+ def initialize: (
534
+ purchase_amount: Integer,
535
+ purchase_amount_cardholder_estimated: Integer?,
536
+ purchase_currency: String,
537
+ transaction_type: Increase::Models::RealTimeDecision::CardAuthentication::MessageCategory::Payment::transaction_type?
538
+ ) -> void
539
+
540
+ def to_hash: -> {
541
+ purchase_amount: Integer,
542
+ purchase_amount_cardholder_estimated: Integer?,
543
+ purchase_currency: String,
544
+ transaction_type: Increase::Models::RealTimeDecision::CardAuthentication::MessageCategory::Payment::transaction_type?
545
+ }
546
+
547
+ type transaction_type =
548
+ :goods_service_purchase
549
+ | :check_acceptance
550
+ | :account_funding
551
+ | :quasi_cash_transaction
552
+ | :prepaid_activation_and_load
553
+
554
+ module TransactionType
555
+ extend Increase::Internal::Type::Enum
556
+
557
+ # Purchase of goods or services.
558
+ GOODS_SERVICE_PURCHASE: :goods_service_purchase
559
+
560
+ # Check acceptance.
561
+ CHECK_ACCEPTANCE: :check_acceptance
562
+
563
+ # Account funding.
564
+ ACCOUNT_FUNDING: :account_funding
565
+
566
+ # Quasi-cash transaction.
567
+ QUASI_CASH_TRANSACTION: :quasi_cash_transaction
568
+
569
+ # Prepaid activation and load.
570
+ PREPAID_ACTIVATION_AND_LOAD: :prepaid_activation_and_load
571
+
572
+ def self?.values: -> ::Array[Increase::Models::RealTimeDecision::CardAuthentication::MessageCategory::Payment::transaction_type]
573
+ end
574
+ end
575
+ end
576
+
502
577
  type requestor_authentication_indicator =
503
578
  :payment_transaction
504
579
  | :recurring_transaction
@@ -578,34 +653,6 @@ module Increase
578
653
 
579
654
  def self?.values: -> ::Array[Increase::Models::RealTimeDecision::CardAuthentication::requestor_challenge_indicator]
580
655
  end
581
-
582
- type transaction_type =
583
- :goods_service_purchase
584
- | :check_acceptance
585
- | :account_funding
586
- | :quasi_cash_transaction
587
- | :prepaid_activation_and_load
588
-
589
- module TransactionType
590
- extend Increase::Internal::Type::Enum
591
-
592
- # Purchase of goods or services.
593
- GOODS_SERVICE_PURCHASE: :goods_service_purchase
594
-
595
- # Check acceptance.
596
- CHECK_ACCEPTANCE: :check_acceptance
597
-
598
- # Account funding.
599
- ACCOUNT_FUNDING: :account_funding
600
-
601
- # Quasi-cash transaction.
602
- QUASI_CASH_TRANSACTION: :quasi_cash_transaction
603
-
604
- # Prepaid activation and load.
605
- PREPAID_ACTIVATION_AND_LOAD: :prepaid_activation_and_load
606
-
607
- def self?.values: -> ::Array[Increase::Models::RealTimeDecision::CardAuthentication::transaction_type]
608
- end
609
656
  end
610
657
 
611
658
  type card_authentication_challenge =
@@ -63,6 +63,10 @@ module Increase
63
63
 
64
64
  class BalanceLookup = Increase::Models::BalanceLookup
65
65
 
66
+ class BeneficialOwnerListParams = Increase::Models::BeneficialOwnerListParams
67
+
68
+ class BeneficialOwnerRetrieveParams = Increase::Models::BeneficialOwnerRetrieveParams
69
+
66
70
  class BookkeepingAccount = Increase::Models::BookkeepingAccount
67
71
 
68
72
  class BookkeepingAccountBalanceParams = Increase::Models::BookkeepingAccountBalanceParams
@@ -215,6 +219,8 @@ module Increase
215
219
 
216
220
  class EntityArchiveParams = Increase::Models::EntityArchiveParams
217
221
 
222
+ class EntityBeneficialOwner = Increase::Models::EntityBeneficialOwner
223
+
218
224
  class EntityCreateBeneficialOwnerParams = Increase::Models::EntityCreateBeneficialOwnerParams
219
225
 
220
226
  class EntityCreateParams = Increase::Models::EntityCreateParams
@@ -0,0 +1,20 @@
1
+ module Increase
2
+ module Resources
3
+ class BeneficialOwners
4
+ def retrieve: (
5
+ String entity_beneficial_owner_id,
6
+ ?request_options: Increase::request_opts
7
+ ) -> Increase::EntityBeneficialOwner
8
+
9
+ def list: (
10
+ entity_id: String,
11
+ ?cursor: String,
12
+ ?idempotency_key: String,
13
+ ?limit: Integer,
14
+ ?request_options: Increase::request_opts
15
+ ) -> Increase::Internal::Page[Increase::EntityBeneficialOwner]
16
+
17
+ def initialize: (client: Increase::Client) -> void
18
+ end
19
+ end
20
+ end
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.237.0
4
+ version: 1.239.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-09 00:00:00.000000000 Z
11
+ date: 2026-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi
@@ -102,6 +102,8 @@ files:
102
102
  - lib/increase/models/ach_transfer_list_params.rb
103
103
  - lib/increase/models/ach_transfer_retrieve_params.rb
104
104
  - lib/increase/models/balance_lookup.rb
105
+ - lib/increase/models/beneficial_owner_list_params.rb
106
+ - lib/increase/models/beneficial_owner_retrieve_params.rb
105
107
  - lib/increase/models/bookkeeping_account.rb
106
108
  - lib/increase/models/bookkeeping_account_balance_params.rb
107
109
  - lib/increase/models/bookkeeping_account_create_params.rb
@@ -178,6 +180,7 @@ files:
178
180
  - lib/increase/models/entity.rb
179
181
  - lib/increase/models/entity_archive_beneficial_owner_params.rb
180
182
  - lib/increase/models/entity_archive_params.rb
183
+ - lib/increase/models/entity_beneficial_owner.rb
181
184
  - lib/increase/models/entity_create_beneficial_owner_params.rb
182
185
  - lib/increase/models/entity_create_params.rb
183
186
  - lib/increase/models/entity_list_params.rb
@@ -376,6 +379,7 @@ files:
376
379
  - lib/increase/resources/accounts.rb
377
380
  - lib/increase/resources/ach_prenotifications.rb
378
381
  - lib/increase/resources/ach_transfers.rb
382
+ - lib/increase/resources/beneficial_owners.rb
379
383
  - lib/increase/resources/bookkeeping_accounts.rb
380
384
  - lib/increase/resources/bookkeeping_entries.rb
381
385
  - lib/increase/resources/bookkeeping_entry_sets.rb
@@ -513,6 +517,8 @@ files:
513
517
  - rbi/increase/models/ach_transfer_list_params.rbi
514
518
  - rbi/increase/models/ach_transfer_retrieve_params.rbi
515
519
  - rbi/increase/models/balance_lookup.rbi
520
+ - rbi/increase/models/beneficial_owner_list_params.rbi
521
+ - rbi/increase/models/beneficial_owner_retrieve_params.rbi
516
522
  - rbi/increase/models/bookkeeping_account.rbi
517
523
  - rbi/increase/models/bookkeeping_account_balance_params.rbi
518
524
  - rbi/increase/models/bookkeeping_account_create_params.rbi
@@ -589,6 +595,7 @@ files:
589
595
  - rbi/increase/models/entity.rbi
590
596
  - rbi/increase/models/entity_archive_beneficial_owner_params.rbi
591
597
  - rbi/increase/models/entity_archive_params.rbi
598
+ - rbi/increase/models/entity_beneficial_owner.rbi
592
599
  - rbi/increase/models/entity_create_beneficial_owner_params.rbi
593
600
  - rbi/increase/models/entity_create_params.rbi
594
601
  - rbi/increase/models/entity_list_params.rbi
@@ -787,6 +794,7 @@ files:
787
794
  - rbi/increase/resources/accounts.rbi
788
795
  - rbi/increase/resources/ach_prenotifications.rbi
789
796
  - rbi/increase/resources/ach_transfers.rbi
797
+ - rbi/increase/resources/beneficial_owners.rbi
790
798
  - rbi/increase/resources/bookkeeping_accounts.rbi
791
799
  - rbi/increase/resources/bookkeeping_entries.rbi
792
800
  - rbi/increase/resources/bookkeeping_entry_sets.rbi
@@ -923,6 +931,8 @@ files:
923
931
  - sig/increase/models/ach_transfer_list_params.rbs
924
932
  - sig/increase/models/ach_transfer_retrieve_params.rbs
925
933
  - sig/increase/models/balance_lookup.rbs
934
+ - sig/increase/models/beneficial_owner_list_params.rbs
935
+ - sig/increase/models/beneficial_owner_retrieve_params.rbs
926
936
  - sig/increase/models/bookkeeping_account.rbs
927
937
  - sig/increase/models/bookkeeping_account_balance_params.rbs
928
938
  - sig/increase/models/bookkeeping_account_create_params.rbs
@@ -999,6 +1009,7 @@ files:
999
1009
  - sig/increase/models/entity.rbs
1000
1010
  - sig/increase/models/entity_archive_beneficial_owner_params.rbs
1001
1011
  - sig/increase/models/entity_archive_params.rbs
1012
+ - sig/increase/models/entity_beneficial_owner.rbs
1002
1013
  - sig/increase/models/entity_create_beneficial_owner_params.rbs
1003
1014
  - sig/increase/models/entity_create_params.rbs
1004
1015
  - sig/increase/models/entity_list_params.rbs
@@ -1197,6 +1208,7 @@ files:
1197
1208
  - sig/increase/resources/accounts.rbs
1198
1209
  - sig/increase/resources/ach_prenotifications.rbs
1199
1210
  - sig/increase/resources/ach_transfers.rbs
1211
+ - sig/increase/resources/beneficial_owners.rbs
1200
1212
  - sig/increase/resources/bookkeeping_accounts.rbs
1201
1213
  - sig/increase/resources/bookkeeping_entries.rbs
1202
1214
  - sig/increase/resources/bookkeeping_entry_sets.rbs