increase 1.248.0 → 1.250.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/increase/models/beneficial_owner_create_params.rb +387 -0
- data/lib/increase/models/check_transfer.rb +28 -7
- data/lib/increase/models/check_transfer_create_params.rb +37 -7
- data/lib/increase/models/entity_beneficial_owner.rb +12 -2
- data/lib/increase/models/file.rb +3 -0
- data/lib/increase/models/file_create_params.rb +3 -0
- data/lib/increase/models/file_list_params.rb +3 -0
- data/lib/increase/models.rb +2 -0
- data/lib/increase/resources/beneficial_owners.rb +31 -0
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +1 -0
- data/rbi/increase/models/beneficial_owner_create_params.rbi +698 -0
- data/rbi/increase/models/check_transfer.rbi +56 -9
- data/rbi/increase/models/check_transfer_create_params.rbi +72 -11
- data/rbi/increase/models/entity_beneficial_owner.rbi +12 -0
- data/rbi/increase/models/file.rbi +4 -0
- data/rbi/increase/models/file_create_params.rbi +7 -0
- data/rbi/increase/models/file_list_params.rbi +7 -0
- data/rbi/increase/models.rbi +2 -0
- data/rbi/increase/resources/beneficial_owners.rbi +26 -0
- data/sig/increase/models/beneficial_owner_create_params.rbs +319 -0
- data/sig/increase/models/check_transfer.rbs +16 -4
- data/sig/increase/models/check_transfer_create_params.rbs +23 -5
- data/sig/increase/models/entity_beneficial_owner.rbs +5 -0
- data/sig/increase/models/file.rbs +4 -0
- data/sig/increase/models/file_create_params.rbs +4 -0
- data/sig/increase/models/file_list_params.rbs +4 -0
- data/sig/increase/models.rbs +2 -0
- data/sig/increase/resources/beneficial_owners.rbs +8 -0
- metadata +4 -1
|
@@ -299,7 +299,7 @@ module Increase
|
|
|
299
299
|
recipient_name: String,
|
|
300
300
|
return_address: Increase::CheckTransfer::PhysicalCheck::ReturnAddress?,
|
|
301
301
|
shipping_method: Increase::Models::CheckTransfer::PhysicalCheck::shipping_method?,
|
|
302
|
-
|
|
302
|
+
signature: Increase::CheckTransfer::PhysicalCheck::Signature,
|
|
303
303
|
tracking_updates: ::Array[Increase::CheckTransfer::PhysicalCheck::TrackingUpdate]
|
|
304
304
|
}
|
|
305
305
|
|
|
@@ -322,7 +322,7 @@ module Increase
|
|
|
322
322
|
|
|
323
323
|
attr_accessor shipping_method: Increase::Models::CheckTransfer::PhysicalCheck::shipping_method?
|
|
324
324
|
|
|
325
|
-
attr_accessor
|
|
325
|
+
attr_accessor signature: Increase::CheckTransfer::PhysicalCheck::Signature
|
|
326
326
|
|
|
327
327
|
attr_accessor tracking_updates: ::Array[Increase::CheckTransfer::PhysicalCheck::TrackingUpdate]
|
|
328
328
|
|
|
@@ -336,7 +336,7 @@ module Increase
|
|
|
336
336
|
recipient_name: String,
|
|
337
337
|
return_address: Increase::CheckTransfer::PhysicalCheck::ReturnAddress?,
|
|
338
338
|
shipping_method: Increase::Models::CheckTransfer::PhysicalCheck::shipping_method?,
|
|
339
|
-
|
|
339
|
+
signature: Increase::CheckTransfer::PhysicalCheck::Signature,
|
|
340
340
|
tracking_updates: ::Array[Increase::CheckTransfer::PhysicalCheck::TrackingUpdate]
|
|
341
341
|
) -> void
|
|
342
342
|
|
|
@@ -350,7 +350,7 @@ module Increase
|
|
|
350
350
|
recipient_name: String,
|
|
351
351
|
return_address: Increase::CheckTransfer::PhysicalCheck::ReturnAddress?,
|
|
352
352
|
shipping_method: Increase::Models::CheckTransfer::PhysicalCheck::shipping_method?,
|
|
353
|
-
|
|
353
|
+
signature: Increase::CheckTransfer::PhysicalCheck::Signature,
|
|
354
354
|
tracking_updates: ::Array[Increase::CheckTransfer::PhysicalCheck::TrackingUpdate]
|
|
355
355
|
}
|
|
356
356
|
|
|
@@ -472,6 +472,18 @@ module Increase
|
|
|
472
472
|
def self?.values: -> ::Array[Increase::Models::CheckTransfer::PhysicalCheck::shipping_method]
|
|
473
473
|
end
|
|
474
474
|
|
|
475
|
+
type signature = { image_file_id: String?, text: String? }
|
|
476
|
+
|
|
477
|
+
class Signature < Increase::Internal::Type::BaseModel
|
|
478
|
+
attr_accessor image_file_id: String?
|
|
479
|
+
|
|
480
|
+
attr_accessor text: String?
|
|
481
|
+
|
|
482
|
+
def initialize: (image_file_id: String?, text: String?) -> void
|
|
483
|
+
|
|
484
|
+
def to_hash: -> { image_file_id: String?, text: String? }
|
|
485
|
+
end
|
|
486
|
+
|
|
475
487
|
type tracking_update =
|
|
476
488
|
{
|
|
477
489
|
category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category,
|
|
@@ -124,7 +124,7 @@ module Increase
|
|
|
124
124
|
payer: ::Array[Increase::CheckTransferCreateParams::PhysicalCheck::Payer],
|
|
125
125
|
return_address: Increase::CheckTransferCreateParams::PhysicalCheck::ReturnAddress,
|
|
126
126
|
shipping_method: Increase::Models::CheckTransferCreateParams::PhysicalCheck::shipping_method,
|
|
127
|
-
|
|
127
|
+
signature: Increase::CheckTransferCreateParams::PhysicalCheck::Signature
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
class PhysicalCheck < Increase::Internal::Type::BaseModel
|
|
@@ -164,9 +164,11 @@ module Increase
|
|
|
164
164
|
Increase::Models::CheckTransferCreateParams::PhysicalCheck::shipping_method
|
|
165
165
|
) -> Increase::Models::CheckTransferCreateParams::PhysicalCheck::shipping_method
|
|
166
166
|
|
|
167
|
-
attr_reader
|
|
167
|
+
attr_reader signature: Increase::CheckTransferCreateParams::PhysicalCheck::Signature?
|
|
168
168
|
|
|
169
|
-
def
|
|
169
|
+
def signature=: (
|
|
170
|
+
Increase::CheckTransferCreateParams::PhysicalCheck::Signature
|
|
171
|
+
) -> Increase::CheckTransferCreateParams::PhysicalCheck::Signature
|
|
170
172
|
|
|
171
173
|
def initialize: (
|
|
172
174
|
mailing_address: Increase::CheckTransferCreateParams::PhysicalCheck::MailingAddress,
|
|
@@ -178,7 +180,7 @@ module Increase
|
|
|
178
180
|
?payer: ::Array[Increase::CheckTransferCreateParams::PhysicalCheck::Payer],
|
|
179
181
|
?return_address: Increase::CheckTransferCreateParams::PhysicalCheck::ReturnAddress,
|
|
180
182
|
?shipping_method: Increase::Models::CheckTransferCreateParams::PhysicalCheck::shipping_method,
|
|
181
|
-
?
|
|
183
|
+
?signature: Increase::CheckTransferCreateParams::PhysicalCheck::Signature
|
|
182
184
|
) -> void
|
|
183
185
|
|
|
184
186
|
def to_hash: -> {
|
|
@@ -191,7 +193,7 @@ module Increase
|
|
|
191
193
|
payer: ::Array[Increase::CheckTransferCreateParams::PhysicalCheck::Payer],
|
|
192
194
|
return_address: Increase::CheckTransferCreateParams::PhysicalCheck::ReturnAddress,
|
|
193
195
|
shipping_method: Increase::Models::CheckTransferCreateParams::PhysicalCheck::shipping_method,
|
|
194
|
-
|
|
196
|
+
signature: Increase::CheckTransferCreateParams::PhysicalCheck::Signature
|
|
195
197
|
}
|
|
196
198
|
|
|
197
199
|
type mailing_address =
|
|
@@ -321,6 +323,22 @@ module Increase
|
|
|
321
323
|
|
|
322
324
|
def self?.values: -> ::Array[Increase::Models::CheckTransferCreateParams::PhysicalCheck::shipping_method]
|
|
323
325
|
end
|
|
326
|
+
|
|
327
|
+
type signature = { image_file_id: String, text: String }
|
|
328
|
+
|
|
329
|
+
class Signature < Increase::Internal::Type::BaseModel
|
|
330
|
+
attr_reader image_file_id: String?
|
|
331
|
+
|
|
332
|
+
def image_file_id=: (String) -> String
|
|
333
|
+
|
|
334
|
+
attr_reader text: String?
|
|
335
|
+
|
|
336
|
+
def text=: (String) -> String
|
|
337
|
+
|
|
338
|
+
def initialize: (?image_file_id: String, ?text: String) -> void
|
|
339
|
+
|
|
340
|
+
def to_hash: -> { image_file_id: String, text: String }
|
|
341
|
+
end
|
|
324
342
|
end
|
|
325
343
|
|
|
326
344
|
type third_party = { recipient_name: String }
|
|
@@ -5,6 +5,7 @@ module Increase
|
|
|
5
5
|
id: String,
|
|
6
6
|
company_title: String?,
|
|
7
7
|
created_at: Time,
|
|
8
|
+
idempotency_key: String?,
|
|
8
9
|
individual: Increase::EntityBeneficialOwner::Individual,
|
|
9
10
|
prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong],
|
|
10
11
|
type: Increase::Models::EntityBeneficialOwner::type_
|
|
@@ -17,6 +18,8 @@ module Increase
|
|
|
17
18
|
|
|
18
19
|
attr_accessor created_at: Time
|
|
19
20
|
|
|
21
|
+
attr_accessor idempotency_key: String?
|
|
22
|
+
|
|
20
23
|
attr_accessor individual: Increase::EntityBeneficialOwner::Individual
|
|
21
24
|
|
|
22
25
|
attr_accessor prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong]
|
|
@@ -27,6 +30,7 @@ module Increase
|
|
|
27
30
|
id: String,
|
|
28
31
|
company_title: String?,
|
|
29
32
|
created_at: Time,
|
|
33
|
+
idempotency_key: String?,
|
|
30
34
|
individual: Increase::EntityBeneficialOwner::Individual,
|
|
31
35
|
prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong],
|
|
32
36
|
type: Increase::Models::EntityBeneficialOwner::type_
|
|
@@ -36,6 +40,7 @@ module Increase
|
|
|
36
40
|
id: String,
|
|
37
41
|
company_title: String?,
|
|
38
42
|
created_at: Time,
|
|
43
|
+
idempotency_key: String?,
|
|
39
44
|
individual: Increase::EntityBeneficialOwner::Individual,
|
|
40
45
|
prongs: ::Array[Increase::Models::EntityBeneficialOwner::prong],
|
|
41
46
|
type: Increase::Models::EntityBeneficialOwner::type_
|
|
@@ -79,6 +79,7 @@ module Increase
|
|
|
79
79
|
| :mailed_check_image
|
|
80
80
|
| :check_attachment
|
|
81
81
|
| :check_voucher_image
|
|
82
|
+
| :check_signature
|
|
82
83
|
| :inbound_mail_item
|
|
83
84
|
| :form_1099_int
|
|
84
85
|
| :form_1099_misc
|
|
@@ -131,6 +132,9 @@ module Increase
|
|
|
131
132
|
# An image to be used as the check voucher image, which is printed in the middle of the trifold area of a check. This must be a 2550x1100 pixel PNG.
|
|
132
133
|
CHECK_VOUCHER_IMAGE: :check_voucher_image
|
|
133
134
|
|
|
135
|
+
# A signature image to be printed on a check. This must be a 1320x120 pixel PNG.
|
|
136
|
+
CHECK_SIGNATURE: :check_signature
|
|
137
|
+
|
|
134
138
|
# A scanned mail item sent to Increase.
|
|
135
139
|
INBOUND_MAIL_ITEM: :inbound_mail_item
|
|
136
140
|
|
|
@@ -41,6 +41,7 @@ module Increase
|
|
|
41
41
|
| :mailed_check_image
|
|
42
42
|
| :check_attachment
|
|
43
43
|
| :check_voucher_image
|
|
44
|
+
| :check_signature
|
|
44
45
|
| :form_ss_4
|
|
45
46
|
| :identity_document
|
|
46
47
|
| :loan_application_supplemental_document
|
|
@@ -76,6 +77,9 @@ module Increase
|
|
|
76
77
|
# An image to be used as the check voucher image, which is printed in the middle of the trifold area of a check. This must be a 2550x1100 pixel PNG.
|
|
77
78
|
CHECK_VOUCHER_IMAGE: :check_voucher_image
|
|
78
79
|
|
|
80
|
+
# A signature image to be printed on a check. This must be a 1320x120 pixel PNG.
|
|
81
|
+
CHECK_SIGNATURE: :check_signature
|
|
82
|
+
|
|
79
83
|
# IRS Form SS-4.
|
|
80
84
|
FORM_SS_4: :form_ss_4
|
|
81
85
|
|
|
@@ -118,6 +118,7 @@ module Increase
|
|
|
118
118
|
| :mailed_check_image
|
|
119
119
|
| :check_attachment
|
|
120
120
|
| :check_voucher_image
|
|
121
|
+
| :check_signature
|
|
121
122
|
| :inbound_mail_item
|
|
122
123
|
| :form_1099_int
|
|
123
124
|
| :form_1099_misc
|
|
@@ -170,6 +171,9 @@ module Increase
|
|
|
170
171
|
# An image to be used as the check voucher image, which is printed in the middle of the trifold area of a check. This must be a 2550x1100 pixel PNG.
|
|
171
172
|
CHECK_VOUCHER_IMAGE: :check_voucher_image
|
|
172
173
|
|
|
174
|
+
# A signature image to be printed on a check. This must be a 1320x120 pixel PNG.
|
|
175
|
+
CHECK_SIGNATURE: :check_signature
|
|
176
|
+
|
|
173
177
|
# A scanned mail item sent to Increase.
|
|
174
178
|
INBOUND_MAIL_ITEM: :inbound_mail_item
|
|
175
179
|
|
data/sig/increase/models.rbs
CHANGED
|
@@ -65,6 +65,8 @@ module Increase
|
|
|
65
65
|
|
|
66
66
|
class BeneficialOwnerArchiveParams = Increase::Models::BeneficialOwnerArchiveParams
|
|
67
67
|
|
|
68
|
+
class BeneficialOwnerCreateParams = Increase::Models::BeneficialOwnerCreateParams
|
|
69
|
+
|
|
68
70
|
class BeneficialOwnerListParams = Increase::Models::BeneficialOwnerListParams
|
|
69
71
|
|
|
70
72
|
class BeneficialOwnerRetrieveParams = Increase::Models::BeneficialOwnerRetrieveParams
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
module Increase
|
|
2
2
|
module Resources
|
|
3
3
|
class BeneficialOwners
|
|
4
|
+
def create: (
|
|
5
|
+
entity_id: String,
|
|
6
|
+
individual: Increase::BeneficialOwnerCreateParams::Individual,
|
|
7
|
+
prongs: ::Array[Increase::Models::BeneficialOwnerCreateParams::prong],
|
|
8
|
+
?company_title: String,
|
|
9
|
+
?request_options: Increase::request_opts
|
|
10
|
+
) -> Increase::EntityBeneficialOwner
|
|
11
|
+
|
|
4
12
|
def retrieve: (
|
|
5
13
|
String entity_beneficial_owner_id,
|
|
6
14
|
?request_options: Increase::request_opts
|
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.
|
|
4
|
+
version: 1.250.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
@@ -117,6 +117,7 @@ files:
|
|
|
117
117
|
- lib/increase/models/ach_transfer_retrieve_params.rb
|
|
118
118
|
- lib/increase/models/balance_lookup.rb
|
|
119
119
|
- lib/increase/models/beneficial_owner_archive_params.rb
|
|
120
|
+
- lib/increase/models/beneficial_owner_create_params.rb
|
|
120
121
|
- lib/increase/models/beneficial_owner_list_params.rb
|
|
121
122
|
- lib/increase/models/beneficial_owner_retrieve_params.rb
|
|
122
123
|
- lib/increase/models/beneficial_owner_update_params.rb
|
|
@@ -532,6 +533,7 @@ files:
|
|
|
532
533
|
- rbi/increase/models/ach_transfer_retrieve_params.rbi
|
|
533
534
|
- rbi/increase/models/balance_lookup.rbi
|
|
534
535
|
- rbi/increase/models/beneficial_owner_archive_params.rbi
|
|
536
|
+
- rbi/increase/models/beneficial_owner_create_params.rbi
|
|
535
537
|
- rbi/increase/models/beneficial_owner_list_params.rbi
|
|
536
538
|
- rbi/increase/models/beneficial_owner_retrieve_params.rbi
|
|
537
539
|
- rbi/increase/models/beneficial_owner_update_params.rbi
|
|
@@ -946,6 +948,7 @@ files:
|
|
|
946
948
|
- sig/increase/models/ach_transfer_retrieve_params.rbs
|
|
947
949
|
- sig/increase/models/balance_lookup.rbs
|
|
948
950
|
- sig/increase/models/beneficial_owner_archive_params.rbs
|
|
951
|
+
- sig/increase/models/beneficial_owner_create_params.rbs
|
|
949
952
|
- sig/increase/models/beneficial_owner_list_params.rbs
|
|
950
953
|
- sig/increase/models/beneficial_owner_retrieve_params.rbs
|
|
951
954
|
- sig/increase/models/beneficial_owner_update_params.rbs
|