increase 1.263.0 → 1.266.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 +196 -0
- data/README.md +1 -1
- data/lib/increase/models/card_token_capabilities.rb +9 -1
- data/lib/increase/models/declined_transaction.rb +9 -9
- data/lib/increase/models/inbound_mail_item_action_params.rb +4 -4
- data/lib/increase/models/inbound_real_time_payments_transfer.rb +9 -9
- data/lib/increase/models/real_time_payments_transfer.rb +22 -22
- data/lib/increase/models/real_time_payments_transfer_create_params.rb +29 -16
- data/lib/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rb +9 -9
- data/lib/increase/models/transaction.rb +29 -29
- data/lib/increase/resources/real_time_payments_transfers.rb +9 -5
- data/lib/increase/resources/simulations/inbound_real_time_payments_transfers.rb +3 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_token_capabilities.rbi +8 -0
- data/rbi/increase/models/declined_transaction.rbi +11 -11
- data/rbi/increase/models/inbound_mail_item_action_params.rbi +6 -6
- data/rbi/increase/models/inbound_real_time_payments_transfer.rbi +11 -11
- data/rbi/increase/models/real_time_payments_transfer.rbi +27 -27
- data/rbi/increase/models/real_time_payments_transfer_create_params.rbi +34 -18
- data/rbi/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rbi +11 -11
- data/rbi/increase/models/transaction.rbi +34 -34
- data/rbi/increase/resources/real_time_payments_transfers.rbi +11 -8
- data/rbi/increase/resources/simulations/inbound_real_time_payments_transfers.rbi +3 -3
- data/sig/increase/models/card_token_capabilities.rbs +5 -0
- data/sig/increase/models/declined_transaction.rbs +8 -8
- data/sig/increase/models/inbound_mail_item_action_params.rbs +5 -5
- data/sig/increase/models/inbound_real_time_payments_transfer.rbs +8 -8
- data/sig/increase/models/real_time_payments_transfer.rbs +17 -17
- data/sig/increase/models/real_time_payments_transfer_create_params.rbs +19 -5
- data/sig/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rbs +8 -8
- data/sig/increase/models/transaction.rbs +25 -25
- data/sig/increase/resources/real_time_payments_transfers.rbs +3 -1
- data/sig/increase/resources/simulations/inbound_real_time_payments_transfers.rbs +1 -1
- metadata +2 -2
|
@@ -8,8 +8,8 @@ module Increase
|
|
|
8
8
|
debtor_account_number: String,
|
|
9
9
|
debtor_name: String,
|
|
10
10
|
debtor_routing_number: String,
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
request_for_payment_id: String,
|
|
12
|
+
unstructured_remittance_information: String
|
|
13
13
|
}
|
|
14
14
|
& Increase::Internal::Type::request_parameters
|
|
15
15
|
|
|
@@ -33,22 +33,22 @@ module Increase
|
|
|
33
33
|
|
|
34
34
|
def debtor_routing_number=: (String) -> String
|
|
35
35
|
|
|
36
|
-
attr_reader remittance_information: String?
|
|
37
|
-
|
|
38
|
-
def remittance_information=: (String) -> String
|
|
39
|
-
|
|
40
36
|
attr_reader request_for_payment_id: String?
|
|
41
37
|
|
|
42
38
|
def request_for_payment_id=: (String) -> String
|
|
43
39
|
|
|
40
|
+
attr_reader unstructured_remittance_information: String?
|
|
41
|
+
|
|
42
|
+
def unstructured_remittance_information=: (String) -> String
|
|
43
|
+
|
|
44
44
|
def initialize: (
|
|
45
45
|
account_number_id: String,
|
|
46
46
|
amount: Integer,
|
|
47
47
|
?debtor_account_number: String,
|
|
48
48
|
?debtor_name: String,
|
|
49
49
|
?debtor_routing_number: String,
|
|
50
|
-
?remittance_information: String,
|
|
51
50
|
?request_for_payment_id: String,
|
|
51
|
+
?unstructured_remittance_information: String,
|
|
52
52
|
?request_options: Increase::request_opts
|
|
53
53
|
) -> void
|
|
54
54
|
|
|
@@ -58,8 +58,8 @@ module Increase
|
|
|
58
58
|
debtor_account_number: String,
|
|
59
59
|
debtor_name: String,
|
|
60
60
|
debtor_routing_number: String,
|
|
61
|
-
remittance_information: String,
|
|
62
61
|
request_for_payment_id: String,
|
|
62
|
+
unstructured_remittance_information: String,
|
|
63
63
|
request_options: Increase::RequestOptions
|
|
64
64
|
}
|
|
65
65
|
end
|
|
@@ -4653,9 +4653,9 @@ module Increase
|
|
|
4653
4653
|
debtor_account_number: String,
|
|
4654
4654
|
debtor_name: String,
|
|
4655
4655
|
debtor_routing_number: String,
|
|
4656
|
-
remittance_information: String?,
|
|
4657
4656
|
transaction_identification: String,
|
|
4658
|
-
transfer_id: String
|
|
4657
|
+
transfer_id: String,
|
|
4658
|
+
unstructured_remittance_information: String?
|
|
4659
4659
|
}
|
|
4660
4660
|
|
|
4661
4661
|
class InboundRealTimePaymentsTransferConfirmation < Increase::Internal::Type::BaseModel
|
|
@@ -4671,12 +4671,12 @@ module Increase
|
|
|
4671
4671
|
|
|
4672
4672
|
attr_accessor debtor_routing_number: String
|
|
4673
4673
|
|
|
4674
|
-
attr_accessor remittance_information: String?
|
|
4675
|
-
|
|
4676
4674
|
attr_accessor transaction_identification: String
|
|
4677
4675
|
|
|
4678
4676
|
attr_accessor transfer_id: String
|
|
4679
4677
|
|
|
4678
|
+
attr_accessor unstructured_remittance_information: String?
|
|
4679
|
+
|
|
4680
4680
|
def initialize: (
|
|
4681
4681
|
amount: Integer,
|
|
4682
4682
|
creditor_name: String,
|
|
@@ -4684,9 +4684,9 @@ module Increase
|
|
|
4684
4684
|
debtor_account_number: String,
|
|
4685
4685
|
debtor_name: String,
|
|
4686
4686
|
debtor_routing_number: String,
|
|
4687
|
-
remittance_information: String?,
|
|
4688
4687
|
transaction_identification: String,
|
|
4689
|
-
transfer_id: String
|
|
4688
|
+
transfer_id: String,
|
|
4689
|
+
unstructured_remittance_information: String?
|
|
4690
4690
|
) -> void
|
|
4691
4691
|
|
|
4692
4692
|
def to_hash: -> {
|
|
@@ -4696,9 +4696,9 @@ module Increase
|
|
|
4696
4696
|
debtor_account_number: String,
|
|
4697
4697
|
debtor_name: String,
|
|
4698
4698
|
debtor_routing_number: String,
|
|
4699
|
-
remittance_information: String?,
|
|
4700
4699
|
transaction_identification: String,
|
|
4701
|
-
transfer_id: String
|
|
4700
|
+
transfer_id: String,
|
|
4701
|
+
unstructured_remittance_information: String?
|
|
4702
4702
|
}
|
|
4703
4703
|
|
|
4704
4704
|
type currency = :USD
|
|
@@ -5079,38 +5079,38 @@ module Increase
|
|
|
5079
5079
|
|
|
5080
5080
|
type real_time_payments_transfer_acknowledgement =
|
|
5081
5081
|
{
|
|
5082
|
+
account_number: String,
|
|
5082
5083
|
amount: Integer,
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
|
-
transfer_id: String
|
|
5084
|
+
routing_number: String,
|
|
5085
|
+
transfer_id: String,
|
|
5086
|
+
unstructured_remittance_information: String
|
|
5087
5087
|
}
|
|
5088
5088
|
|
|
5089
5089
|
class RealTimePaymentsTransferAcknowledgement < Increase::Internal::Type::BaseModel
|
|
5090
|
-
attr_accessor
|
|
5091
|
-
|
|
5092
|
-
attr_accessor destination_account_number: String
|
|
5090
|
+
attr_accessor account_number: String
|
|
5093
5091
|
|
|
5094
|
-
attr_accessor
|
|
5092
|
+
attr_accessor amount: Integer
|
|
5095
5093
|
|
|
5096
|
-
attr_accessor
|
|
5094
|
+
attr_accessor routing_number: String
|
|
5097
5095
|
|
|
5098
5096
|
attr_accessor transfer_id: String
|
|
5099
5097
|
|
|
5098
|
+
attr_accessor unstructured_remittance_information: String
|
|
5099
|
+
|
|
5100
5100
|
def initialize: (
|
|
5101
|
+
account_number: String,
|
|
5101
5102
|
amount: Integer,
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5105
|
-
transfer_id: String
|
|
5103
|
+
routing_number: String,
|
|
5104
|
+
transfer_id: String,
|
|
5105
|
+
unstructured_remittance_information: String
|
|
5106
5106
|
) -> void
|
|
5107
5107
|
|
|
5108
5108
|
def to_hash: -> {
|
|
5109
|
+
account_number: String,
|
|
5109
5110
|
amount: Integer,
|
|
5110
|
-
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
transfer_id: String
|
|
5111
|
+
routing_number: String,
|
|
5112
|
+
transfer_id: String,
|
|
5113
|
+
unstructured_remittance_information: String
|
|
5114
5114
|
}
|
|
5115
5115
|
end
|
|
5116
5116
|
|
|
@@ -4,13 +4,15 @@ module Increase
|
|
|
4
4
|
def create: (
|
|
5
5
|
amount: Integer,
|
|
6
6
|
creditor_name: String,
|
|
7
|
-
remittance_information: String,
|
|
8
7
|
source_account_number_id: String,
|
|
8
|
+
unstructured_remittance_information: String,
|
|
9
|
+
?account_number: String,
|
|
9
10
|
?debtor_name: String,
|
|
10
11
|
?destination_account_number: String,
|
|
11
12
|
?destination_routing_number: String,
|
|
12
13
|
?external_account_id: String,
|
|
13
14
|
?require_approval: bool,
|
|
15
|
+
?routing_number: String,
|
|
14
16
|
?ultimate_creditor_name: String,
|
|
15
17
|
?ultimate_debtor_name: String,
|
|
16
18
|
?request_options: Increase::request_opts
|
|
@@ -8,8 +8,8 @@ module Increase
|
|
|
8
8
|
?debtor_account_number: String,
|
|
9
9
|
?debtor_name: String,
|
|
10
10
|
?debtor_routing_number: String,
|
|
11
|
-
?remittance_information: String,
|
|
12
11
|
?request_for_payment_id: String,
|
|
12
|
+
?unstructured_remittance_information: String,
|
|
13
13
|
?request_options: Increase::request_opts
|
|
14
14
|
) -> Increase::InboundRealTimePaymentsTransfer
|
|
15
15
|
|
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.266.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-
|
|
11
|
+
date: 2026-03-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|