increase 1.159.0 → 1.161.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/check_transfer.rb +14 -1
- data/lib/increase/models/check_transfer_create_params.rb +19 -5
- data/lib/increase/models/entity.rb +9 -1
- data/lib/increase/models/entity_create_params.rb +10 -1
- data/lib/increase/models/entity_update_params.rb +10 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_transfer.rbi +10 -0
- data/rbi/increase/models/check_transfer_create_params.rbi +24 -9
- data/rbi/increase/models/entity.rbi +8 -0
- data/rbi/increase/models/entity_create_params.rbi +13 -0
- data/rbi/increase/models/entity_update_params.rbi +13 -0
- data/sig/increase/models/check_transfer.rbs +5 -0
- data/sig/increase/models/check_transfer_create_params.rbs +10 -3
- data/sig/increase/models/entity.rbs +5 -0
- data/sig/increase/models/entity_create_params.rbs +7 -0
- data/sig/increase/models/entity_update_params.rbs +7 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2df5db26b14da4e0451d17b1559fabde133a6939fd0edfeb23e293c2cd642db7
|
|
4
|
+
data.tar.gz: '0548b5bbb7636f936be4203a20dcfc8e12bf6839fe5c85e4571c50574e00ceb7'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5146ea4ac1d46af76974ba72ee987c46926724b310043d6a35f336b243ed6361af545f105ae19daa414a955b8c183af4ae0d134d937acd0222a3544f1654d87
|
|
7
|
+
data.tar.gz: 6e098fa35dde7b1fa943a7b738a8a859e9fd47d523a618f80ac2dc70672fe7948a29d4806481b7bf29d53f56e60d6f40fb1da6cabd5b8a2ef6e1cc99f22924a2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.161.0 (2025-12-15)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.160.0...v1.161.0](https://github.com/Increase/increase-ruby/compare/v1.160.0...v1.161.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([888afde](https://github.com/Increase/increase-ruby/commit/888afdeaee1e7c956b33c3de1861a8d735293a66))
|
|
10
|
+
|
|
11
|
+
## 1.160.0 (2025-12-15)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.159.0...v1.160.0](https://github.com/Increase/increase-ruby/compare/v1.159.0...v1.160.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([5d1d461](https://github.com/Increase/increase-ruby/commit/5d1d46157b5a707fc910c14e60061e4b89c1f52d))
|
|
18
|
+
|
|
3
19
|
## 1.159.0 (2025-12-09)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.158.0...v1.159.0](https://github.com/Increase/increase-ruby/compare/v1.158.0...v1.159.0)
|
data/README.md
CHANGED
|
@@ -675,6 +675,13 @@ module Increase
|
|
|
675
675
|
# @return [String, nil]
|
|
676
676
|
required :name, String, nil?: true
|
|
677
677
|
|
|
678
|
+
# @!attribute phone
|
|
679
|
+
# The shipper's phone number to be used in case of delivery issues. Only used for
|
|
680
|
+
# FedEx overnight shipping.
|
|
681
|
+
#
|
|
682
|
+
# @return [String, nil]
|
|
683
|
+
required :phone, String, nil?: true
|
|
684
|
+
|
|
678
685
|
# @!attribute postal_code
|
|
679
686
|
# The postal code of the check's destination.
|
|
680
687
|
#
|
|
@@ -687,7 +694,11 @@ module Increase
|
|
|
687
694
|
# @return [String, nil]
|
|
688
695
|
required :state, String, nil?: true
|
|
689
696
|
|
|
690
|
-
# @!method initialize(city:, line1:, line2:, name:, postal_code:, state:)
|
|
697
|
+
# @!method initialize(city:, line1:, line2:, name:, phone:, postal_code:, state:)
|
|
698
|
+
# Some parameter documentations has been truncated, see
|
|
699
|
+
# {Increase::Models::CheckTransfer::PhysicalCheck::ReturnAddress} for more
|
|
700
|
+
# details.
|
|
701
|
+
#
|
|
691
702
|
# The return address to be printed on the check.
|
|
692
703
|
#
|
|
693
704
|
# @param city [String, nil] The city of the check's destination.
|
|
@@ -698,6 +709,8 @@ module Increase
|
|
|
698
709
|
#
|
|
699
710
|
# @param name [String, nil] The name component of the check's return address.
|
|
700
711
|
#
|
|
712
|
+
# @param phone [String, nil] The shipper's phone number to be used in case of delivery issues. Only used for
|
|
713
|
+
#
|
|
701
714
|
# @param postal_code [String, nil] The postal code of the check's destination.
|
|
702
715
|
#
|
|
703
716
|
# @param state [String, nil] The state of the check's destination.
|
|
@@ -273,9 +273,9 @@ module Increase
|
|
|
273
273
|
optional :name, String
|
|
274
274
|
|
|
275
275
|
# @!attribute phone
|
|
276
|
-
# The phone number to associate with the check's destination address. The
|
|
277
|
-
# is only used when `shipping_method` is `fedex_overnight` and will be
|
|
278
|
-
# FedEx to be used in case of delivery issues.
|
|
276
|
+
# The phone number to associate with the check's destination address. The phone
|
|
277
|
+
# number is only used when `shipping_method` is `fedex_overnight` and will be
|
|
278
|
+
# supplied to FedEx to be used in case of delivery issues.
|
|
279
279
|
#
|
|
280
280
|
# @return [String, nil]
|
|
281
281
|
optional :phone, String
|
|
@@ -299,7 +299,7 @@ module Increase
|
|
|
299
299
|
#
|
|
300
300
|
# @param name [String] The name component of the check's destination address. Defaults to the provided
|
|
301
301
|
#
|
|
302
|
-
# @param phone [String] The phone number to associate with the check's destination address. The
|
|
302
|
+
# @param phone [String] The phone number to associate with the check's destination address. The phone nu
|
|
303
303
|
end
|
|
304
304
|
|
|
305
305
|
class Payer < Increase::Internal::Type::BaseModel
|
|
@@ -351,7 +351,19 @@ module Increase
|
|
|
351
351
|
# @return [String, nil]
|
|
352
352
|
optional :line2, String
|
|
353
353
|
|
|
354
|
-
# @!
|
|
354
|
+
# @!attribute phone
|
|
355
|
+
# The phone number to associate with the shipper. The phone number is only used
|
|
356
|
+
# when `shipping_method` is `fedex_overnight` and will be supplied to FedEx to be
|
|
357
|
+
# used in case of delivery issues.
|
|
358
|
+
#
|
|
359
|
+
# @return [String, nil]
|
|
360
|
+
optional :phone, String
|
|
361
|
+
|
|
362
|
+
# @!method initialize(city:, line1:, name:, postal_code:, state:, line2: nil, phone: nil)
|
|
363
|
+
# Some parameter documentations has been truncated, see
|
|
364
|
+
# {Increase::Models::CheckTransferCreateParams::PhysicalCheck::ReturnAddress} for
|
|
365
|
+
# more details.
|
|
366
|
+
#
|
|
355
367
|
# The return address to be printed on the check. If omitted this will default to
|
|
356
368
|
# an Increase-owned address that will mark checks as delivery failed and shred
|
|
357
369
|
# them.
|
|
@@ -367,6 +379,8 @@ module Increase
|
|
|
367
379
|
# @param state [String] The US state of the return address.
|
|
368
380
|
#
|
|
369
381
|
# @param line2 [String] The second line of the return address.
|
|
382
|
+
#
|
|
383
|
+
# @param phone [String] The phone number to associate with the shipper. The phone number is only used wh
|
|
370
384
|
end
|
|
371
385
|
|
|
372
386
|
# How to ship the check. For details on pricing, timing, and restrictions, see
|
|
@@ -169,6 +169,12 @@ module Increase
|
|
|
169
169
|
required :beneficial_owners,
|
|
170
170
|
-> { Increase::Internal::Type::ArrayOf[Increase::Entity::Corporation::BeneficialOwner] }
|
|
171
171
|
|
|
172
|
+
# @!attribute email
|
|
173
|
+
# An email address for the business.
|
|
174
|
+
#
|
|
175
|
+
# @return [String, nil]
|
|
176
|
+
required :email, String, nil?: true
|
|
177
|
+
|
|
172
178
|
# @!attribute incorporation_state
|
|
173
179
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
174
180
|
# corporation's state of incorporation.
|
|
@@ -201,7 +207,7 @@ module Increase
|
|
|
201
207
|
# @return [String, nil]
|
|
202
208
|
required :website, String, nil?: true
|
|
203
209
|
|
|
204
|
-
# @!method initialize(address:, beneficial_owners:, incorporation_state:, industry_code:, name:, tax_identifier:, website:)
|
|
210
|
+
# @!method initialize(address:, beneficial_owners:, email:, incorporation_state:, industry_code:, name:, tax_identifier:, website:)
|
|
205
211
|
# Some parameter documentations has been truncated, see
|
|
206
212
|
# {Increase::Models::Entity::Corporation} for more details.
|
|
207
213
|
#
|
|
@@ -212,6 +218,8 @@ module Increase
|
|
|
212
218
|
#
|
|
213
219
|
# @param beneficial_owners [Array<Increase::Models::Entity::Corporation::BeneficialOwner>] The identifying details of anyone controlling or owning 25% or more of the corpo
|
|
214
220
|
#
|
|
221
|
+
# @param email [String, nil] An email address for the business.
|
|
222
|
+
#
|
|
215
223
|
# @param incorporation_state [String, nil] The two-letter United States Postal Service (USPS) abbreviation for the corporat
|
|
216
224
|
#
|
|
217
225
|
# @param industry_code [String, nil] The numeric North American Industry Classification System (NAICS) code submitted
|
|
@@ -165,6 +165,13 @@ module Increase
|
|
|
165
165
|
optional :beneficial_ownership_exemption_reason,
|
|
166
166
|
enum: -> { Increase::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason }
|
|
167
167
|
|
|
168
|
+
# @!attribute email
|
|
169
|
+
# An email address for the business. Not every program requires an email for
|
|
170
|
+
# submitted Entities.
|
|
171
|
+
#
|
|
172
|
+
# @return [String, nil]
|
|
173
|
+
optional :email, String
|
|
174
|
+
|
|
168
175
|
# @!attribute incorporation_state
|
|
169
176
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
170
177
|
# corporation's state of incorporation.
|
|
@@ -187,7 +194,7 @@ module Increase
|
|
|
187
194
|
# @return [String, nil]
|
|
188
195
|
optional :website, String
|
|
189
196
|
|
|
190
|
-
# @!method initialize(address:, beneficial_owners:, name:, tax_identifier:, beneficial_ownership_exemption_reason: nil, incorporation_state: nil, industry_code: nil, website: nil)
|
|
197
|
+
# @!method initialize(address:, beneficial_owners:, name:, tax_identifier:, beneficial_ownership_exemption_reason: nil, email: nil, incorporation_state: nil, industry_code: nil, website: nil)
|
|
191
198
|
# Some parameter documentations has been truncated, see
|
|
192
199
|
# {Increase::Models::EntityCreateParams::Corporation} for more details.
|
|
193
200
|
#
|
|
@@ -204,6 +211,8 @@ module Increase
|
|
|
204
211
|
#
|
|
205
212
|
# @param beneficial_ownership_exemption_reason [Symbol, Increase::Models::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason] If the entity is exempt from the requirement to submit beneficial owners, provid
|
|
206
213
|
#
|
|
214
|
+
# @param email [String] An email address for the business. Not every program requires an email for submi
|
|
215
|
+
#
|
|
207
216
|
# @param incorporation_state [String] The two-letter United States Postal Service (USPS) abbreviation for the corporat
|
|
208
217
|
#
|
|
209
218
|
# @param industry_code [String] The North American Industry Classification System (NAICS) code for the corporati
|
|
@@ -86,6 +86,13 @@ module Increase
|
|
|
86
86
|
# @return [Increase::Models::EntityUpdateParams::Corporation::Address, nil]
|
|
87
87
|
optional :address, -> { Increase::EntityUpdateParams::Corporation::Address }
|
|
88
88
|
|
|
89
|
+
# @!attribute email
|
|
90
|
+
# An email address for the business. Not every program requires an email for
|
|
91
|
+
# submitted Entities.
|
|
92
|
+
#
|
|
93
|
+
# @return [String, nil]
|
|
94
|
+
optional :email, String
|
|
95
|
+
|
|
89
96
|
# @!attribute industry_code
|
|
90
97
|
# The North American Industry Classification System (NAICS) code for the
|
|
91
98
|
# corporation's primary line of business. This is a number, like `5132` for
|
|
@@ -101,7 +108,7 @@ module Increase
|
|
|
101
108
|
# @return [String, nil]
|
|
102
109
|
optional :name, String
|
|
103
110
|
|
|
104
|
-
# @!method initialize(address: nil, industry_code: nil, name: nil)
|
|
111
|
+
# @!method initialize(address: nil, email: nil, industry_code: nil, name: nil)
|
|
105
112
|
# Some parameter documentations has been truncated, see
|
|
106
113
|
# {Increase::Models::EntityUpdateParams::Corporation} for more details.
|
|
107
114
|
#
|
|
@@ -110,6 +117,8 @@ module Increase
|
|
|
110
117
|
#
|
|
111
118
|
# @param address [Increase::Models::EntityUpdateParams::Corporation::Address] The entity's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
112
119
|
#
|
|
120
|
+
# @param email [String] An email address for the business. Not every program requires an email for submi
|
|
121
|
+
#
|
|
113
122
|
# @param industry_code [String] The North American Industry Classification System (NAICS) code for the corporati
|
|
114
123
|
#
|
|
115
124
|
# @param name [String] The legal name of the corporation.
|
data/lib/increase/version.rb
CHANGED
|
@@ -1080,6 +1080,11 @@ module Increase
|
|
|
1080
1080
|
sig { returns(T.nilable(String)) }
|
|
1081
1081
|
attr_accessor :name
|
|
1082
1082
|
|
|
1083
|
+
# The shipper's phone number to be used in case of delivery issues. Only used for
|
|
1084
|
+
# FedEx overnight shipping.
|
|
1085
|
+
sig { returns(T.nilable(String)) }
|
|
1086
|
+
attr_accessor :phone
|
|
1087
|
+
|
|
1083
1088
|
# The postal code of the check's destination.
|
|
1084
1089
|
sig { returns(T.nilable(String)) }
|
|
1085
1090
|
attr_accessor :postal_code
|
|
@@ -1095,6 +1100,7 @@ module Increase
|
|
|
1095
1100
|
line1: T.nilable(String),
|
|
1096
1101
|
line2: T.nilable(String),
|
|
1097
1102
|
name: T.nilable(String),
|
|
1103
|
+
phone: T.nilable(String),
|
|
1098
1104
|
postal_code: T.nilable(String),
|
|
1099
1105
|
state: T.nilable(String)
|
|
1100
1106
|
).returns(T.attached_class)
|
|
@@ -1108,6 +1114,9 @@ module Increase
|
|
|
1108
1114
|
line2:,
|
|
1109
1115
|
# The name component of the check's return address.
|
|
1110
1116
|
name:,
|
|
1117
|
+
# The shipper's phone number to be used in case of delivery issues. Only used for
|
|
1118
|
+
# FedEx overnight shipping.
|
|
1119
|
+
phone:,
|
|
1111
1120
|
# The postal code of the check's destination.
|
|
1112
1121
|
postal_code:,
|
|
1113
1122
|
# The state of the check's destination.
|
|
@@ -1122,6 +1131,7 @@ module Increase
|
|
|
1122
1131
|
line1: T.nilable(String),
|
|
1123
1132
|
line2: T.nilable(String),
|
|
1124
1133
|
name: T.nilable(String),
|
|
1134
|
+
phone: T.nilable(String),
|
|
1125
1135
|
postal_code: T.nilable(String),
|
|
1126
1136
|
state: T.nilable(String)
|
|
1127
1137
|
}
|
|
@@ -510,9 +510,9 @@ module Increase
|
|
|
510
510
|
sig { params(name: String).void }
|
|
511
511
|
attr_writer :name
|
|
512
512
|
|
|
513
|
-
# The phone number to associate with the check's destination address. The
|
|
514
|
-
# is only used when `shipping_method` is `fedex_overnight` and will be
|
|
515
|
-
# FedEx to be used in case of delivery issues.
|
|
513
|
+
# The phone number to associate with the check's destination address. The phone
|
|
514
|
+
# number is only used when `shipping_method` is `fedex_overnight` and will be
|
|
515
|
+
# supplied to FedEx to be used in case of delivery issues.
|
|
516
516
|
sig { returns(T.nilable(String)) }
|
|
517
517
|
attr_reader :phone
|
|
518
518
|
|
|
@@ -545,9 +545,9 @@ module Increase
|
|
|
545
545
|
# The name component of the check's destination address. Defaults to the provided
|
|
546
546
|
# `recipient_name` parameter if `name` is not provided.
|
|
547
547
|
name: nil,
|
|
548
|
-
# The phone number to associate with the check's destination address. The
|
|
549
|
-
# is only used when `shipping_method` is `fedex_overnight` and will be
|
|
550
|
-
# FedEx to be used in case of delivery issues.
|
|
548
|
+
# The phone number to associate with the check's destination address. The phone
|
|
549
|
+
# number is only used when `shipping_method` is `fedex_overnight` and will be
|
|
550
|
+
# supplied to FedEx to be used in case of delivery issues.
|
|
551
551
|
phone: nil
|
|
552
552
|
)
|
|
553
553
|
end
|
|
@@ -630,6 +630,15 @@ module Increase
|
|
|
630
630
|
sig { params(line2: String).void }
|
|
631
631
|
attr_writer :line2
|
|
632
632
|
|
|
633
|
+
# The phone number to associate with the shipper. The phone number is only used
|
|
634
|
+
# when `shipping_method` is `fedex_overnight` and will be supplied to FedEx to be
|
|
635
|
+
# used in case of delivery issues.
|
|
636
|
+
sig { returns(T.nilable(String)) }
|
|
637
|
+
attr_reader :phone
|
|
638
|
+
|
|
639
|
+
sig { params(phone: String).void }
|
|
640
|
+
attr_writer :phone
|
|
641
|
+
|
|
633
642
|
# The return address to be printed on the check. If omitted this will default to
|
|
634
643
|
# an Increase-owned address that will mark checks as delivery failed and shred
|
|
635
644
|
# them.
|
|
@@ -640,7 +649,8 @@ module Increase
|
|
|
640
649
|
name: String,
|
|
641
650
|
postal_code: String,
|
|
642
651
|
state: String,
|
|
643
|
-
line2: String
|
|
652
|
+
line2: String,
|
|
653
|
+
phone: String
|
|
644
654
|
).returns(T.attached_class)
|
|
645
655
|
end
|
|
646
656
|
def self.new(
|
|
@@ -655,7 +665,11 @@ module Increase
|
|
|
655
665
|
# The US state of the return address.
|
|
656
666
|
state:,
|
|
657
667
|
# The second line of the return address.
|
|
658
|
-
line2: nil
|
|
668
|
+
line2: nil,
|
|
669
|
+
# The phone number to associate with the shipper. The phone number is only used
|
|
670
|
+
# when `shipping_method` is `fedex_overnight` and will be supplied to FedEx to be
|
|
671
|
+
# used in case of delivery issues.
|
|
672
|
+
phone: nil
|
|
659
673
|
)
|
|
660
674
|
end
|
|
661
675
|
|
|
@@ -667,7 +681,8 @@ module Increase
|
|
|
667
681
|
name: String,
|
|
668
682
|
postal_code: String,
|
|
669
683
|
state: String,
|
|
670
|
-
line2: String
|
|
684
|
+
line2: String,
|
|
685
|
+
phone: String
|
|
671
686
|
}
|
|
672
687
|
)
|
|
673
688
|
end
|
|
@@ -250,6 +250,10 @@ module Increase
|
|
|
250
250
|
end
|
|
251
251
|
attr_accessor :beneficial_owners
|
|
252
252
|
|
|
253
|
+
# An email address for the business.
|
|
254
|
+
sig { returns(T.nilable(String)) }
|
|
255
|
+
attr_accessor :email
|
|
256
|
+
|
|
253
257
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
254
258
|
# corporation's state of incorporation.
|
|
255
259
|
sig { returns(T.nilable(String)) }
|
|
@@ -279,6 +283,7 @@ module Increase
|
|
|
279
283
|
address: Increase::Entity::Corporation::Address::OrHash,
|
|
280
284
|
beneficial_owners:
|
|
281
285
|
T::Array[Increase::Entity::Corporation::BeneficialOwner::OrHash],
|
|
286
|
+
email: T.nilable(String),
|
|
282
287
|
incorporation_state: T.nilable(String),
|
|
283
288
|
industry_code: T.nilable(String),
|
|
284
289
|
name: String,
|
|
@@ -292,6 +297,8 @@ module Increase
|
|
|
292
297
|
# The identifying details of anyone controlling or owning 25% or more of the
|
|
293
298
|
# corporation.
|
|
294
299
|
beneficial_owners:,
|
|
300
|
+
# An email address for the business.
|
|
301
|
+
email:,
|
|
295
302
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
296
303
|
# corporation's state of incorporation.
|
|
297
304
|
incorporation_state:,
|
|
@@ -313,6 +320,7 @@ module Increase
|
|
|
313
320
|
address: Increase::Entity::Corporation::Address,
|
|
314
321
|
beneficial_owners:
|
|
315
322
|
T::Array[Increase::Entity::Corporation::BeneficialOwner],
|
|
323
|
+
email: T.nilable(String),
|
|
316
324
|
incorporation_state: T.nilable(String),
|
|
317
325
|
industry_code: T.nilable(String),
|
|
318
326
|
name: String,
|
|
@@ -310,6 +310,14 @@ module Increase
|
|
|
310
310
|
end
|
|
311
311
|
attr_writer :beneficial_ownership_exemption_reason
|
|
312
312
|
|
|
313
|
+
# An email address for the business. Not every program requires an email for
|
|
314
|
+
# submitted Entities.
|
|
315
|
+
sig { returns(T.nilable(String)) }
|
|
316
|
+
attr_reader :email
|
|
317
|
+
|
|
318
|
+
sig { params(email: String).void }
|
|
319
|
+
attr_writer :email
|
|
320
|
+
|
|
313
321
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
314
322
|
# corporation's state of incorporation.
|
|
315
323
|
sig { returns(T.nilable(String)) }
|
|
@@ -348,6 +356,7 @@ module Increase
|
|
|
348
356
|
tax_identifier: String,
|
|
349
357
|
beneficial_ownership_exemption_reason:
|
|
350
358
|
Increase::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason::OrSymbol,
|
|
359
|
+
email: String,
|
|
351
360
|
incorporation_state: String,
|
|
352
361
|
industry_code: String,
|
|
353
362
|
website: String
|
|
@@ -369,6 +378,9 @@ module Increase
|
|
|
369
378
|
# provide the justification. If a reason is provided, you do not need to submit a
|
|
370
379
|
# list of beneficial owners.
|
|
371
380
|
beneficial_ownership_exemption_reason: nil,
|
|
381
|
+
# An email address for the business. Not every program requires an email for
|
|
382
|
+
# submitted Entities.
|
|
383
|
+
email: nil,
|
|
372
384
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
373
385
|
# corporation's state of incorporation.
|
|
374
386
|
incorporation_state: nil,
|
|
@@ -394,6 +406,7 @@ module Increase
|
|
|
394
406
|
tax_identifier: String,
|
|
395
407
|
beneficial_ownership_exemption_reason:
|
|
396
408
|
Increase::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason::OrSymbol,
|
|
409
|
+
email: String,
|
|
397
410
|
incorporation_state: String,
|
|
398
411
|
industry_code: String,
|
|
399
412
|
website: String
|
|
@@ -179,6 +179,14 @@ module Increase
|
|
|
179
179
|
end
|
|
180
180
|
attr_writer :address
|
|
181
181
|
|
|
182
|
+
# An email address for the business. Not every program requires an email for
|
|
183
|
+
# submitted Entities.
|
|
184
|
+
sig { returns(T.nilable(String)) }
|
|
185
|
+
attr_reader :email
|
|
186
|
+
|
|
187
|
+
sig { params(email: String).void }
|
|
188
|
+
attr_writer :email
|
|
189
|
+
|
|
182
190
|
# The North American Industry Classification System (NAICS) code for the
|
|
183
191
|
# corporation's primary line of business. This is a number, like `5132` for
|
|
184
192
|
# `Software Publishers`. A full list of classification codes is available
|
|
@@ -201,6 +209,7 @@ module Increase
|
|
|
201
209
|
sig do
|
|
202
210
|
params(
|
|
203
211
|
address: Increase::EntityUpdateParams::Corporation::Address::OrHash,
|
|
212
|
+
email: String,
|
|
204
213
|
industry_code: String,
|
|
205
214
|
name: String
|
|
206
215
|
).returns(T.attached_class)
|
|
@@ -209,6 +218,9 @@ module Increase
|
|
|
209
218
|
# The entity's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
210
219
|
# are disallowed.
|
|
211
220
|
address: nil,
|
|
221
|
+
# An email address for the business. Not every program requires an email for
|
|
222
|
+
# submitted Entities.
|
|
223
|
+
email: nil,
|
|
212
224
|
# The North American Industry Classification System (NAICS) code for the
|
|
213
225
|
# corporation's primary line of business. This is a number, like `5132` for
|
|
214
226
|
# `Software Publishers`. A full list of classification codes is available
|
|
@@ -223,6 +235,7 @@ module Increase
|
|
|
223
235
|
override.returns(
|
|
224
236
|
{
|
|
225
237
|
address: Increase::EntityUpdateParams::Corporation::Address,
|
|
238
|
+
email: String,
|
|
226
239
|
industry_code: String,
|
|
227
240
|
name: String
|
|
228
241
|
}
|
|
@@ -430,6 +430,7 @@ module Increase
|
|
|
430
430
|
:line1 => String?,
|
|
431
431
|
:line2 => String?,
|
|
432
432
|
name: String?,
|
|
433
|
+
phone: String?,
|
|
433
434
|
postal_code: String?,
|
|
434
435
|
state: String?
|
|
435
436
|
}
|
|
@@ -443,6 +444,8 @@ module Increase
|
|
|
443
444
|
|
|
444
445
|
attr_accessor name: String?
|
|
445
446
|
|
|
447
|
+
attr_accessor phone: String?
|
|
448
|
+
|
|
446
449
|
attr_accessor postal_code: String?
|
|
447
450
|
|
|
448
451
|
attr_accessor state: String?
|
|
@@ -452,6 +455,7 @@ module Increase
|
|
|
452
455
|
line1: String?,
|
|
453
456
|
line2: String?,
|
|
454
457
|
name: String?,
|
|
458
|
+
phone: String?,
|
|
455
459
|
postal_code: String?,
|
|
456
460
|
state: String?
|
|
457
461
|
) -> void
|
|
@@ -461,6 +465,7 @@ module Increase
|
|
|
461
465
|
:line1 => String?,
|
|
462
466
|
:line2 => String?,
|
|
463
467
|
name: String?,
|
|
468
|
+
phone: String?,
|
|
464
469
|
postal_code: String?,
|
|
465
470
|
state: String?
|
|
466
471
|
}
|
|
@@ -264,7 +264,8 @@ module Increase
|
|
|
264
264
|
name: String,
|
|
265
265
|
postal_code: String,
|
|
266
266
|
state: String,
|
|
267
|
-
:line2 => String
|
|
267
|
+
:line2 => String,
|
|
268
|
+
phone: String
|
|
268
269
|
}
|
|
269
270
|
|
|
270
271
|
class ReturnAddress < Increase::Internal::Type::BaseModel
|
|
@@ -282,13 +283,18 @@ module Increase
|
|
|
282
283
|
|
|
283
284
|
def line2=: (String) -> String
|
|
284
285
|
|
|
286
|
+
attr_reader phone: String?
|
|
287
|
+
|
|
288
|
+
def phone=: (String) -> String
|
|
289
|
+
|
|
285
290
|
def initialize: (
|
|
286
291
|
city: String,
|
|
287
292
|
line1: String,
|
|
288
293
|
name: String,
|
|
289
294
|
postal_code: String,
|
|
290
295
|
state: String,
|
|
291
|
-
?line2: String
|
|
296
|
+
?line2: String,
|
|
297
|
+
?phone: String
|
|
292
298
|
) -> void
|
|
293
299
|
|
|
294
300
|
def to_hash: -> {
|
|
@@ -297,7 +303,8 @@ module Increase
|
|
|
297
303
|
name: String,
|
|
298
304
|
postal_code: String,
|
|
299
305
|
state: String,
|
|
300
|
-
:line2 => String
|
|
306
|
+
:line2 => String,
|
|
307
|
+
phone: String
|
|
301
308
|
}
|
|
302
309
|
end
|
|
303
310
|
|
|
@@ -95,6 +95,7 @@ module Increase
|
|
|
95
95
|
{
|
|
96
96
|
address: Increase::Entity::Corporation::Address,
|
|
97
97
|
beneficial_owners: ::Array[Increase::Entity::Corporation::BeneficialOwner],
|
|
98
|
+
email: String?,
|
|
98
99
|
incorporation_state: String?,
|
|
99
100
|
industry_code: String?,
|
|
100
101
|
name: String,
|
|
@@ -107,6 +108,8 @@ module Increase
|
|
|
107
108
|
|
|
108
109
|
attr_accessor beneficial_owners: ::Array[Increase::Entity::Corporation::BeneficialOwner]
|
|
109
110
|
|
|
111
|
+
attr_accessor email: String?
|
|
112
|
+
|
|
110
113
|
attr_accessor incorporation_state: String?
|
|
111
114
|
|
|
112
115
|
attr_accessor industry_code: String?
|
|
@@ -120,6 +123,7 @@ module Increase
|
|
|
120
123
|
def initialize: (
|
|
121
124
|
address: Increase::Entity::Corporation::Address,
|
|
122
125
|
beneficial_owners: ::Array[Increase::Entity::Corporation::BeneficialOwner],
|
|
126
|
+
email: String?,
|
|
123
127
|
incorporation_state: String?,
|
|
124
128
|
industry_code: String?,
|
|
125
129
|
name: String,
|
|
@@ -130,6 +134,7 @@ module Increase
|
|
|
130
134
|
def to_hash: -> {
|
|
131
135
|
address: Increase::Entity::Corporation::Address,
|
|
132
136
|
beneficial_owners: ::Array[Increase::Entity::Corporation::BeneficialOwner],
|
|
137
|
+
email: String?,
|
|
133
138
|
incorporation_state: String?,
|
|
134
139
|
industry_code: String?,
|
|
135
140
|
name: String,
|
|
@@ -132,6 +132,7 @@ module Increase
|
|
|
132
132
|
name: String,
|
|
133
133
|
tax_identifier: String,
|
|
134
134
|
beneficial_ownership_exemption_reason: Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason,
|
|
135
|
+
email: String,
|
|
135
136
|
incorporation_state: String,
|
|
136
137
|
industry_code: String,
|
|
137
138
|
website: String
|
|
@@ -152,6 +153,10 @@ module Increase
|
|
|
152
153
|
Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason
|
|
153
154
|
) -> Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason
|
|
154
155
|
|
|
156
|
+
attr_reader email: String?
|
|
157
|
+
|
|
158
|
+
def email=: (String) -> String
|
|
159
|
+
|
|
155
160
|
attr_reader incorporation_state: String?
|
|
156
161
|
|
|
157
162
|
def incorporation_state=: (String) -> String
|
|
@@ -170,6 +175,7 @@ module Increase
|
|
|
170
175
|
name: String,
|
|
171
176
|
tax_identifier: String,
|
|
172
177
|
?beneficial_ownership_exemption_reason: Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason,
|
|
178
|
+
?email: String,
|
|
173
179
|
?incorporation_state: String,
|
|
174
180
|
?industry_code: String,
|
|
175
181
|
?website: String
|
|
@@ -181,6 +187,7 @@ module Increase
|
|
|
181
187
|
name: String,
|
|
182
188
|
tax_identifier: String,
|
|
183
189
|
beneficial_ownership_exemption_reason: Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason,
|
|
190
|
+
email: String,
|
|
184
191
|
incorporation_state: String,
|
|
185
192
|
industry_code: String,
|
|
186
193
|
website: String
|
|
@@ -81,6 +81,7 @@ module Increase
|
|
|
81
81
|
type corporation =
|
|
82
82
|
{
|
|
83
83
|
address: Increase::EntityUpdateParams::Corporation::Address,
|
|
84
|
+
email: String,
|
|
84
85
|
industry_code: String,
|
|
85
86
|
name: String
|
|
86
87
|
}
|
|
@@ -92,6 +93,10 @@ module Increase
|
|
|
92
93
|
Increase::EntityUpdateParams::Corporation::Address
|
|
93
94
|
) -> Increase::EntityUpdateParams::Corporation::Address
|
|
94
95
|
|
|
96
|
+
attr_reader email: String?
|
|
97
|
+
|
|
98
|
+
def email=: (String) -> String
|
|
99
|
+
|
|
95
100
|
attr_reader industry_code: String?
|
|
96
101
|
|
|
97
102
|
def industry_code=: (String) -> String
|
|
@@ -102,12 +107,14 @@ module Increase
|
|
|
102
107
|
|
|
103
108
|
def initialize: (
|
|
104
109
|
?address: Increase::EntityUpdateParams::Corporation::Address,
|
|
110
|
+
?email: String,
|
|
105
111
|
?industry_code: String,
|
|
106
112
|
?name: String
|
|
107
113
|
) -> void
|
|
108
114
|
|
|
109
115
|
def to_hash: -> {
|
|
110
116
|
address: Increase::EntityUpdateParams::Corporation::Address,
|
|
117
|
+
email: String,
|
|
111
118
|
industry_code: String,
|
|
112
119
|
name: String
|
|
113
120
|
}
|
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.
|
|
4
|
+
version: 1.161.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-12-
|
|
11
|
+
date: 2025-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|