increase 1.158.0 → 1.160.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/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/models/simulations/card_balance_inquiry_create_params.rb +279 -0
- data/lib/increase/resources/simulations/card_balance_inquiries.rb +70 -0
- data/lib/increase/resources/simulations.rb +4 -0
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +2 -0
- 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/rbi/increase/models/simulations/card_balance_inquiry_create_params.rbi +587 -0
- data/rbi/increase/resources/simulations/card_balance_inquiries.rbi +80 -0
- data/rbi/increase/resources/simulations.rbi +3 -0
- 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
- data/sig/increase/models/simulations/card_balance_inquiry_create_params.rbs +294 -0
- data/sig/increase/resources/simulations/card_balance_inquiries.rbs +28 -0
- data/sig/increase/resources/simulations.rbs +2 -0
- metadata +8 -2
|
@@ -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
|
}
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
module Increase
|
|
2
|
+
module Models
|
|
3
|
+
module Simulations
|
|
4
|
+
type card_balance_inquiry_create_params =
|
|
5
|
+
{
|
|
6
|
+
balance: Integer,
|
|
7
|
+
card_id: String,
|
|
8
|
+
decline_reason: Increase::Models::Simulations::CardBalanceInquiryCreateParams::decline_reason,
|
|
9
|
+
digital_wallet_token_id: String,
|
|
10
|
+
event_subscription_id: String,
|
|
11
|
+
merchant_acceptor_id: String,
|
|
12
|
+
merchant_category_code: String,
|
|
13
|
+
merchant_city: String,
|
|
14
|
+
merchant_country: String,
|
|
15
|
+
merchant_descriptor: String,
|
|
16
|
+
merchant_state: String,
|
|
17
|
+
network_details: Increase::Simulations::CardBalanceInquiryCreateParams::NetworkDetails,
|
|
18
|
+
network_risk_score: Integer,
|
|
19
|
+
physical_card_id: String,
|
|
20
|
+
terminal_id: String
|
|
21
|
+
}
|
|
22
|
+
& Increase::Internal::Type::request_parameters
|
|
23
|
+
|
|
24
|
+
class CardBalanceInquiryCreateParams < Increase::Internal::Type::BaseModel
|
|
25
|
+
extend Increase::Internal::Type::RequestParameters::Converter
|
|
26
|
+
include Increase::Internal::Type::RequestParameters
|
|
27
|
+
|
|
28
|
+
attr_reader balance: Integer?
|
|
29
|
+
|
|
30
|
+
def balance=: (Integer) -> Integer
|
|
31
|
+
|
|
32
|
+
attr_reader card_id: String?
|
|
33
|
+
|
|
34
|
+
def card_id=: (String) -> String
|
|
35
|
+
|
|
36
|
+
attr_reader decline_reason: Increase::Models::Simulations::CardBalanceInquiryCreateParams::decline_reason?
|
|
37
|
+
|
|
38
|
+
def decline_reason=: (
|
|
39
|
+
Increase::Models::Simulations::CardBalanceInquiryCreateParams::decline_reason
|
|
40
|
+
) -> Increase::Models::Simulations::CardBalanceInquiryCreateParams::decline_reason
|
|
41
|
+
|
|
42
|
+
attr_reader digital_wallet_token_id: String?
|
|
43
|
+
|
|
44
|
+
def digital_wallet_token_id=: (String) -> String
|
|
45
|
+
|
|
46
|
+
attr_reader event_subscription_id: String?
|
|
47
|
+
|
|
48
|
+
def event_subscription_id=: (String) -> String
|
|
49
|
+
|
|
50
|
+
attr_reader merchant_acceptor_id: String?
|
|
51
|
+
|
|
52
|
+
def merchant_acceptor_id=: (String) -> String
|
|
53
|
+
|
|
54
|
+
attr_reader merchant_category_code: String?
|
|
55
|
+
|
|
56
|
+
def merchant_category_code=: (String) -> String
|
|
57
|
+
|
|
58
|
+
attr_reader merchant_city: String?
|
|
59
|
+
|
|
60
|
+
def merchant_city=: (String) -> String
|
|
61
|
+
|
|
62
|
+
attr_reader merchant_country: String?
|
|
63
|
+
|
|
64
|
+
def merchant_country=: (String) -> String
|
|
65
|
+
|
|
66
|
+
attr_reader merchant_descriptor: String?
|
|
67
|
+
|
|
68
|
+
def merchant_descriptor=: (String) -> String
|
|
69
|
+
|
|
70
|
+
attr_reader merchant_state: String?
|
|
71
|
+
|
|
72
|
+
def merchant_state=: (String) -> String
|
|
73
|
+
|
|
74
|
+
attr_reader network_details: Increase::Simulations::CardBalanceInquiryCreateParams::NetworkDetails?
|
|
75
|
+
|
|
76
|
+
def network_details=: (
|
|
77
|
+
Increase::Simulations::CardBalanceInquiryCreateParams::NetworkDetails
|
|
78
|
+
) -> Increase::Simulations::CardBalanceInquiryCreateParams::NetworkDetails
|
|
79
|
+
|
|
80
|
+
attr_reader network_risk_score: Integer?
|
|
81
|
+
|
|
82
|
+
def network_risk_score=: (Integer) -> Integer
|
|
83
|
+
|
|
84
|
+
attr_reader physical_card_id: String?
|
|
85
|
+
|
|
86
|
+
def physical_card_id=: (String) -> String
|
|
87
|
+
|
|
88
|
+
attr_reader terminal_id: String?
|
|
89
|
+
|
|
90
|
+
def terminal_id=: (String) -> String
|
|
91
|
+
|
|
92
|
+
def initialize: (
|
|
93
|
+
?balance: Integer,
|
|
94
|
+
?card_id: String,
|
|
95
|
+
?decline_reason: Increase::Models::Simulations::CardBalanceInquiryCreateParams::decline_reason,
|
|
96
|
+
?digital_wallet_token_id: String,
|
|
97
|
+
?event_subscription_id: String,
|
|
98
|
+
?merchant_acceptor_id: String,
|
|
99
|
+
?merchant_category_code: String,
|
|
100
|
+
?merchant_city: String,
|
|
101
|
+
?merchant_country: String,
|
|
102
|
+
?merchant_descriptor: String,
|
|
103
|
+
?merchant_state: String,
|
|
104
|
+
?network_details: Increase::Simulations::CardBalanceInquiryCreateParams::NetworkDetails,
|
|
105
|
+
?network_risk_score: Integer,
|
|
106
|
+
?physical_card_id: String,
|
|
107
|
+
?terminal_id: String,
|
|
108
|
+
?request_options: Increase::request_opts
|
|
109
|
+
) -> void
|
|
110
|
+
|
|
111
|
+
def to_hash: -> {
|
|
112
|
+
balance: Integer,
|
|
113
|
+
card_id: String,
|
|
114
|
+
decline_reason: Increase::Models::Simulations::CardBalanceInquiryCreateParams::decline_reason,
|
|
115
|
+
digital_wallet_token_id: String,
|
|
116
|
+
event_subscription_id: String,
|
|
117
|
+
merchant_acceptor_id: String,
|
|
118
|
+
merchant_category_code: String,
|
|
119
|
+
merchant_city: String,
|
|
120
|
+
merchant_country: String,
|
|
121
|
+
merchant_descriptor: String,
|
|
122
|
+
merchant_state: String,
|
|
123
|
+
network_details: Increase::Simulations::CardBalanceInquiryCreateParams::NetworkDetails,
|
|
124
|
+
network_risk_score: Integer,
|
|
125
|
+
physical_card_id: String,
|
|
126
|
+
terminal_id: String,
|
|
127
|
+
request_options: Increase::RequestOptions
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
type decline_reason =
|
|
131
|
+
:account_closed
|
|
132
|
+
| :card_not_active
|
|
133
|
+
| :card_canceled
|
|
134
|
+
| :physical_card_not_active
|
|
135
|
+
| :entity_not_active
|
|
136
|
+
| :group_locked
|
|
137
|
+
| :insufficient_funds
|
|
138
|
+
| :cvv2_mismatch
|
|
139
|
+
| :pin_mismatch
|
|
140
|
+
| :card_expiration_mismatch
|
|
141
|
+
| :transaction_not_allowed
|
|
142
|
+
| :breaches_limit
|
|
143
|
+
| :webhook_declined
|
|
144
|
+
| :webhook_timed_out
|
|
145
|
+
| :declined_by_stand_in_processing
|
|
146
|
+
| :invalid_physical_card
|
|
147
|
+
| :missing_original_authorization
|
|
148
|
+
| :failed_3ds_authentication
|
|
149
|
+
| :suspected_card_testing
|
|
150
|
+
| :suspected_fraud
|
|
151
|
+
|
|
152
|
+
module DeclineReason
|
|
153
|
+
extend Increase::Internal::Type::Enum
|
|
154
|
+
|
|
155
|
+
# The account has been closed.
|
|
156
|
+
ACCOUNT_CLOSED: :account_closed
|
|
157
|
+
|
|
158
|
+
# The Card was not active.
|
|
159
|
+
CARD_NOT_ACTIVE: :card_not_active
|
|
160
|
+
|
|
161
|
+
# The Card has been canceled.
|
|
162
|
+
CARD_CANCELED: :card_canceled
|
|
163
|
+
|
|
164
|
+
# The Physical Card was not active.
|
|
165
|
+
PHYSICAL_CARD_NOT_ACTIVE: :physical_card_not_active
|
|
166
|
+
|
|
167
|
+
# The account's entity was not active.
|
|
168
|
+
ENTITY_NOT_ACTIVE: :entity_not_active
|
|
169
|
+
|
|
170
|
+
# The account was inactive.
|
|
171
|
+
GROUP_LOCKED: :group_locked
|
|
172
|
+
|
|
173
|
+
# The Card's Account did not have a sufficient available balance.
|
|
174
|
+
INSUFFICIENT_FUNDS: :insufficient_funds
|
|
175
|
+
|
|
176
|
+
# The given CVV2 did not match the card's value.
|
|
177
|
+
CVV2_MISMATCH: :cvv2_mismatch
|
|
178
|
+
|
|
179
|
+
# The given PIN did not match the card's value.
|
|
180
|
+
PIN_MISMATCH: :pin_mismatch
|
|
181
|
+
|
|
182
|
+
# The given expiration date did not match the card's value. Only applies when a CVV2 is present.
|
|
183
|
+
CARD_EXPIRATION_MISMATCH: :card_expiration_mismatch
|
|
184
|
+
|
|
185
|
+
# The attempted card transaction is not allowed per Increase's terms.
|
|
186
|
+
TRANSACTION_NOT_ALLOWED: :transaction_not_allowed
|
|
187
|
+
|
|
188
|
+
# The transaction was blocked by a Limit.
|
|
189
|
+
BREACHES_LIMIT: :breaches_limit
|
|
190
|
+
|
|
191
|
+
# Your application declined the transaction via webhook.
|
|
192
|
+
WEBHOOK_DECLINED: :webhook_declined
|
|
193
|
+
|
|
194
|
+
# Your application webhook did not respond without the required timeout.
|
|
195
|
+
WEBHOOK_TIMED_OUT: :webhook_timed_out
|
|
196
|
+
|
|
197
|
+
# Declined by stand-in processing.
|
|
198
|
+
DECLINED_BY_STAND_IN_PROCESSING: :declined_by_stand_in_processing
|
|
199
|
+
|
|
200
|
+
# The card read had an invalid CVV, dCVV, or authorization request cryptogram.
|
|
201
|
+
INVALID_PHYSICAL_CARD: :invalid_physical_card
|
|
202
|
+
|
|
203
|
+
# The original card authorization for this incremental authorization does not exist.
|
|
204
|
+
MISSING_ORIGINAL_AUTHORIZATION: :missing_original_authorization
|
|
205
|
+
|
|
206
|
+
# The transaction was declined because the 3DS authentication failed.
|
|
207
|
+
FAILED_3DS_AUTHENTICATION: :failed_3ds_authentication
|
|
208
|
+
|
|
209
|
+
# The transaction was suspected to be used by a card tester to test for valid card numbers.
|
|
210
|
+
SUSPECTED_CARD_TESTING: :suspected_card_testing
|
|
211
|
+
|
|
212
|
+
# The transaction was suspected to be fraudulent. Please reach out to support@increase.com for more information.
|
|
213
|
+
SUSPECTED_FRAUD: :suspected_fraud
|
|
214
|
+
|
|
215
|
+
def self?.values: -> ::Array[Increase::Models::Simulations::CardBalanceInquiryCreateParams::decline_reason]
|
|
216
|
+
end
|
|
217
|
+
|
|
218
|
+
type network_details =
|
|
219
|
+
{
|
|
220
|
+
visa: Increase::Simulations::CardBalanceInquiryCreateParams::NetworkDetails::Visa
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
class NetworkDetails < Increase::Internal::Type::BaseModel
|
|
224
|
+
attr_accessor visa: Increase::Simulations::CardBalanceInquiryCreateParams::NetworkDetails::Visa
|
|
225
|
+
|
|
226
|
+
def initialize: (
|
|
227
|
+
visa: Increase::Simulations::CardBalanceInquiryCreateParams::NetworkDetails::Visa
|
|
228
|
+
) -> void
|
|
229
|
+
|
|
230
|
+
def to_hash: -> {
|
|
231
|
+
visa: Increase::Simulations::CardBalanceInquiryCreateParams::NetworkDetails::Visa
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
type visa =
|
|
235
|
+
{
|
|
236
|
+
stand_in_processing_reason: Increase::Models::Simulations::CardBalanceInquiryCreateParams::NetworkDetails::Visa::stand_in_processing_reason
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
class Visa < Increase::Internal::Type::BaseModel
|
|
240
|
+
attr_reader stand_in_processing_reason: Increase::Models::Simulations::CardBalanceInquiryCreateParams::NetworkDetails::Visa::stand_in_processing_reason?
|
|
241
|
+
|
|
242
|
+
def stand_in_processing_reason=: (
|
|
243
|
+
Increase::Models::Simulations::CardBalanceInquiryCreateParams::NetworkDetails::Visa::stand_in_processing_reason
|
|
244
|
+
) -> Increase::Models::Simulations::CardBalanceInquiryCreateParams::NetworkDetails::Visa::stand_in_processing_reason
|
|
245
|
+
|
|
246
|
+
def initialize: (
|
|
247
|
+
?stand_in_processing_reason: Increase::Models::Simulations::CardBalanceInquiryCreateParams::NetworkDetails::Visa::stand_in_processing_reason
|
|
248
|
+
) -> void
|
|
249
|
+
|
|
250
|
+
def to_hash: -> {
|
|
251
|
+
stand_in_processing_reason: Increase::Models::Simulations::CardBalanceInquiryCreateParams::NetworkDetails::Visa::stand_in_processing_reason
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
type stand_in_processing_reason =
|
|
255
|
+
:issuer_error
|
|
256
|
+
| :invalid_physical_card
|
|
257
|
+
| :invalid_cardholder_authentication_verification_value
|
|
258
|
+
| :internal_visa_error
|
|
259
|
+
| :merchant_transaction_advisory_service_authentication_required
|
|
260
|
+
| :payment_fraud_disruption_acquirer_block
|
|
261
|
+
| :other
|
|
262
|
+
|
|
263
|
+
module StandInProcessingReason
|
|
264
|
+
extend Increase::Internal::Type::Enum
|
|
265
|
+
|
|
266
|
+
# Increase failed to process the authorization in a timely manner.
|
|
267
|
+
ISSUER_ERROR: :issuer_error
|
|
268
|
+
|
|
269
|
+
# The physical card read had an invalid CVV, dCVV, or authorization request cryptogram.
|
|
270
|
+
INVALID_PHYSICAL_CARD: :invalid_physical_card
|
|
271
|
+
|
|
272
|
+
# The 3DS cardholder authentication verification value was invalid.
|
|
273
|
+
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE: :invalid_cardholder_authentication_verification_value
|
|
274
|
+
|
|
275
|
+
# An internal Visa error occurred. Visa uses this reason code for certain expected occurrences as well, such as Application Transaction Counter (ATC) replays.
|
|
276
|
+
INTERNAL_VISA_ERROR: :internal_visa_error
|
|
277
|
+
|
|
278
|
+
# The merchant has enabled Visa's Transaction Advisory Service and requires further authentication to perform the transaction. In practice this is often utilized at fuel pumps to tell the cardholder to see the cashier.
|
|
279
|
+
MERCHANT_TRANSACTION_ADVISORY_SERVICE_AUTHENTICATION_REQUIRED: :merchant_transaction_advisory_service_authentication_required
|
|
280
|
+
|
|
281
|
+
# The transaction was blocked by Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior, such as card testing.
|
|
282
|
+
PAYMENT_FRAUD_DISRUPTION_ACQUIRER_BLOCK: :payment_fraud_disruption_acquirer_block
|
|
283
|
+
|
|
284
|
+
# An unspecific reason for stand-in processing.
|
|
285
|
+
OTHER: :other
|
|
286
|
+
|
|
287
|
+
def self?.values: -> ::Array[Increase::Models::Simulations::CardBalanceInquiryCreateParams::NetworkDetails::Visa::stand_in_processing_reason]
|
|
288
|
+
end
|
|
289
|
+
end
|
|
290
|
+
end
|
|
291
|
+
end
|
|
292
|
+
end
|
|
293
|
+
end
|
|
294
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
module Increase
|
|
2
|
+
module Resources
|
|
3
|
+
class Simulations
|
|
4
|
+
class CardBalanceInquiries
|
|
5
|
+
def create: (
|
|
6
|
+
?balance: Integer,
|
|
7
|
+
?card_id: String,
|
|
8
|
+
?decline_reason: Increase::Models::Simulations::CardBalanceInquiryCreateParams::decline_reason,
|
|
9
|
+
?digital_wallet_token_id: String,
|
|
10
|
+
?event_subscription_id: String,
|
|
11
|
+
?merchant_acceptor_id: String,
|
|
12
|
+
?merchant_category_code: String,
|
|
13
|
+
?merchant_city: String,
|
|
14
|
+
?merchant_country: String,
|
|
15
|
+
?merchant_descriptor: String,
|
|
16
|
+
?merchant_state: String,
|
|
17
|
+
?network_details: Increase::Simulations::CardBalanceInquiryCreateParams::NetworkDetails,
|
|
18
|
+
?network_risk_score: Integer,
|
|
19
|
+
?physical_card_id: String,
|
|
20
|
+
?terminal_id: String,
|
|
21
|
+
?request_options: Increase::request_opts
|
|
22
|
+
) -> Increase::CardPayment
|
|
23
|
+
|
|
24
|
+
def initialize: (client: Increase::Client) -> void
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -7,6 +7,8 @@ module Increase
|
|
|
7
7
|
|
|
8
8
|
attr_reader card_authorizations: Increase::Resources::Simulations::CardAuthorizations
|
|
9
9
|
|
|
10
|
+
attr_reader card_balance_inquiries: Increase::Resources::Simulations::CardBalanceInquiries
|
|
11
|
+
|
|
10
12
|
attr_reader card_authorization_expirations: Increase::Resources::Simulations::CardAuthorizationExpirations
|
|
11
13
|
|
|
12
14
|
attr_reader card_settlements: Increase::Resources::Simulations::CardSettlements
|
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.160.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
|
|
@@ -302,6 +302,7 @@ files:
|
|
|
302
302
|
- lib/increase/models/simulations/card_authorization_create_params.rb
|
|
303
303
|
- lib/increase/models/simulations/card_authorization_create_response.rb
|
|
304
304
|
- lib/increase/models/simulations/card_authorization_expiration_create_params.rb
|
|
305
|
+
- lib/increase/models/simulations/card_balance_inquiry_create_params.rb
|
|
305
306
|
- lib/increase/models/simulations/card_dispute_action_params.rb
|
|
306
307
|
- lib/increase/models/simulations/card_fuel_confirmation_create_params.rb
|
|
307
308
|
- lib/increase/models/simulations/card_increment_create_params.rb
|
|
@@ -407,6 +408,7 @@ files:
|
|
|
407
408
|
- lib/increase/resources/simulations/ach_transfers.rb
|
|
408
409
|
- lib/increase/resources/simulations/card_authorization_expirations.rb
|
|
409
410
|
- lib/increase/resources/simulations/card_authorizations.rb
|
|
411
|
+
- lib/increase/resources/simulations/card_balance_inquiries.rb
|
|
410
412
|
- lib/increase/resources/simulations/card_disputes.rb
|
|
411
413
|
- lib/increase/resources/simulations/card_fuel_confirmations.rb
|
|
412
414
|
- lib/increase/resources/simulations/card_increments.rb
|
|
@@ -704,6 +706,7 @@ files:
|
|
|
704
706
|
- rbi/increase/models/simulations/card_authorization_create_params.rbi
|
|
705
707
|
- rbi/increase/models/simulations/card_authorization_create_response.rbi
|
|
706
708
|
- rbi/increase/models/simulations/card_authorization_expiration_create_params.rbi
|
|
709
|
+
- rbi/increase/models/simulations/card_balance_inquiry_create_params.rbi
|
|
707
710
|
- rbi/increase/models/simulations/card_dispute_action_params.rbi
|
|
708
711
|
- rbi/increase/models/simulations/card_fuel_confirmation_create_params.rbi
|
|
709
712
|
- rbi/increase/models/simulations/card_increment_create_params.rbi
|
|
@@ -809,6 +812,7 @@ files:
|
|
|
809
812
|
- rbi/increase/resources/simulations/ach_transfers.rbi
|
|
810
813
|
- rbi/increase/resources/simulations/card_authorization_expirations.rbi
|
|
811
814
|
- rbi/increase/resources/simulations/card_authorizations.rbi
|
|
815
|
+
- rbi/increase/resources/simulations/card_balance_inquiries.rbi
|
|
812
816
|
- rbi/increase/resources/simulations/card_disputes.rbi
|
|
813
817
|
- rbi/increase/resources/simulations/card_fuel_confirmations.rbi
|
|
814
818
|
- rbi/increase/resources/simulations/card_increments.rbi
|
|
@@ -1105,6 +1109,7 @@ files:
|
|
|
1105
1109
|
- sig/increase/models/simulations/card_authorization_create_params.rbs
|
|
1106
1110
|
- sig/increase/models/simulations/card_authorization_create_response.rbs
|
|
1107
1111
|
- sig/increase/models/simulations/card_authorization_expiration_create_params.rbs
|
|
1112
|
+
- sig/increase/models/simulations/card_balance_inquiry_create_params.rbs
|
|
1108
1113
|
- sig/increase/models/simulations/card_dispute_action_params.rbs
|
|
1109
1114
|
- sig/increase/models/simulations/card_fuel_confirmation_create_params.rbs
|
|
1110
1115
|
- sig/increase/models/simulations/card_increment_create_params.rbs
|
|
@@ -1210,6 +1215,7 @@ files:
|
|
|
1210
1215
|
- sig/increase/resources/simulations/ach_transfers.rbs
|
|
1211
1216
|
- sig/increase/resources/simulations/card_authorization_expirations.rbs
|
|
1212
1217
|
- sig/increase/resources/simulations/card_authorizations.rbs
|
|
1218
|
+
- sig/increase/resources/simulations/card_balance_inquiries.rbs
|
|
1213
1219
|
- sig/increase/resources/simulations/card_disputes.rbs
|
|
1214
1220
|
- sig/increase/resources/simulations/card_fuel_confirmations.rbs
|
|
1215
1221
|
- sig/increase/resources/simulations/card_increments.rbs
|