increase 1.44.0 → 1.46.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/transaction.rb +69 -253
- data/lib/increase/models/transaction_list_params.rb +0 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/transaction.rbi +89 -404
- data/rbi/increase/models/transaction_list_params.rbi +0 -7
- data/sig/increase/models/transaction.rbs +58 -197
- data/sig/increase/models/transaction_list_params.rbs +0 -4
- metadata +2 -2
@@ -128,7 +128,6 @@ module Increase
|
|
128
128
|
inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
|
129
129
|
inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
|
130
130
|
inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
|
131
|
-
inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?,
|
132
131
|
inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
|
133
132
|
inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
|
134
133
|
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
@@ -187,8 +186,6 @@ module Increase
|
|
187
186
|
|
188
187
|
attr_accessor inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?
|
189
188
|
|
190
|
-
attr_accessor inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?
|
191
|
-
|
192
189
|
attr_accessor inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?
|
193
190
|
|
194
191
|
attr_accessor inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?
|
@@ -234,7 +231,6 @@ module Increase
|
|
234
231
|
inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
|
235
232
|
inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
|
236
233
|
inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
|
237
|
-
inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?,
|
238
234
|
inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
|
239
235
|
inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
|
240
236
|
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
@@ -271,7 +267,6 @@ module Increase
|
|
271
267
|
inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
|
272
268
|
inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
|
273
269
|
inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
|
274
|
-
inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?,
|
275
270
|
inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
|
276
271
|
inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
|
277
272
|
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
@@ -3108,7 +3103,6 @@ module Increase
|
|
3108
3103
|
| :inbound_check_deposit_return_intention
|
3109
3104
|
| :inbound_check_adjustment
|
3110
3105
|
| :inbound_real_time_payments_transfer_confirmation
|
3111
|
-
| :inbound_real_time_payments_transfer_decline
|
3112
3106
|
| :inbound_wire_reversal
|
3113
3107
|
| :inbound_wire_transfer
|
3114
3108
|
| :inbound_wire_transfer_reversal
|
@@ -3185,9 +3179,6 @@ module Increase
|
|
3185
3179
|
# Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
|
3186
3180
|
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION: :inbound_real_time_payments_transfer_confirmation
|
3187
3181
|
|
3188
|
-
# Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
|
3189
|
-
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE: :inbound_real_time_payments_transfer_decline
|
3190
|
-
|
3191
3182
|
# Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.
|
3192
3183
|
INBOUND_WIRE_REVERSAL: :inbound_wire_reversal
|
3193
3184
|
|
@@ -3891,126 +3882,6 @@ module Increase
|
|
3891
3882
|
end
|
3892
3883
|
end
|
3893
3884
|
|
3894
|
-
type inbound_real_time_payments_transfer_decline =
|
3895
|
-
{
|
3896
|
-
amount: Integer,
|
3897
|
-
creditor_name: String,
|
3898
|
-
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency,
|
3899
|
-
debtor_account_number: String,
|
3900
|
-
debtor_name: String,
|
3901
|
-
debtor_routing_number: String,
|
3902
|
-
reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
3903
|
-
remittance_information: String?,
|
3904
|
-
transaction_identification: String,
|
3905
|
-
transfer_id: String
|
3906
|
-
}
|
3907
|
-
|
3908
|
-
class InboundRealTimePaymentsTransferDecline < Increase::Internal::Type::BaseModel
|
3909
|
-
attr_accessor amount: Integer
|
3910
|
-
|
3911
|
-
attr_accessor creditor_name: String
|
3912
|
-
|
3913
|
-
attr_accessor currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency
|
3914
|
-
|
3915
|
-
attr_accessor debtor_account_number: String
|
3916
|
-
|
3917
|
-
attr_accessor debtor_name: String
|
3918
|
-
|
3919
|
-
attr_accessor debtor_routing_number: String
|
3920
|
-
|
3921
|
-
attr_accessor reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason
|
3922
|
-
|
3923
|
-
attr_accessor remittance_information: String?
|
3924
|
-
|
3925
|
-
attr_accessor transaction_identification: String
|
3926
|
-
|
3927
|
-
attr_accessor transfer_id: String
|
3928
|
-
|
3929
|
-
def initialize: (
|
3930
|
-
amount: Integer,
|
3931
|
-
creditor_name: String,
|
3932
|
-
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency,
|
3933
|
-
debtor_account_number: String,
|
3934
|
-
debtor_name: String,
|
3935
|
-
debtor_routing_number: String,
|
3936
|
-
reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
3937
|
-
remittance_information: String?,
|
3938
|
-
transaction_identification: String,
|
3939
|
-
transfer_id: String
|
3940
|
-
) -> void
|
3941
|
-
|
3942
|
-
def to_hash: -> {
|
3943
|
-
amount: Integer,
|
3944
|
-
creditor_name: String,
|
3945
|
-
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency,
|
3946
|
-
debtor_account_number: String,
|
3947
|
-
debtor_name: String,
|
3948
|
-
debtor_routing_number: String,
|
3949
|
-
reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
3950
|
-
remittance_information: String?,
|
3951
|
-
transaction_identification: String,
|
3952
|
-
transfer_id: String
|
3953
|
-
}
|
3954
|
-
|
3955
|
-
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
3956
|
-
|
3957
|
-
module Currency
|
3958
|
-
extend Increase::Internal::Type::Enum
|
3959
|
-
|
3960
|
-
# Canadian Dollar (CAD)
|
3961
|
-
CAD: :CAD
|
3962
|
-
|
3963
|
-
# Swiss Franc (CHF)
|
3964
|
-
CHF: :CHF
|
3965
|
-
|
3966
|
-
# Euro (EUR)
|
3967
|
-
EUR: :EUR
|
3968
|
-
|
3969
|
-
# British Pound (GBP)
|
3970
|
-
GBP: :GBP
|
3971
|
-
|
3972
|
-
# Japanese Yen (JPY)
|
3973
|
-
JPY: :JPY
|
3974
|
-
|
3975
|
-
# US Dollar (USD)
|
3976
|
-
USD: :USD
|
3977
|
-
|
3978
|
-
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency]
|
3979
|
-
end
|
3980
|
-
|
3981
|
-
type reason =
|
3982
|
-
:account_number_canceled
|
3983
|
-
| :account_number_disabled
|
3984
|
-
| :account_restricted
|
3985
|
-
| :group_locked
|
3986
|
-
| :entity_not_active
|
3987
|
-
| :real_time_payments_not_enabled
|
3988
|
-
|
3989
|
-
module Reason
|
3990
|
-
extend Increase::Internal::Type::Enum
|
3991
|
-
|
3992
|
-
# The account number is canceled.
|
3993
|
-
ACCOUNT_NUMBER_CANCELED: :account_number_canceled
|
3994
|
-
|
3995
|
-
# The account number is disabled.
|
3996
|
-
ACCOUNT_NUMBER_DISABLED: :account_number_disabled
|
3997
|
-
|
3998
|
-
# Your account is restricted.
|
3999
|
-
ACCOUNT_RESTRICTED: :account_restricted
|
4000
|
-
|
4001
|
-
# Your account is inactive.
|
4002
|
-
GROUP_LOCKED: :group_locked
|
4003
|
-
|
4004
|
-
# The account's entity is not active.
|
4005
|
-
ENTITY_NOT_ACTIVE: :entity_not_active
|
4006
|
-
|
4007
|
-
# Your account is not enabled to receive Real-Time Payments transfers.
|
4008
|
-
REAL_TIME_PAYMENTS_NOT_ENABLED: :real_time_payments_not_enabled
|
4009
|
-
|
4010
|
-
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason]
|
4011
|
-
end
|
4012
|
-
end
|
4013
|
-
|
4014
3885
|
type inbound_wire_reversal =
|
4015
3886
|
{
|
4016
3887
|
amount: Integer,
|
@@ -4116,107 +3987,97 @@ module Increase
|
|
4116
3987
|
type inbound_wire_transfer =
|
4117
3988
|
{
|
4118
3989
|
amount: Integer,
|
4119
|
-
:
|
4120
|
-
:
|
4121
|
-
:
|
4122
|
-
|
4123
|
-
|
3990
|
+
:creditor_address_line1 => String?,
|
3991
|
+
:creditor_address_line2 => String?,
|
3992
|
+
:creditor_address_line3 => String?,
|
3993
|
+
creditor_name: String?,
|
3994
|
+
:debtor_address_line1 => String?,
|
3995
|
+
:debtor_address_line2 => String?,
|
3996
|
+
:debtor_address_line3 => String?,
|
3997
|
+
debtor_name: String?,
|
4124
3998
|
description: String,
|
3999
|
+
end_to_end_identification: String?,
|
4125
4000
|
input_message_accountability_data: String?,
|
4126
|
-
:
|
4127
|
-
:
|
4128
|
-
:
|
4129
|
-
|
4130
|
-
|
4131
|
-
originator_to_beneficiary_information: String?,
|
4132
|
-
:originator_to_beneficiary_information_line1 => String?,
|
4133
|
-
:originator_to_beneficiary_information_line2 => String?,
|
4134
|
-
:originator_to_beneficiary_information_line3 => String?,
|
4135
|
-
:originator_to_beneficiary_information_line4 => String?,
|
4136
|
-
transfer_id: String
|
4001
|
+
instructing_agent_routing_number: String?,
|
4002
|
+
instruction_identification: String?,
|
4003
|
+
transfer_id: String,
|
4004
|
+
unique_end_to_end_transaction_reference: String?,
|
4005
|
+
unstructured_remittance_information: String?
|
4137
4006
|
}
|
4138
4007
|
|
4139
4008
|
class InboundWireTransfer < Increase::Internal::Type::BaseModel
|
4140
4009
|
attr_accessor amount: Integer
|
4141
4010
|
|
4142
|
-
attr_accessor
|
4011
|
+
attr_accessor creditor_address_line1: String?
|
4143
4012
|
|
4144
|
-
attr_accessor
|
4013
|
+
attr_accessor creditor_address_line2: String?
|
4145
4014
|
|
4146
|
-
attr_accessor
|
4015
|
+
attr_accessor creditor_address_line3: String?
|
4147
4016
|
|
4148
|
-
attr_accessor
|
4017
|
+
attr_accessor creditor_name: String?
|
4149
4018
|
|
4150
|
-
attr_accessor
|
4019
|
+
attr_accessor debtor_address_line1: String?
|
4151
4020
|
|
4152
|
-
attr_accessor
|
4153
|
-
|
4154
|
-
attr_accessor input_message_accountability_data: String?
|
4021
|
+
attr_accessor debtor_address_line2: String?
|
4155
4022
|
|
4156
|
-
attr_accessor
|
4023
|
+
attr_accessor debtor_address_line3: String?
|
4157
4024
|
|
4158
|
-
attr_accessor
|
4025
|
+
attr_accessor debtor_name: String?
|
4159
4026
|
|
4160
|
-
attr_accessor
|
4161
|
-
|
4162
|
-
attr_accessor originator_name: String?
|
4027
|
+
attr_accessor description: String
|
4163
4028
|
|
4164
|
-
attr_accessor
|
4029
|
+
attr_accessor end_to_end_identification: String?
|
4165
4030
|
|
4166
|
-
attr_accessor
|
4031
|
+
attr_accessor input_message_accountability_data: String?
|
4167
4032
|
|
4168
|
-
attr_accessor
|
4033
|
+
attr_accessor instructing_agent_routing_number: String?
|
4169
4034
|
|
4170
|
-
attr_accessor
|
4035
|
+
attr_accessor instruction_identification: String?
|
4171
4036
|
|
4172
|
-
attr_accessor
|
4037
|
+
attr_accessor transfer_id: String
|
4173
4038
|
|
4174
|
-
attr_accessor
|
4039
|
+
attr_accessor unique_end_to_end_transaction_reference: String?
|
4175
4040
|
|
4176
|
-
attr_accessor
|
4041
|
+
attr_accessor unstructured_remittance_information: String?
|
4177
4042
|
|
4178
4043
|
def initialize: (
|
4179
4044
|
amount: Integer,
|
4180
|
-
|
4181
|
-
|
4182
|
-
|
4183
|
-
|
4184
|
-
|
4045
|
+
creditor_address_line1: String?,
|
4046
|
+
creditor_address_line2: String?,
|
4047
|
+
creditor_address_line3: String?,
|
4048
|
+
creditor_name: String?,
|
4049
|
+
debtor_address_line1: String?,
|
4050
|
+
debtor_address_line2: String?,
|
4051
|
+
debtor_address_line3: String?,
|
4052
|
+
debtor_name: String?,
|
4185
4053
|
description: String,
|
4054
|
+
end_to_end_identification: String?,
|
4186
4055
|
input_message_accountability_data: String?,
|
4187
|
-
|
4188
|
-
|
4189
|
-
|
4190
|
-
|
4191
|
-
|
4192
|
-
originator_to_beneficiary_information: String?,
|
4193
|
-
originator_to_beneficiary_information_line1: String?,
|
4194
|
-
originator_to_beneficiary_information_line2: String?,
|
4195
|
-
originator_to_beneficiary_information_line3: String?,
|
4196
|
-
originator_to_beneficiary_information_line4: String?,
|
4197
|
-
transfer_id: String
|
4056
|
+
instructing_agent_routing_number: String?,
|
4057
|
+
instruction_identification: String?,
|
4058
|
+
transfer_id: String,
|
4059
|
+
unique_end_to_end_transaction_reference: String?,
|
4060
|
+
unstructured_remittance_information: String?
|
4198
4061
|
) -> void
|
4199
4062
|
|
4200
4063
|
def to_hash: -> {
|
4201
4064
|
amount: Integer,
|
4202
|
-
:
|
4203
|
-
:
|
4204
|
-
:
|
4205
|
-
|
4206
|
-
|
4065
|
+
:creditor_address_line1 => String?,
|
4066
|
+
:creditor_address_line2 => String?,
|
4067
|
+
:creditor_address_line3 => String?,
|
4068
|
+
creditor_name: String?,
|
4069
|
+
:debtor_address_line1 => String?,
|
4070
|
+
:debtor_address_line2 => String?,
|
4071
|
+
:debtor_address_line3 => String?,
|
4072
|
+
debtor_name: String?,
|
4207
4073
|
description: String,
|
4074
|
+
end_to_end_identification: String?,
|
4208
4075
|
input_message_accountability_data: String?,
|
4209
|
-
:
|
4210
|
-
:
|
4211
|
-
:
|
4212
|
-
|
4213
|
-
|
4214
|
-
originator_to_beneficiary_information: String?,
|
4215
|
-
:originator_to_beneficiary_information_line1 => String?,
|
4216
|
-
:originator_to_beneficiary_information_line2 => String?,
|
4217
|
-
:originator_to_beneficiary_information_line3 => String?,
|
4218
|
-
:originator_to_beneficiary_information_line4 => String?,
|
4219
|
-
transfer_id: String
|
4076
|
+
instructing_agent_routing_number: String?,
|
4077
|
+
instruction_identification: String?,
|
4078
|
+
transfer_id: String,
|
4079
|
+
unique_end_to_end_transaction_reference: String?,
|
4080
|
+
unstructured_remittance_information: String?
|
4220
4081
|
}
|
4221
4082
|
end
|
4222
4083
|
|
@@ -102,7 +102,6 @@ module Increase
|
|
102
102
|
| :inbound_check_deposit_return_intention
|
103
103
|
| :inbound_check_adjustment
|
104
104
|
| :inbound_real_time_payments_transfer_confirmation
|
105
|
-
| :inbound_real_time_payments_transfer_decline
|
106
105
|
| :inbound_wire_reversal
|
107
106
|
| :inbound_wire_transfer
|
108
107
|
| :inbound_wire_transfer_reversal
|
@@ -179,9 +178,6 @@ module Increase
|
|
179
178
|
# Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
|
180
179
|
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION: :inbound_real_time_payments_transfer_confirmation
|
181
180
|
|
182
|
-
# Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
|
183
|
-
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE: :inbound_real_time_payments_transfer_decline
|
184
|
-
|
185
181
|
# Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.
|
186
182
|
INBOUND_WIRE_REVERSAL: :inbound_wire_reversal
|
187
183
|
|
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.46.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Increase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|