increase 1.193.0 → 1.194.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 +8 -0
- data/README.md +1 -1
- data/lib/increase/models/event.rb +18 -0
- data/lib/increase/models/event_list_params.rb +18 -0
- data/lib/increase/models/event_subscription.rb +18 -0
- data/lib/increase/models/event_subscription_create_params.rb +18 -0
- data/lib/increase/models/pending_transaction.rb +96 -1
- data/lib/increase/models/pending_transaction_list_params.rb +6 -0
- data/lib/increase/models/transaction.rb +83 -1
- data/lib/increase/models/transaction_list_params.rb +6 -0
- data/lib/increase/models/unwrap_webhook_event.rb +18 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/event.rbi +42 -0
- data/rbi/increase/models/event_list_params.rbi +42 -0
- data/rbi/increase/models/event_subscription.rbi +42 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +42 -0
- data/rbi/increase/models/pending_transaction.rbi +181 -0
- data/rbi/increase/models/pending_transaction_list_params.rbi +14 -0
- data/rbi/increase/models/transaction.rbi +168 -0
- data/rbi/increase/models/transaction_list_params.rbi +14 -0
- data/rbi/increase/models/unwrap_webhook_event.rbi +42 -0
- data/sig/increase/models/event.rbs +24 -0
- data/sig/increase/models/event_list_params.rbs +24 -0
- data/sig/increase/models/event_subscription.rbs +24 -0
- data/sig/increase/models/event_subscription_create_params.rbs +24 -0
- data/sig/increase/models/pending_transaction.rbs +64 -0
- data/sig/increase/models/pending_transaction_list_params.rbs +8 -0
- data/sig/increase/models/transaction.rbs +56 -0
- data/sig/increase/models/transaction_list_params.rbs +8 -0
- data/sig/increase/models/unwrap_webhook_event.rbs +24 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 542edda1ffb9b3877443e742cdaf7f8eb4c72eb1d375cc7c1cfe8355a07b599e
|
|
4
|
+
data.tar.gz: 2d40b8086b9914231657a017867d3a95553c15f7dda8593c49cfbb091c25e49b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 986106c1fdd860787e1fda080723fa2ec3d879dd02ebb93ad79d6659f7119fb5b60a3bafc93cd010452ba4c0ea71d25defca70448361044d6912f5c9caa2780f
|
|
7
|
+
data.tar.gz: 10560118e481a70707784a32e803dfa478136eb2f110723936592f0decd1e5c6e2d2ef33499c05a9acf46da18fe843e1b9b1ace906aaa753027a1907cfe89bb1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.194.0 (2026-02-02)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.193.0...v1.194.0](https://github.com/Increase/increase-ruby/compare/v1.193.0...v1.194.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([327b2dd](https://github.com/Increase/increase-ruby/commit/327b2dd6a6aa75ce46e0488206781d0acbd2a4eb))
|
|
10
|
+
|
|
3
11
|
## 1.193.0 (2026-02-02)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.192.1...v1.193.0](https://github.com/Increase/increase-ruby/compare/v1.192.1...v1.193.0)
|
data/README.md
CHANGED
|
@@ -103,6 +103,24 @@ module Increase
|
|
|
103
103
|
# Occurs whenever an ACH Transfer is updated.
|
|
104
104
|
ACH_TRANSFER_UPDATED = :"ach_transfer.updated"
|
|
105
105
|
|
|
106
|
+
# Occurs whenever a Blockchain Address is created.
|
|
107
|
+
BLOCKCHAIN_ADDRESS_CREATED = :"blockchain_address.created"
|
|
108
|
+
|
|
109
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
110
|
+
BLOCKCHAIN_ADDRESS_UPDATED = :"blockchain_address.updated"
|
|
111
|
+
|
|
112
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
113
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED = :"blockchain_offramp_transfer.created"
|
|
114
|
+
|
|
115
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
116
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED = :"blockchain_offramp_transfer.updated"
|
|
117
|
+
|
|
118
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
119
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED = :"blockchain_onramp_transfer.created"
|
|
120
|
+
|
|
121
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
122
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED = :"blockchain_onramp_transfer.updated"
|
|
123
|
+
|
|
106
124
|
# Occurs whenever a Bookkeeping Account is created.
|
|
107
125
|
BOOKKEEPING_ACCOUNT_CREATED = :"bookkeeping_account.created"
|
|
108
126
|
|
|
@@ -105,6 +105,24 @@ module Increase
|
|
|
105
105
|
# Occurs whenever an ACH Transfer is updated.
|
|
106
106
|
ACH_TRANSFER_UPDATED = :"ach_transfer.updated"
|
|
107
107
|
|
|
108
|
+
# Occurs whenever a Blockchain Address is created.
|
|
109
|
+
BLOCKCHAIN_ADDRESS_CREATED = :"blockchain_address.created"
|
|
110
|
+
|
|
111
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
112
|
+
BLOCKCHAIN_ADDRESS_UPDATED = :"blockchain_address.updated"
|
|
113
|
+
|
|
114
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
115
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED = :"blockchain_offramp_transfer.created"
|
|
116
|
+
|
|
117
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
118
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED = :"blockchain_offramp_transfer.updated"
|
|
119
|
+
|
|
120
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
121
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED = :"blockchain_onramp_transfer.created"
|
|
122
|
+
|
|
123
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
124
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED = :"blockchain_onramp_transfer.updated"
|
|
125
|
+
|
|
108
126
|
# Occurs whenever a Bookkeeping Account is created.
|
|
109
127
|
BOOKKEEPING_ACCOUNT_CREATED = :"bookkeeping_account.created"
|
|
110
128
|
|
|
@@ -126,6 +126,24 @@ module Increase
|
|
|
126
126
|
# Occurs whenever an ACH Transfer is updated.
|
|
127
127
|
ACH_TRANSFER_UPDATED = :"ach_transfer.updated"
|
|
128
128
|
|
|
129
|
+
# Occurs whenever a Blockchain Address is created.
|
|
130
|
+
BLOCKCHAIN_ADDRESS_CREATED = :"blockchain_address.created"
|
|
131
|
+
|
|
132
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
133
|
+
BLOCKCHAIN_ADDRESS_UPDATED = :"blockchain_address.updated"
|
|
134
|
+
|
|
135
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
136
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED = :"blockchain_offramp_transfer.created"
|
|
137
|
+
|
|
138
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
139
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED = :"blockchain_offramp_transfer.updated"
|
|
140
|
+
|
|
141
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
142
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED = :"blockchain_onramp_transfer.created"
|
|
143
|
+
|
|
144
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
145
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED = :"blockchain_onramp_transfer.updated"
|
|
146
|
+
|
|
129
147
|
# Occurs whenever a Bookkeeping Account is created.
|
|
130
148
|
BOOKKEEPING_ACCOUNT_CREATED = :"bookkeeping_account.created"
|
|
131
149
|
|
|
@@ -95,6 +95,24 @@ module Increase
|
|
|
95
95
|
# Occurs whenever an ACH Transfer is updated.
|
|
96
96
|
ACH_TRANSFER_UPDATED = :"ach_transfer.updated"
|
|
97
97
|
|
|
98
|
+
# Occurs whenever a Blockchain Address is created.
|
|
99
|
+
BLOCKCHAIN_ADDRESS_CREATED = :"blockchain_address.created"
|
|
100
|
+
|
|
101
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
102
|
+
BLOCKCHAIN_ADDRESS_UPDATED = :"blockchain_address.updated"
|
|
103
|
+
|
|
104
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
105
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED = :"blockchain_offramp_transfer.created"
|
|
106
|
+
|
|
107
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
108
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED = :"blockchain_offramp_transfer.updated"
|
|
109
|
+
|
|
110
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
111
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED = :"blockchain_onramp_transfer.created"
|
|
112
|
+
|
|
113
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
114
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED = :"blockchain_onramp_transfer.updated"
|
|
115
|
+
|
|
98
116
|
# Occurs whenever a Bookkeeping Account is created.
|
|
99
117
|
BOOKKEEPING_ACCOUNT_CREATED = :"bookkeeping_account.created"
|
|
100
118
|
|
|
@@ -185,6 +185,26 @@ module Increase
|
|
|
185
185
|
-> { Increase::PendingTransaction::Source::ACHTransferInstruction },
|
|
186
186
|
nil?: true
|
|
187
187
|
|
|
188
|
+
# @!attribute blockchain_offramp_transfer_intention
|
|
189
|
+
# A Blockchain Off-Ramp Transfer Intention object. This field will be present in
|
|
190
|
+
# the JSON response if and only if `category` is equal to
|
|
191
|
+
# `blockchain_offramp_transfer_intention`.
|
|
192
|
+
#
|
|
193
|
+
# @return [Increase::Models::PendingTransaction::Source::BlockchainOfframpTransferIntention, nil]
|
|
194
|
+
required :blockchain_offramp_transfer_intention,
|
|
195
|
+
-> { Increase::PendingTransaction::Source::BlockchainOfframpTransferIntention },
|
|
196
|
+
nil?: true
|
|
197
|
+
|
|
198
|
+
# @!attribute blockchain_onramp_transfer_instruction
|
|
199
|
+
# A Blockchain On-Ramp Transfer Instruction object. This field will be present in
|
|
200
|
+
# the JSON response if and only if `category` is equal to
|
|
201
|
+
# `blockchain_onramp_transfer_instruction`.
|
|
202
|
+
#
|
|
203
|
+
# @return [Increase::Models::PendingTransaction::Source::BlockchainOnrampTransferInstruction, nil]
|
|
204
|
+
required :blockchain_onramp_transfer_instruction,
|
|
205
|
+
-> { Increase::PendingTransaction::Source::BlockchainOnrampTransferInstruction },
|
|
206
|
+
nil?: true
|
|
207
|
+
|
|
188
208
|
# @!attribute card_authorization
|
|
189
209
|
# A Card Authorization object. This field will be present in the JSON response if
|
|
190
210
|
# and only if `category` is equal to `card_authorization`. Card Authorizations are
|
|
@@ -310,7 +330,7 @@ module Increase
|
|
|
310
330
|
-> { Increase::PendingTransaction::Source::WireTransferInstruction },
|
|
311
331
|
nil?: true
|
|
312
332
|
|
|
313
|
-
# @!method initialize(account_transfer_instruction:, ach_transfer_instruction:, card_authorization:, card_push_transfer_instruction:, category:, check_deposit_instruction:, check_transfer_instruction:, fednow_transfer_instruction:, inbound_funds_hold:, inbound_wire_transfer_reversal:, other:, real_time_payments_transfer_instruction:, swift_transfer_instruction:, user_initiated_hold:, wire_transfer_instruction:)
|
|
333
|
+
# @!method initialize(account_transfer_instruction:, ach_transfer_instruction:, blockchain_offramp_transfer_intention:, blockchain_onramp_transfer_instruction:, card_authorization:, card_push_transfer_instruction:, category:, check_deposit_instruction:, check_transfer_instruction:, fednow_transfer_instruction:, inbound_funds_hold:, inbound_wire_transfer_reversal:, other:, real_time_payments_transfer_instruction:, swift_transfer_instruction:, user_initiated_hold:, wire_transfer_instruction:)
|
|
314
334
|
# Some parameter documentations has been truncated, see
|
|
315
335
|
# {Increase::Models::PendingTransaction::Source} for more details.
|
|
316
336
|
#
|
|
@@ -322,6 +342,10 @@ module Increase
|
|
|
322
342
|
#
|
|
323
343
|
# @param ach_transfer_instruction [Increase::Models::PendingTransaction::Source::ACHTransferInstruction, nil] An ACH Transfer Instruction object. This field will be present in the JSON respo
|
|
324
344
|
#
|
|
345
|
+
# @param blockchain_offramp_transfer_intention [Increase::Models::PendingTransaction::Source::BlockchainOfframpTransferIntention, nil] A Blockchain Off-Ramp Transfer Intention object. This field will be present in t
|
|
346
|
+
#
|
|
347
|
+
# @param blockchain_onramp_transfer_instruction [Increase::Models::PendingTransaction::Source::BlockchainOnrampTransferInstruction, nil] A Blockchain On-Ramp Transfer Instruction object. This field will be present in
|
|
348
|
+
#
|
|
325
349
|
# @param card_authorization [Increase::Models::PendingTransaction::Source::CardAuthorization, nil] A Card Authorization object. This field will be present in the JSON response if
|
|
326
350
|
#
|
|
327
351
|
# @param card_push_transfer_instruction [Increase::Models::PendingTransaction::Source::CardPushTransferInstruction, nil] A Card Push Transfer Instruction object. This field will be present in the JSON
|
|
@@ -423,6 +447,71 @@ module Increase
|
|
|
423
447
|
# @param transfer_id [String] The identifier of the ACH Transfer that led to this Pending Transaction.
|
|
424
448
|
end
|
|
425
449
|
|
|
450
|
+
# @see Increase::Models::PendingTransaction::Source#blockchain_offramp_transfer_intention
|
|
451
|
+
class BlockchainOfframpTransferIntention < Increase::Internal::Type::BaseModel
|
|
452
|
+
# @!attribute source_blockchain_address_id
|
|
453
|
+
# The identifier of the Blockchain Address the funds were received at.
|
|
454
|
+
#
|
|
455
|
+
# @return [String]
|
|
456
|
+
required :source_blockchain_address_id, String
|
|
457
|
+
|
|
458
|
+
# @!attribute transfer_id
|
|
459
|
+
# The identifier of the Blockchain Off-Ramp Transfer that led to this Transaction.
|
|
460
|
+
#
|
|
461
|
+
# @return [String]
|
|
462
|
+
required :transfer_id, String
|
|
463
|
+
|
|
464
|
+
# @!method initialize(source_blockchain_address_id:, transfer_id:)
|
|
465
|
+
# Some parameter documentations has been truncated, see
|
|
466
|
+
# {Increase::Models::PendingTransaction::Source::BlockchainOfframpTransferIntention}
|
|
467
|
+
# for more details.
|
|
468
|
+
#
|
|
469
|
+
# A Blockchain Off-Ramp Transfer Intention object. This field will be present in
|
|
470
|
+
# the JSON response if and only if `category` is equal to
|
|
471
|
+
# `blockchain_offramp_transfer_intention`.
|
|
472
|
+
#
|
|
473
|
+
# @param source_blockchain_address_id [String] The identifier of the Blockchain Address the funds were received at.
|
|
474
|
+
#
|
|
475
|
+
# @param transfer_id [String] The identifier of the Blockchain Off-Ramp Transfer that led to this Transaction.
|
|
476
|
+
end
|
|
477
|
+
|
|
478
|
+
# @see Increase::Models::PendingTransaction::Source#blockchain_onramp_transfer_instruction
|
|
479
|
+
class BlockchainOnrampTransferInstruction < Increase::Internal::Type::BaseModel
|
|
480
|
+
# @!attribute amount
|
|
481
|
+
# The transfer amount in USD cents.
|
|
482
|
+
#
|
|
483
|
+
# @return [Integer]
|
|
484
|
+
required :amount, Integer
|
|
485
|
+
|
|
486
|
+
# @!attribute destination_blockchain_address
|
|
487
|
+
# The blockchain address the funds are being sent to.
|
|
488
|
+
#
|
|
489
|
+
# @return [String]
|
|
490
|
+
required :destination_blockchain_address, String
|
|
491
|
+
|
|
492
|
+
# @!attribute transfer_id
|
|
493
|
+
# The identifier of the Blockchain On-Ramp Transfer that led to this Pending
|
|
494
|
+
# Transaction.
|
|
495
|
+
#
|
|
496
|
+
# @return [String]
|
|
497
|
+
required :transfer_id, String
|
|
498
|
+
|
|
499
|
+
# @!method initialize(amount:, destination_blockchain_address:, transfer_id:)
|
|
500
|
+
# Some parameter documentations has been truncated, see
|
|
501
|
+
# {Increase::Models::PendingTransaction::Source::BlockchainOnrampTransferInstruction}
|
|
502
|
+
# for more details.
|
|
503
|
+
#
|
|
504
|
+
# A Blockchain On-Ramp Transfer Instruction object. This field will be present in
|
|
505
|
+
# the JSON response if and only if `category` is equal to
|
|
506
|
+
# `blockchain_onramp_transfer_instruction`.
|
|
507
|
+
#
|
|
508
|
+
# @param amount [Integer] The transfer amount in USD cents.
|
|
509
|
+
#
|
|
510
|
+
# @param destination_blockchain_address [String] The blockchain address the funds are being sent to.
|
|
511
|
+
#
|
|
512
|
+
# @param transfer_id [String] The identifier of the Blockchain On-Ramp Transfer that led to this Pending Trans
|
|
513
|
+
end
|
|
514
|
+
|
|
426
515
|
# @see Increase::Models::PendingTransaction::Source#card_authorization
|
|
427
516
|
class CardAuthorization < Increase::Internal::Type::BaseModel
|
|
428
517
|
# @!attribute id
|
|
@@ -1732,6 +1821,12 @@ module Increase
|
|
|
1732
1821
|
# Card Push Transfer Instruction: details will be under the `card_push_transfer_instruction` object.
|
|
1733
1822
|
CARD_PUSH_TRANSFER_INSTRUCTION = :card_push_transfer_instruction
|
|
1734
1823
|
|
|
1824
|
+
# Blockchain On-Ramp Transfer Instruction: details will be under the `blockchain_onramp_transfer_instruction` object.
|
|
1825
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION = :blockchain_onramp_transfer_instruction
|
|
1826
|
+
|
|
1827
|
+
# Blockchain Off-Ramp Transfer Intention: details will be under the `blockchain_offramp_transfer_intention` object.
|
|
1828
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION = :blockchain_offramp_transfer_intention
|
|
1829
|
+
|
|
1735
1830
|
# The Pending Transaction was made for an undocumented or deprecated reason.
|
|
1736
1831
|
OTHER = :other
|
|
1737
1832
|
|
|
@@ -127,6 +127,12 @@ module Increase
|
|
|
127
127
|
# Card Push Transfer Instruction: details will be under the `card_push_transfer_instruction` object.
|
|
128
128
|
CARD_PUSH_TRANSFER_INSTRUCTION = :card_push_transfer_instruction
|
|
129
129
|
|
|
130
|
+
# Blockchain On-Ramp Transfer Instruction: details will be under the `blockchain_onramp_transfer_instruction` object.
|
|
131
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION = :blockchain_onramp_transfer_instruction
|
|
132
|
+
|
|
133
|
+
# Blockchain Off-Ramp Transfer Intention: details will be under the `blockchain_offramp_transfer_intention` object.
|
|
134
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION = :blockchain_offramp_transfer_intention
|
|
135
|
+
|
|
130
136
|
# The Pending Transaction was made for an undocumented or deprecated reason.
|
|
131
137
|
OTHER = :other
|
|
132
138
|
|
|
@@ -200,6 +200,26 @@ module Increase
|
|
|
200
200
|
# @return [Increase::Models::Transaction::Source::ACHTransferReturn, nil]
|
|
201
201
|
required :ach_transfer_return, -> { Increase::Transaction::Source::ACHTransferReturn }, nil?: true
|
|
202
202
|
|
|
203
|
+
# @!attribute blockchain_offramp_transfer_settlement
|
|
204
|
+
# A Blockchain Off-Ramp Transfer Settlement object. This field will be present in
|
|
205
|
+
# the JSON response if and only if `category` is equal to
|
|
206
|
+
# `blockchain_offramp_transfer_settlement`.
|
|
207
|
+
#
|
|
208
|
+
# @return [Increase::Models::Transaction::Source::BlockchainOfframpTransferSettlement, nil]
|
|
209
|
+
required :blockchain_offramp_transfer_settlement,
|
|
210
|
+
-> { Increase::Transaction::Source::BlockchainOfframpTransferSettlement },
|
|
211
|
+
nil?: true
|
|
212
|
+
|
|
213
|
+
# @!attribute blockchain_onramp_transfer_intention
|
|
214
|
+
# A Blockchain On-Ramp Transfer Intention object. This field will be present in
|
|
215
|
+
# the JSON response if and only if `category` is equal to
|
|
216
|
+
# `blockchain_onramp_transfer_intention`.
|
|
217
|
+
#
|
|
218
|
+
# @return [Increase::Models::Transaction::Source::BlockchainOnrampTransferIntention, nil]
|
|
219
|
+
required :blockchain_onramp_transfer_intention,
|
|
220
|
+
-> { Increase::Transaction::Source::BlockchainOnrampTransferIntention },
|
|
221
|
+
nil?: true
|
|
222
|
+
|
|
203
223
|
# @!attribute card_dispute_acceptance
|
|
204
224
|
# A Legacy Card Dispute Acceptance object. This field will be present in the JSON
|
|
205
225
|
# response if and only if `category` is equal to `card_dispute_acceptance`.
|
|
@@ -523,7 +543,7 @@ module Increase
|
|
|
523
543
|
},
|
|
524
544
|
nil?: true
|
|
525
545
|
|
|
526
|
-
# @!method initialize(account_revenue_payment:, account_transfer_intention:, ach_transfer_intention:, ach_transfer_rejection:, ach_transfer_return:, card_dispute_acceptance:, card_dispute_financial:, card_dispute_loss:, card_financial:, card_push_transfer_acceptance:, card_refund:, card_revenue_payment:, card_settlement:, cashback_payment:, category:, check_deposit_acceptance:, check_deposit_return:, check_transfer_deposit:, fednow_transfer_acknowledgement:, fee_payment:, inbound_ach_transfer:, inbound_ach_transfer_return_intention:, inbound_check_adjustment:, inbound_check_deposit_return_intention:, inbound_fednow_transfer_confirmation:, inbound_real_time_payments_transfer_confirmation:, inbound_wire_reversal:, inbound_wire_transfer:, inbound_wire_transfer_reversal:, interest_payment:, internal_source:, other:, real_time_payments_transfer_acknowledgement:, sample_funds:, swift_transfer_intention:, swift_transfer_return:, wire_transfer_intention:)
|
|
546
|
+
# @!method initialize(account_revenue_payment:, account_transfer_intention:, ach_transfer_intention:, ach_transfer_rejection:, ach_transfer_return:, blockchain_offramp_transfer_settlement:, blockchain_onramp_transfer_intention:, card_dispute_acceptance:, card_dispute_financial:, card_dispute_loss:, card_financial:, card_push_transfer_acceptance:, card_refund:, card_revenue_payment:, card_settlement:, cashback_payment:, category:, check_deposit_acceptance:, check_deposit_return:, check_transfer_deposit:, fednow_transfer_acknowledgement:, fee_payment:, inbound_ach_transfer:, inbound_ach_transfer_return_intention:, inbound_check_adjustment:, inbound_check_deposit_return_intention:, inbound_fednow_transfer_confirmation:, inbound_real_time_payments_transfer_confirmation:, inbound_wire_reversal:, inbound_wire_transfer:, inbound_wire_transfer_reversal:, interest_payment:, internal_source:, other:, real_time_payments_transfer_acknowledgement:, sample_funds:, swift_transfer_intention:, swift_transfer_return:, wire_transfer_intention:)
|
|
527
547
|
# Some parameter documentations has been truncated, see
|
|
528
548
|
# {Increase::Models::Transaction::Source} for more details.
|
|
529
549
|
#
|
|
@@ -542,6 +562,10 @@ module Increase
|
|
|
542
562
|
#
|
|
543
563
|
# @param ach_transfer_return [Increase::Models::Transaction::Source::ACHTransferReturn, nil] An ACH Transfer Return object. This field will be present in the JSON response i
|
|
544
564
|
#
|
|
565
|
+
# @param blockchain_offramp_transfer_settlement [Increase::Models::Transaction::Source::BlockchainOfframpTransferSettlement, nil] A Blockchain Off-Ramp Transfer Settlement object. This field will be present in
|
|
566
|
+
#
|
|
567
|
+
# @param blockchain_onramp_transfer_intention [Increase::Models::Transaction::Source::BlockchainOnrampTransferIntention, nil] A Blockchain On-Ramp Transfer Intention object. This field will be present in th
|
|
568
|
+
#
|
|
545
569
|
# @param card_dispute_acceptance [Increase::Models::Transaction::Source::CardDisputeAcceptance, nil] A Legacy Card Dispute Acceptance object. This field will be present in the JSON
|
|
546
570
|
#
|
|
547
571
|
# @param card_dispute_financial [Increase::Models::Transaction::Source::CardDisputeFinancial, nil] A Card Dispute Financial object. This field will be present in the JSON response
|
|
@@ -1079,6 +1103,58 @@ module Increase
|
|
|
1079
1103
|
end
|
|
1080
1104
|
end
|
|
1081
1105
|
|
|
1106
|
+
# @see Increase::Models::Transaction::Source#blockchain_offramp_transfer_settlement
|
|
1107
|
+
class BlockchainOfframpTransferSettlement < Increase::Internal::Type::BaseModel
|
|
1108
|
+
# @!attribute source_blockchain_address_id
|
|
1109
|
+
# The identifier of the Blockchain Address the funds were received at.
|
|
1110
|
+
#
|
|
1111
|
+
# @return [String]
|
|
1112
|
+
required :source_blockchain_address_id, String
|
|
1113
|
+
|
|
1114
|
+
# @!attribute transfer_id
|
|
1115
|
+
# The identifier of the Blockchain Off-Ramp Transfer that led to this Transaction.
|
|
1116
|
+
#
|
|
1117
|
+
# @return [String]
|
|
1118
|
+
required :transfer_id, String
|
|
1119
|
+
|
|
1120
|
+
# @!method initialize(source_blockchain_address_id:, transfer_id:)
|
|
1121
|
+
# Some parameter documentations has been truncated, see
|
|
1122
|
+
# {Increase::Models::Transaction::Source::BlockchainOfframpTransferSettlement} for
|
|
1123
|
+
# more details.
|
|
1124
|
+
#
|
|
1125
|
+
# A Blockchain Off-Ramp Transfer Settlement object. This field will be present in
|
|
1126
|
+
# the JSON response if and only if `category` is equal to
|
|
1127
|
+
# `blockchain_offramp_transfer_settlement`.
|
|
1128
|
+
#
|
|
1129
|
+
# @param source_blockchain_address_id [String] The identifier of the Blockchain Address the funds were received at.
|
|
1130
|
+
#
|
|
1131
|
+
# @param transfer_id [String] The identifier of the Blockchain Off-Ramp Transfer that led to this Transaction.
|
|
1132
|
+
end
|
|
1133
|
+
|
|
1134
|
+
# @see Increase::Models::Transaction::Source#blockchain_onramp_transfer_intention
|
|
1135
|
+
class BlockchainOnrampTransferIntention < Increase::Internal::Type::BaseModel
|
|
1136
|
+
# @!attribute destination_blockchain_address
|
|
1137
|
+
# The blockchain address the funds were sent to.
|
|
1138
|
+
#
|
|
1139
|
+
# @return [String]
|
|
1140
|
+
required :destination_blockchain_address, String
|
|
1141
|
+
|
|
1142
|
+
# @!attribute transfer_id
|
|
1143
|
+
# The identifier of the Blockchain On-Ramp Transfer that led to this Transaction.
|
|
1144
|
+
#
|
|
1145
|
+
# @return [String]
|
|
1146
|
+
required :transfer_id, String
|
|
1147
|
+
|
|
1148
|
+
# @!method initialize(destination_blockchain_address:, transfer_id:)
|
|
1149
|
+
# A Blockchain On-Ramp Transfer Intention object. This field will be present in
|
|
1150
|
+
# the JSON response if and only if `category` is equal to
|
|
1151
|
+
# `blockchain_onramp_transfer_intention`.
|
|
1152
|
+
#
|
|
1153
|
+
# @param destination_blockchain_address [String] The blockchain address the funds were sent to.
|
|
1154
|
+
#
|
|
1155
|
+
# @param transfer_id [String] The identifier of the Blockchain On-Ramp Transfer that led to this Transaction.
|
|
1156
|
+
end
|
|
1157
|
+
|
|
1082
1158
|
# @see Increase::Models::Transaction::Source#card_dispute_acceptance
|
|
1083
1159
|
class CardDisputeAcceptance < Increase::Internal::Type::BaseModel
|
|
1084
1160
|
# @!attribute accepted_at
|
|
@@ -5447,6 +5523,12 @@ module Increase
|
|
|
5447
5523
|
# Account Revenue Payment: details will be under the `account_revenue_payment` object.
|
|
5448
5524
|
ACCOUNT_REVENUE_PAYMENT = :account_revenue_payment
|
|
5449
5525
|
|
|
5526
|
+
# Blockchain On-Ramp Transfer Intention: details will be under the `blockchain_onramp_transfer_intention` object.
|
|
5527
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_INTENTION = :blockchain_onramp_transfer_intention
|
|
5528
|
+
|
|
5529
|
+
# Blockchain Off-Ramp Transfer Settlement: details will be under the `blockchain_offramp_transfer_settlement` object.
|
|
5530
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_SETTLEMENT = :blockchain_offramp_transfer_settlement
|
|
5531
|
+
|
|
5450
5532
|
# The Transaction was made for an undocumented or deprecated reason.
|
|
5451
5533
|
OTHER = :other
|
|
5452
5534
|
|
|
@@ -187,6 +187,12 @@ module Increase
|
|
|
187
187
|
# Account Revenue Payment: details will be under the `account_revenue_payment` object.
|
|
188
188
|
ACCOUNT_REVENUE_PAYMENT = :account_revenue_payment
|
|
189
189
|
|
|
190
|
+
# Blockchain On-Ramp Transfer Intention: details will be under the `blockchain_onramp_transfer_intention` object.
|
|
191
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_INTENTION = :blockchain_onramp_transfer_intention
|
|
192
|
+
|
|
193
|
+
# Blockchain Off-Ramp Transfer Settlement: details will be under the `blockchain_offramp_transfer_settlement` object.
|
|
194
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_SETTLEMENT = :blockchain_offramp_transfer_settlement
|
|
195
|
+
|
|
190
196
|
# The Transaction was made for an undocumented or deprecated reason.
|
|
191
197
|
OTHER = :other
|
|
192
198
|
|
|
@@ -102,6 +102,24 @@ module Increase
|
|
|
102
102
|
# Occurs whenever an ACH Transfer is updated.
|
|
103
103
|
ACH_TRANSFER_UPDATED = :"ach_transfer.updated"
|
|
104
104
|
|
|
105
|
+
# Occurs whenever a Blockchain Address is created.
|
|
106
|
+
BLOCKCHAIN_ADDRESS_CREATED = :"blockchain_address.created"
|
|
107
|
+
|
|
108
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
109
|
+
BLOCKCHAIN_ADDRESS_UPDATED = :"blockchain_address.updated"
|
|
110
|
+
|
|
111
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
112
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED = :"blockchain_offramp_transfer.created"
|
|
113
|
+
|
|
114
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
115
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED = :"blockchain_offramp_transfer.updated"
|
|
116
|
+
|
|
117
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
118
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED = :"blockchain_onramp_transfer.created"
|
|
119
|
+
|
|
120
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
121
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED = :"blockchain_onramp_transfer.updated"
|
|
122
|
+
|
|
105
123
|
# Occurs whenever a Bookkeeping Account is created.
|
|
106
124
|
BOOKKEEPING_ACCOUNT_CREATED = :"bookkeeping_account.created"
|
|
107
125
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -158,6 +158,48 @@ module Increase
|
|
|
158
158
|
Increase::Event::Category::TaggedSymbol
|
|
159
159
|
)
|
|
160
160
|
|
|
161
|
+
# Occurs whenever a Blockchain Address is created.
|
|
162
|
+
BLOCKCHAIN_ADDRESS_CREATED =
|
|
163
|
+
T.let(
|
|
164
|
+
:"blockchain_address.created",
|
|
165
|
+
Increase::Event::Category::TaggedSymbol
|
|
166
|
+
)
|
|
167
|
+
|
|
168
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
169
|
+
BLOCKCHAIN_ADDRESS_UPDATED =
|
|
170
|
+
T.let(
|
|
171
|
+
:"blockchain_address.updated",
|
|
172
|
+
Increase::Event::Category::TaggedSymbol
|
|
173
|
+
)
|
|
174
|
+
|
|
175
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
176
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED =
|
|
177
|
+
T.let(
|
|
178
|
+
:"blockchain_offramp_transfer.created",
|
|
179
|
+
Increase::Event::Category::TaggedSymbol
|
|
180
|
+
)
|
|
181
|
+
|
|
182
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
183
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED =
|
|
184
|
+
T.let(
|
|
185
|
+
:"blockchain_offramp_transfer.updated",
|
|
186
|
+
Increase::Event::Category::TaggedSymbol
|
|
187
|
+
)
|
|
188
|
+
|
|
189
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
190
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED =
|
|
191
|
+
T.let(
|
|
192
|
+
:"blockchain_onramp_transfer.created",
|
|
193
|
+
Increase::Event::Category::TaggedSymbol
|
|
194
|
+
)
|
|
195
|
+
|
|
196
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
197
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED =
|
|
198
|
+
T.let(
|
|
199
|
+
:"blockchain_onramp_transfer.updated",
|
|
200
|
+
Increase::Event::Category::TaggedSymbol
|
|
201
|
+
)
|
|
202
|
+
|
|
161
203
|
# Occurs whenever a Bookkeeping Account is created.
|
|
162
204
|
BOOKKEEPING_ACCOUNT_CREATED =
|
|
163
205
|
T.let(
|
|
@@ -221,6 +221,48 @@ module Increase
|
|
|
221
221
|
Increase::EventListParams::Category::In::TaggedSymbol
|
|
222
222
|
)
|
|
223
223
|
|
|
224
|
+
# Occurs whenever a Blockchain Address is created.
|
|
225
|
+
BLOCKCHAIN_ADDRESS_CREATED =
|
|
226
|
+
T.let(
|
|
227
|
+
:"blockchain_address.created",
|
|
228
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
|
229
|
+
)
|
|
230
|
+
|
|
231
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
232
|
+
BLOCKCHAIN_ADDRESS_UPDATED =
|
|
233
|
+
T.let(
|
|
234
|
+
:"blockchain_address.updated",
|
|
235
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
|
236
|
+
)
|
|
237
|
+
|
|
238
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
239
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED =
|
|
240
|
+
T.let(
|
|
241
|
+
:"blockchain_offramp_transfer.created",
|
|
242
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
|
243
|
+
)
|
|
244
|
+
|
|
245
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
246
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED =
|
|
247
|
+
T.let(
|
|
248
|
+
:"blockchain_offramp_transfer.updated",
|
|
249
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
|
250
|
+
)
|
|
251
|
+
|
|
252
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
253
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED =
|
|
254
|
+
T.let(
|
|
255
|
+
:"blockchain_onramp_transfer.created",
|
|
256
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
|
257
|
+
)
|
|
258
|
+
|
|
259
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
260
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED =
|
|
261
|
+
T.let(
|
|
262
|
+
:"blockchain_onramp_transfer.updated",
|
|
263
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
|
264
|
+
)
|
|
265
|
+
|
|
224
266
|
# Occurs whenever a Bookkeeping Account is created.
|
|
225
267
|
BOOKKEEPING_ACCOUNT_CREATED =
|
|
226
268
|
T.let(
|
|
@@ -205,6 +205,48 @@ module Increase
|
|
|
205
205
|
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
206
206
|
)
|
|
207
207
|
|
|
208
|
+
# Occurs whenever a Blockchain Address is created.
|
|
209
|
+
BLOCKCHAIN_ADDRESS_CREATED =
|
|
210
|
+
T.let(
|
|
211
|
+
:"blockchain_address.created",
|
|
212
|
+
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
213
|
+
)
|
|
214
|
+
|
|
215
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
216
|
+
BLOCKCHAIN_ADDRESS_UPDATED =
|
|
217
|
+
T.let(
|
|
218
|
+
:"blockchain_address.updated",
|
|
219
|
+
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
220
|
+
)
|
|
221
|
+
|
|
222
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
223
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED =
|
|
224
|
+
T.let(
|
|
225
|
+
:"blockchain_offramp_transfer.created",
|
|
226
|
+
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
227
|
+
)
|
|
228
|
+
|
|
229
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
230
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED =
|
|
231
|
+
T.let(
|
|
232
|
+
:"blockchain_offramp_transfer.updated",
|
|
233
|
+
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
234
|
+
)
|
|
235
|
+
|
|
236
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
237
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED =
|
|
238
|
+
T.let(
|
|
239
|
+
:"blockchain_onramp_transfer.created",
|
|
240
|
+
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
241
|
+
)
|
|
242
|
+
|
|
243
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
244
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED =
|
|
245
|
+
T.let(
|
|
246
|
+
:"blockchain_onramp_transfer.updated",
|
|
247
|
+
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
248
|
+
)
|
|
249
|
+
|
|
208
250
|
# Occurs whenever a Bookkeeping Account is created.
|
|
209
251
|
BOOKKEEPING_ACCOUNT_CREATED =
|
|
210
252
|
T.let(
|
|
@@ -204,6 +204,48 @@ module Increase
|
|
|
204
204
|
Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
|
|
205
205
|
)
|
|
206
206
|
|
|
207
|
+
# Occurs whenever a Blockchain Address is created.
|
|
208
|
+
BLOCKCHAIN_ADDRESS_CREATED =
|
|
209
|
+
T.let(
|
|
210
|
+
:"blockchain_address.created",
|
|
211
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
|
|
212
|
+
)
|
|
213
|
+
|
|
214
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
215
|
+
BLOCKCHAIN_ADDRESS_UPDATED =
|
|
216
|
+
T.let(
|
|
217
|
+
:"blockchain_address.updated",
|
|
218
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
|
|
219
|
+
)
|
|
220
|
+
|
|
221
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
222
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED =
|
|
223
|
+
T.let(
|
|
224
|
+
:"blockchain_offramp_transfer.created",
|
|
225
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
|
|
226
|
+
)
|
|
227
|
+
|
|
228
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
229
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED =
|
|
230
|
+
T.let(
|
|
231
|
+
:"blockchain_offramp_transfer.updated",
|
|
232
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
|
|
233
|
+
)
|
|
234
|
+
|
|
235
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
236
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED =
|
|
237
|
+
T.let(
|
|
238
|
+
:"blockchain_onramp_transfer.created",
|
|
239
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
|
|
240
|
+
)
|
|
241
|
+
|
|
242
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
243
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED =
|
|
244
|
+
T.let(
|
|
245
|
+
:"blockchain_onramp_transfer.updated",
|
|
246
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
|
|
247
|
+
)
|
|
248
|
+
|
|
207
249
|
# Occurs whenever a Bookkeeping Account is created.
|
|
208
250
|
BOOKKEEPING_ACCOUNT_CREATED =
|
|
209
251
|
T.let(
|