increase 1.43.0 → 1.45.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a57ecc770225bdbc7ba167bd392716d0f6efbbb2ce0604171ffa148fc71dfe02
4
- data.tar.gz: c5f76210785aa79edd64949f3faa3c28e7a88b8e94b160ff3da39fd145f09592
3
+ metadata.gz: 431395a873284959b6ee1cec56827151e085e2b449210cbcd723f1ebbf66f179
4
+ data.tar.gz: fcd70add2911e34f155c3ae03650b5319a30c8e46c3d0735a4c81fa7acd838e8
5
5
  SHA512:
6
- metadata.gz: 4f361daa77d03aa58f84957a9674ab3dba80e5a0ac84951080782a11b606c41071cecc4aceac8db26b57d30b1477ac5c611eaefb4194f3e9b23495e57aa693d7
7
- data.tar.gz: '08a099bd8c76075d018b4959e9cb41c5522f9690c59e0bd1ce9ee34c03f5a19630b2195c6a3f08a8b26bb0c34e98632ca0c537703f7b31c83e67a1f0a5d4ed95'
6
+ metadata.gz: cdd9893bc8e7146d3bca680e7f2dd32a67f67049ecb936026886d8aacb722a9ec502e7b6e95bafa72a08a446e5d8f44107d7a774a985e5bce03032d665893027
7
+ data.tar.gz: 80dc84c9f1e51ecb046e1e578be197c2c29db3c161a74ca91e78fe01a7823c9df4ccfd56b94366d9458a7ff4c780cbcc6186840e67e2c952a5da63bbf9a73661
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.45.0 (2025-08-21)
4
+
5
+ Full Changelog: [v1.44.0...v1.45.0](https://github.com/Increase/increase-ruby/compare/v1.44.0...v1.45.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([080fb56](https://github.com/Increase/increase-ruby/commit/080fb56c431f8d633420675e0a22759401d22b85))
10
+
11
+ ## 1.44.0 (2025-08-21)
12
+
13
+ Full Changelog: [v1.43.0...v1.44.0](https://github.com/Increase/increase-ruby/compare/v1.43.0...v1.44.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([fa432d1](https://github.com/Increase/increase-ruby/commit/fa432d119fbd419cfe50893ed6e2609ebef760cb))
18
+
3
19
  ## 1.43.0 (2025-08-20)
4
20
 
5
21
  Full Changelog: [v1.42.0...v1.43.0](https://github.com/Increase/increase-ruby/compare/v1.42.0...v1.43.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.43.0"
18
+ gem "increase", "~> 1.45.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -20,110 +20,96 @@ module Increase
20
20
  # @return [Integer]
21
21
  required :amount, Integer
22
22
 
23
- # @!attribute beneficiary_address_line1
24
- # The sending bank will set beneficiary_address_line1 in production. You can
25
- # simulate any value here.
23
+ # @!attribute creditor_address_line1
24
+ # The sending bank will set creditor_address_line1 in production. You can simulate
25
+ # any value here.
26
26
  #
27
27
  # @return [String, nil]
28
- optional :beneficiary_address_line1, String
28
+ optional :creditor_address_line1, String
29
29
 
30
- # @!attribute beneficiary_address_line2
31
- # The sending bank will set beneficiary_address_line2 in production. You can
32
- # simulate any value here.
30
+ # @!attribute creditor_address_line2
31
+ # The sending bank will set creditor_address_line2 in production. You can simulate
32
+ # any value here.
33
33
  #
34
34
  # @return [String, nil]
35
- optional :beneficiary_address_line2, String
35
+ optional :creditor_address_line2, String
36
36
 
37
- # @!attribute beneficiary_address_line3
38
- # The sending bank will set beneficiary_address_line3 in production. You can
39
- # simulate any value here.
37
+ # @!attribute creditor_address_line3
38
+ # The sending bank will set creditor_address_line3 in production. You can simulate
39
+ # any value here.
40
40
  #
41
41
  # @return [String, nil]
42
- optional :beneficiary_address_line3, String
42
+ optional :creditor_address_line3, String
43
43
 
44
- # @!attribute beneficiary_name
45
- # The sending bank will set beneficiary_name in production. You can simulate any
44
+ # @!attribute creditor_name
45
+ # The sending bank will set creditor_name in production. You can simulate any
46
46
  # value here.
47
47
  #
48
48
  # @return [String, nil]
49
- optional :beneficiary_name, String
49
+ optional :creditor_name, String
50
50
 
51
- # @!attribute beneficiary_reference
52
- # The sending bank will set beneficiary_reference in production. You can simulate
51
+ # @!attribute debtor_address_line1
52
+ # The sending bank will set debtor_address_line1 in production. You can simulate
53
53
  # any value here.
54
54
  #
55
55
  # @return [String, nil]
56
- optional :beneficiary_reference, String
56
+ optional :debtor_address_line1, String
57
57
 
58
- # @!attribute originator_address_line1
59
- # The sending bank will set originator_address_line1 in production. You can
60
- # simulate any value here.
61
- #
62
- # @return [String, nil]
63
- optional :originator_address_line1, String
64
-
65
- # @!attribute originator_address_line2
66
- # The sending bank will set originator_address_line2 in production. You can
67
- # simulate any value here.
58
+ # @!attribute debtor_address_line2
59
+ # The sending bank will set debtor_address_line2 in production. You can simulate
60
+ # any value here.
68
61
  #
69
62
  # @return [String, nil]
70
- optional :originator_address_line2, String
63
+ optional :debtor_address_line2, String
71
64
 
72
- # @!attribute originator_address_line3
73
- # The sending bank will set originator_address_line3 in production. You can
74
- # simulate any value here.
65
+ # @!attribute debtor_address_line3
66
+ # The sending bank will set debtor_address_line3 in production. You can simulate
67
+ # any value here.
75
68
  #
76
69
  # @return [String, nil]
77
- optional :originator_address_line3, String
70
+ optional :debtor_address_line3, String
78
71
 
79
- # @!attribute originator_name
80
- # The sending bank will set originator_name in production. You can simulate any
81
- # value here.
72
+ # @!attribute debtor_name
73
+ # The sending bank will set debtor_name in production. You can simulate any value
74
+ # here.
82
75
  #
83
76
  # @return [String, nil]
84
- optional :originator_name, String
77
+ optional :debtor_name, String
85
78
 
86
- # @!attribute originator_routing_number
87
- # The sending bank will set originator_routing_number in production. You can
79
+ # @!attribute end_to_end_identification
80
+ # The sending bank will set end_to_end_identification in production. You can
88
81
  # simulate any value here.
89
82
  #
90
83
  # @return [String, nil]
91
- optional :originator_routing_number, String
84
+ optional :end_to_end_identification, String
92
85
 
93
- # @!attribute originator_to_beneficiary_information_line1
94
- # The sending bank will set originator_to_beneficiary_information_line1 in
95
- # production. You can simulate any value here.
86
+ # @!attribute instructing_agent_routing_number
87
+ # The sending bank will set instructing_agent_routing_number in production. You
88
+ # can simulate any value here.
96
89
  #
97
90
  # @return [String, nil]
98
- optional :originator_to_beneficiary_information_line1, String
91
+ optional :instructing_agent_routing_number, String
99
92
 
100
- # @!attribute originator_to_beneficiary_information_line2
101
- # The sending bank will set originator_to_beneficiary_information_line2 in
102
- # production. You can simulate any value here.
103
- #
104
- # @return [String, nil]
105
- optional :originator_to_beneficiary_information_line2, String
106
-
107
- # @!attribute originator_to_beneficiary_information_line3
108
- # The sending bank will set originator_to_beneficiary_information_line3 in
109
- # production. You can simulate any value here.
93
+ # @!attribute instruction_identification
94
+ # The sending bank will set instruction_identification in production. You can
95
+ # simulate any value here.
110
96
  #
111
97
  # @return [String, nil]
112
- optional :originator_to_beneficiary_information_line3, String
98
+ optional :instruction_identification, String
113
99
 
114
- # @!attribute originator_to_beneficiary_information_line4
115
- # The sending bank will set originator_to_beneficiary_information_line4 in
116
- # production. You can simulate any value here.
100
+ # @!attribute unique_end_to_end_transaction_reference
101
+ # The sending bank will set unique_end_to_end_transaction_reference in production.
102
+ # You can simulate any value here.
117
103
  #
118
104
  # @return [String, nil]
119
- optional :originator_to_beneficiary_information_line4, String
105
+ optional :unique_end_to_end_transaction_reference, String
120
106
 
121
- # @!attribute sender_reference
122
- # The sending bank will set sender_reference in production. You can simulate any
123
- # value here.
107
+ # @!attribute unstructured_remittance_information
108
+ # The sending bank will set unstructured_remittance_information in production. You
109
+ # can simulate any value here.
124
110
  #
125
111
  # @return [String, nil]
126
- optional :sender_reference, String
112
+ optional :unstructured_remittance_information, String
127
113
 
128
114
  # @!attribute wire_drawdown_request_id
129
115
  # The identifier of a Wire Drawdown Request the inbound Wire Transfer is
@@ -132,7 +118,7 @@ module Increase
132
118
  # @return [String, nil]
133
119
  optional :wire_drawdown_request_id, String
134
120
 
135
- # @!method initialize(account_number_id:, amount:, beneficiary_address_line1: nil, beneficiary_address_line2: nil, beneficiary_address_line3: nil, beneficiary_name: nil, beneficiary_reference: nil, originator_address_line1: nil, originator_address_line2: nil, originator_address_line3: nil, originator_name: nil, originator_routing_number: nil, originator_to_beneficiary_information_line1: nil, originator_to_beneficiary_information_line2: nil, originator_to_beneficiary_information_line3: nil, originator_to_beneficiary_information_line4: nil, sender_reference: nil, wire_drawdown_request_id: nil, request_options: {})
121
+ # @!method initialize(account_number_id:, amount:, creditor_address_line1: nil, creditor_address_line2: nil, creditor_address_line3: nil, creditor_name: nil, debtor_address_line1: nil, debtor_address_line2: nil, debtor_address_line3: nil, debtor_name: nil, end_to_end_identification: nil, instructing_agent_routing_number: nil, instruction_identification: nil, unique_end_to_end_transaction_reference: nil, unstructured_remittance_information: nil, wire_drawdown_request_id: nil, request_options: {})
136
122
  # Some parameter documentations has been truncated, see
137
123
  # {Increase::Models::Simulations::InboundWireTransferCreateParams} for more
138
124
  # details.
@@ -141,35 +127,31 @@ module Increase
141
127
  #
142
128
  # @param amount [Integer] The transfer amount in cents. Must be positive.
143
129
  #
144
- # @param beneficiary_address_line1 [String] The sending bank will set beneficiary_address_line1 in production. You can simul
145
- #
146
- # @param beneficiary_address_line2 [String] The sending bank will set beneficiary_address_line2 in production. You can simul
147
- #
148
- # @param beneficiary_address_line3 [String] The sending bank will set beneficiary_address_line3 in production. You can simul
130
+ # @param creditor_address_line1 [String] The sending bank will set creditor_address_line1 in production. You can simulate
149
131
  #
150
- # @param beneficiary_name [String] The sending bank will set beneficiary_name in production. You can simulate any v
132
+ # @param creditor_address_line2 [String] The sending bank will set creditor_address_line2 in production. You can simulate
151
133
  #
152
- # @param beneficiary_reference [String] The sending bank will set beneficiary_reference in production. You can simulate
134
+ # @param creditor_address_line3 [String] The sending bank will set creditor_address_line3 in production. You can simulate
153
135
  #
154
- # @param originator_address_line1 [String] The sending bank will set originator_address_line1 in production. You can simula
136
+ # @param creditor_name [String] The sending bank will set creditor_name in production. You can simulate any valu
155
137
  #
156
- # @param originator_address_line2 [String] The sending bank will set originator_address_line2 in production. You can simula
138
+ # @param debtor_address_line1 [String] The sending bank will set debtor_address_line1 in production. You can simulate a
157
139
  #
158
- # @param originator_address_line3 [String] The sending bank will set originator_address_line3 in production. You can simula
140
+ # @param debtor_address_line2 [String] The sending bank will set debtor_address_line2 in production. You can simulate a
159
141
  #
160
- # @param originator_name [String] The sending bank will set originator_name in production. You can simulate any va
142
+ # @param debtor_address_line3 [String] The sending bank will set debtor_address_line3 in production. You can simulate a
161
143
  #
162
- # @param originator_routing_number [String] The sending bank will set originator_routing_number in production. You can simul
144
+ # @param debtor_name [String] The sending bank will set debtor_name in production. You can simulate any value
163
145
  #
164
- # @param originator_to_beneficiary_information_line1 [String] The sending bank will set originator_to_beneficiary_information_line1 in product
146
+ # @param end_to_end_identification [String] The sending bank will set end_to_end_identification in production. You can simul
165
147
  #
166
- # @param originator_to_beneficiary_information_line2 [String] The sending bank will set originator_to_beneficiary_information_line2 in product
148
+ # @param instructing_agent_routing_number [String] The sending bank will set instructing_agent_routing_number in production. You ca
167
149
  #
168
- # @param originator_to_beneficiary_information_line3 [String] The sending bank will set originator_to_beneficiary_information_line3 in product
150
+ # @param instruction_identification [String] The sending bank will set instruction_identification in production. You can simu
169
151
  #
170
- # @param originator_to_beneficiary_information_line4 [String] The sending bank will set originator_to_beneficiary_information_line4 in product
152
+ # @param unique_end_to_end_transaction_reference [String] The sending bank will set unique_end_to_end_transaction_reference in production.
171
153
  #
172
- # @param sender_reference [String] The sending bank will set sender_reference in production. You can simulate any v
154
+ # @param unstructured_remittance_information [String] The sending bank will set unstructured_remittance_information in production. You
173
155
  #
174
156
  # @param wire_drawdown_request_id [String] The identifier of a Wire Drawdown Request the inbound Wire Transfer is fulfillin
175
157
  #
@@ -5421,118 +5421,108 @@ module Increase
5421
5421
  # @return [Integer]
5422
5422
  required :amount, Integer
5423
5423
 
5424
- # @!attribute beneficiary_address_line1
5424
+ # @!attribute creditor_address_line1
5425
5425
  # A free-form address field set by the sender.
5426
5426
  #
5427
5427
  # @return [String, nil]
5428
- required :beneficiary_address_line1, String, nil?: true
5428
+ required :creditor_address_line1, String, nil?: true
5429
5429
 
5430
- # @!attribute beneficiary_address_line2
5430
+ # @!attribute creditor_address_line2
5431
5431
  # A free-form address field set by the sender.
5432
5432
  #
5433
5433
  # @return [String, nil]
5434
- required :beneficiary_address_line2, String, nil?: true
5434
+ required :creditor_address_line2, String, nil?: true
5435
5435
 
5436
- # @!attribute beneficiary_address_line3
5436
+ # @!attribute creditor_address_line3
5437
5437
  # A free-form address field set by the sender.
5438
5438
  #
5439
5439
  # @return [String, nil]
5440
- required :beneficiary_address_line3, String, nil?: true
5440
+ required :creditor_address_line3, String, nil?: true
5441
5441
 
5442
- # @!attribute beneficiary_name
5442
+ # @!attribute creditor_name
5443
5443
  # A name set by the sender.
5444
5444
  #
5445
5445
  # @return [String, nil]
5446
- required :beneficiary_name, String, nil?: true
5446
+ required :creditor_name, String, nil?: true
5447
5447
 
5448
- # @!attribute beneficiary_reference
5449
- # A free-form reference string set by the sender, to help identify the transfer.
5448
+ # @!attribute debtor_address_line1
5449
+ # A free-form address field set by the sender.
5450
5450
  #
5451
5451
  # @return [String, nil]
5452
- required :beneficiary_reference, String, nil?: true
5453
-
5454
- # @!attribute description
5455
- # An Increase-constructed description of the transfer.
5456
- #
5457
- # @return [String]
5458
- required :description, String
5452
+ required :debtor_address_line1, String, nil?: true
5459
5453
 
5460
- # @!attribute input_message_accountability_data
5461
- # A unique identifier available to the originating and receiving banks, commonly
5462
- # abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
5463
- # service and is helpful when debugging wires with the originating bank.
5454
+ # @!attribute debtor_address_line2
5455
+ # A free-form address field set by the sender.
5464
5456
  #
5465
5457
  # @return [String, nil]
5466
- required :input_message_accountability_data, String, nil?: true
5458
+ required :debtor_address_line2, String, nil?: true
5467
5459
 
5468
- # @!attribute originator_address_line1
5469
- # The address of the wire originator, set by the sending bank.
5460
+ # @!attribute debtor_address_line3
5461
+ # A free-form address field set by the sender.
5470
5462
  #
5471
5463
  # @return [String, nil]
5472
- required :originator_address_line1, String, nil?: true
5464
+ required :debtor_address_line3, String, nil?: true
5473
5465
 
5474
- # @!attribute originator_address_line2
5475
- # The address of the wire originator, set by the sending bank.
5466
+ # @!attribute debtor_name
5467
+ # A name set by the sender.
5476
5468
  #
5477
5469
  # @return [String, nil]
5478
- required :originator_address_line2, String, nil?: true
5470
+ required :debtor_name, String, nil?: true
5479
5471
 
5480
- # @!attribute originator_address_line3
5481
- # The address of the wire originator, set by the sending bank.
5472
+ # @!attribute description
5473
+ # An Increase-constructed description of the transfer.
5482
5474
  #
5483
- # @return [String, nil]
5484
- required :originator_address_line3, String, nil?: true
5475
+ # @return [String]
5476
+ required :description, String
5485
5477
 
5486
- # @!attribute originator_name
5487
- # The originator of the wire, set by the sending bank.
5478
+ # @!attribute end_to_end_identification
5479
+ # A free-form reference string set by the sender, to help identify the transfer.
5488
5480
  #
5489
5481
  # @return [String, nil]
5490
- required :originator_name, String, nil?: true
5482
+ required :end_to_end_identification, String, nil?: true
5491
5483
 
5492
- # @!attribute originator_routing_number
5493
- # The American Banking Association (ABA) routing number of the bank originating
5494
- # the transfer.
5484
+ # @!attribute input_message_accountability_data
5485
+ # A unique identifier available to the originating and receiving banks, commonly
5486
+ # abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
5487
+ # service and is helpful when debugging wires with the originating bank.
5495
5488
  #
5496
5489
  # @return [String, nil]
5497
- required :originator_routing_number, String, nil?: true
5490
+ required :input_message_accountability_data, String, nil?: true
5498
5491
 
5499
- # @!attribute originator_to_beneficiary_information
5500
- # An Increase-created concatenation of the Originator-to-Beneficiary lines.
5492
+ # @!attribute instructing_agent_routing_number
5493
+ # The American Banking Association (ABA) routing number of the bank that sent the
5494
+ # wire.
5501
5495
  #
5502
5496
  # @return [String, nil]
5503
- required :originator_to_beneficiary_information, String, nil?: true
5497
+ required :instructing_agent_routing_number, String, nil?: true
5504
5498
 
5505
- # @!attribute originator_to_beneficiary_information_line1
5506
- # A free-form message set by the wire originator.
5499
+ # @!attribute instruction_identification
5500
+ # The sending bank's identifier for the wire transfer.
5507
5501
  #
5508
5502
  # @return [String, nil]
5509
- required :originator_to_beneficiary_information_line1, String, nil?: true
5503
+ required :instruction_identification, String, nil?: true
5510
5504
 
5511
- # @!attribute originator_to_beneficiary_information_line2
5512
- # A free-form message set by the wire originator.
5505
+ # @!attribute transfer_id
5506
+ # The ID of the Inbound Wire Transfer object that resulted in this Transaction.
5513
5507
  #
5514
- # @return [String, nil]
5515
- required :originator_to_beneficiary_information_line2, String, nil?: true
5508
+ # @return [String]
5509
+ required :transfer_id, String
5516
5510
 
5517
- # @!attribute originator_to_beneficiary_information_line3
5518
- # A free-form message set by the wire originator.
5511
+ # @!attribute unique_end_to_end_transaction_reference
5512
+ # The Unique End-to-end Transaction Reference
5513
+ # ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
5514
+ # of the transfer.
5519
5515
  #
5520
5516
  # @return [String, nil]
5521
- required :originator_to_beneficiary_information_line3, String, nil?: true
5517
+ required :unique_end_to_end_transaction_reference, String, nil?: true
5522
5518
 
5523
- # @!attribute originator_to_beneficiary_information_line4
5524
- # A free-form message set by the wire originator.
5519
+ # @!attribute unstructured_remittance_information
5520
+ # A free-form message set by the sender.
5525
5521
  #
5526
5522
  # @return [String, nil]
5527
- required :originator_to_beneficiary_information_line4, String, nil?: true
5523
+ required :unstructured_remittance_information, String, nil?: true
5528
5524
 
5529
- # @!attribute transfer_id
5530
- # The ID of the Inbound Wire Transfer object that resulted in this Transaction.
5531
- #
5532
- # @return [String]
5533
- required :transfer_id, String
5534
-
5535
- # @!method initialize(amount:, beneficiary_address_line1:, beneficiary_address_line2:, beneficiary_address_line3:, beneficiary_name:, beneficiary_reference:, description:, input_message_accountability_data:, originator_address_line1:, originator_address_line2:, originator_address_line3:, originator_name:, originator_routing_number:, originator_to_beneficiary_information:, originator_to_beneficiary_information_line1:, originator_to_beneficiary_information_line2:, originator_to_beneficiary_information_line3:, originator_to_beneficiary_information_line4:, transfer_id:)
5525
+ # @!method initialize(amount:, creditor_address_line1:, creditor_address_line2:, creditor_address_line3:, creditor_name:, debtor_address_line1:, debtor_address_line2:, debtor_address_line3:, debtor_name:, description:, end_to_end_identification:, input_message_accountability_data:, instructing_agent_routing_number:, instruction_identification:, transfer_id:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:)
5536
5526
  # Some parameter documentations has been truncated, see
5537
5527
  # {Increase::Models::Transaction::Source::InboundWireTransfer} for more details.
5538
5528
  #
@@ -5543,41 +5533,37 @@ module Increase
5543
5533
  #
5544
5534
  # @param amount [Integer] The amount in USD cents.
5545
5535
  #
5546
- # @param beneficiary_address_line1 [String, nil] A free-form address field set by the sender.
5536
+ # @param creditor_address_line1 [String, nil] A free-form address field set by the sender.
5547
5537
  #
5548
- # @param beneficiary_address_line2 [String, nil] A free-form address field set by the sender.
5538
+ # @param creditor_address_line2 [String, nil] A free-form address field set by the sender.
5549
5539
  #
5550
- # @param beneficiary_address_line3 [String, nil] A free-form address field set by the sender.
5540
+ # @param creditor_address_line3 [String, nil] A free-form address field set by the sender.
5551
5541
  #
5552
- # @param beneficiary_name [String, nil] A name set by the sender.
5542
+ # @param creditor_name [String, nil] A name set by the sender.
5553
5543
  #
5554
- # @param beneficiary_reference [String, nil] A free-form reference string set by the sender, to help identify the transfer.
5544
+ # @param debtor_address_line1 [String, nil] A free-form address field set by the sender.
5555
5545
  #
5556
- # @param description [String] An Increase-constructed description of the transfer.
5557
- #
5558
- # @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
5546
+ # @param debtor_address_line2 [String, nil] A free-form address field set by the sender.
5559
5547
  #
5560
- # @param originator_address_line1 [String, nil] The address of the wire originator, set by the sending bank.
5548
+ # @param debtor_address_line3 [String, nil] A free-form address field set by the sender.
5561
5549
  #
5562
- # @param originator_address_line2 [String, nil] The address of the wire originator, set by the sending bank.
5550
+ # @param debtor_name [String, nil] A name set by the sender.
5563
5551
  #
5564
- # @param originator_address_line3 [String, nil] The address of the wire originator, set by the sending bank.
5565
- #
5566
- # @param originator_name [String, nil] The originator of the wire, set by the sending bank.
5552
+ # @param description [String] An Increase-constructed description of the transfer.
5567
5553
  #
5568
- # @param originator_routing_number [String, nil] The American Banking Association (ABA) routing number of the bank originating th
5554
+ # @param end_to_end_identification [String, nil] A free-form reference string set by the sender, to help identify the transfer.
5569
5555
  #
5570
- # @param originator_to_beneficiary_information [String, nil] An Increase-created concatenation of the Originator-to-Beneficiary lines.
5556
+ # @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
5571
5557
  #
5572
- # @param originator_to_beneficiary_information_line1 [String, nil] A free-form message set by the wire originator.
5558
+ # @param instructing_agent_routing_number [String, nil] The American Banking Association (ABA) routing number of the bank that sent the
5573
5559
  #
5574
- # @param originator_to_beneficiary_information_line2 [String, nil] A free-form message set by the wire originator.
5560
+ # @param instruction_identification [String, nil] The sending bank's identifier for the wire transfer.
5575
5561
  #
5576
- # @param originator_to_beneficiary_information_line3 [String, nil] A free-form message set by the wire originator.
5562
+ # @param transfer_id [String] The ID of the Inbound Wire Transfer object that resulted in this Transaction.
5577
5563
  #
5578
- # @param originator_to_beneficiary_information_line4 [String, nil] A free-form message set by the wire originator.
5564
+ # @param unique_end_to_end_transaction_reference [String, nil] The Unique End-to-end Transaction Reference ([UETR](https://www.swift.com/paymen
5579
5565
  #
5580
- # @param transfer_id [String] The ID of the Inbound Wire Transfer object that resulted in this Transaction.
5566
+ # @param unstructured_remittance_information [String, nil] A free-form message set by the sender.
5581
5567
  end
5582
5568
 
5583
5569
  # @see Increase::Models::Transaction::Source#inbound_wire_transfer_reversal
@@ -10,41 +10,37 @@ module Increase
10
10
  #
11
11
  # Simulates an [Inbound Wire Transfer](#inbound-wire-transfers) to your account.
12
12
  #
13
- # @overload create(account_number_id:, amount:, beneficiary_address_line1: nil, beneficiary_address_line2: nil, beneficiary_address_line3: nil, beneficiary_name: nil, beneficiary_reference: nil, originator_address_line1: nil, originator_address_line2: nil, originator_address_line3: nil, originator_name: nil, originator_routing_number: nil, originator_to_beneficiary_information_line1: nil, originator_to_beneficiary_information_line2: nil, originator_to_beneficiary_information_line3: nil, originator_to_beneficiary_information_line4: nil, sender_reference: nil, wire_drawdown_request_id: nil, request_options: {})
13
+ # @overload create(account_number_id:, amount:, creditor_address_line1: nil, creditor_address_line2: nil, creditor_address_line3: nil, creditor_name: nil, debtor_address_line1: nil, debtor_address_line2: nil, debtor_address_line3: nil, debtor_name: nil, end_to_end_identification: nil, instructing_agent_routing_number: nil, instruction_identification: nil, unique_end_to_end_transaction_reference: nil, unstructured_remittance_information: nil, wire_drawdown_request_id: nil, request_options: {})
14
14
  #
15
15
  # @param account_number_id [String] The identifier of the Account Number the inbound Wire Transfer is for.
16
16
  #
17
17
  # @param amount [Integer] The transfer amount in cents. Must be positive.
18
18
  #
19
- # @param beneficiary_address_line1 [String] The sending bank will set beneficiary_address_line1 in production. You can simul
19
+ # @param creditor_address_line1 [String] The sending bank will set creditor_address_line1 in production. You can simulate
20
20
  #
21
- # @param beneficiary_address_line2 [String] The sending bank will set beneficiary_address_line2 in production. You can simul
21
+ # @param creditor_address_line2 [String] The sending bank will set creditor_address_line2 in production. You can simulate
22
22
  #
23
- # @param beneficiary_address_line3 [String] The sending bank will set beneficiary_address_line3 in production. You can simul
23
+ # @param creditor_address_line3 [String] The sending bank will set creditor_address_line3 in production. You can simulate
24
24
  #
25
- # @param beneficiary_name [String] The sending bank will set beneficiary_name in production. You can simulate any v
25
+ # @param creditor_name [String] The sending bank will set creditor_name in production. You can simulate any valu
26
26
  #
27
- # @param beneficiary_reference [String] The sending bank will set beneficiary_reference in production. You can simulate
27
+ # @param debtor_address_line1 [String] The sending bank will set debtor_address_line1 in production. You can simulate a
28
28
  #
29
- # @param originator_address_line1 [String] The sending bank will set originator_address_line1 in production. You can simula
29
+ # @param debtor_address_line2 [String] The sending bank will set debtor_address_line2 in production. You can simulate a
30
30
  #
31
- # @param originator_address_line2 [String] The sending bank will set originator_address_line2 in production. You can simula
31
+ # @param debtor_address_line3 [String] The sending bank will set debtor_address_line3 in production. You can simulate a
32
32
  #
33
- # @param originator_address_line3 [String] The sending bank will set originator_address_line3 in production. You can simula
33
+ # @param debtor_name [String] The sending bank will set debtor_name in production. You can simulate any value
34
34
  #
35
- # @param originator_name [String] The sending bank will set originator_name in production. You can simulate any va
35
+ # @param end_to_end_identification [String] The sending bank will set end_to_end_identification in production. You can simul
36
36
  #
37
- # @param originator_routing_number [String] The sending bank will set originator_routing_number in production. You can simul
37
+ # @param instructing_agent_routing_number [String] The sending bank will set instructing_agent_routing_number in production. You ca
38
38
  #
39
- # @param originator_to_beneficiary_information_line1 [String] The sending bank will set originator_to_beneficiary_information_line1 in product
39
+ # @param instruction_identification [String] The sending bank will set instruction_identification in production. You can simu
40
40
  #
41
- # @param originator_to_beneficiary_information_line2 [String] The sending bank will set originator_to_beneficiary_information_line2 in product
41
+ # @param unique_end_to_end_transaction_reference [String] The sending bank will set unique_end_to_end_transaction_reference in production.
42
42
  #
43
- # @param originator_to_beneficiary_information_line3 [String] The sending bank will set originator_to_beneficiary_information_line3 in product
44
- #
45
- # @param originator_to_beneficiary_information_line4 [String] The sending bank will set originator_to_beneficiary_information_line4 in product
46
- #
47
- # @param sender_reference [String] The sending bank will set sender_reference in production. You can simulate any v
43
+ # @param unstructured_remittance_information [String] The sending bank will set unstructured_remittance_information in production. You
48
44
  #
49
45
  # @param wire_drawdown_request_id [String] The identifier of a Wire Drawdown Request the inbound Wire Transfer is fulfillin
50
46
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.43.0"
4
+ VERSION = "1.45.0"
5
5
  end