increase 1.199.0 → 1.200.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: ba78439d653dcf2b59b683334ca50a9793c4c03e6791613775e2e88b91297f96
4
- data.tar.gz: 6548a16b76627d45318749c20ef210820b1b9626b0332df1d286f416bc2ee620
3
+ metadata.gz: 18d429558f087f6d8b69ddcdcfcdec1275aaf255e6e0dad8b49ac47a2af53226
4
+ data.tar.gz: 5a89e5e801f21d99357c814a071eb2b10576c0af0ebf52bd72d2a9112266a58f
5
5
  SHA512:
6
- metadata.gz: 704b11a167c2bfd11954a5757a5441c982a5ab25c51bbcd51238ca8645e35b3bb8201b4977dc611d65af19a4a58a69793fa2ec3bed55110b67eb8ddac185c27b
7
- data.tar.gz: 9b4bd97a4df61cb345fbac28ffc7cfeb751226c89624520c0112564670ee4318db624c8de19710ff04707164ffb84494427eaa5c3014397bd71d2e803ba512fc
6
+ metadata.gz: 882ac99ca0a49dd0429065edee2306b0dc23e5c2dd0a8c794fdbe7a0bd0be943e8f8cc607f60fe03b4220c4be44371ab36b974dd534f3e0a42d6077804819804
7
+ data.tar.gz: 27403c097b0b2e9defb10f1d13ce27b135a5f064626117025979b616ba0510bb1d152d8d2da190766d1f38bf0584c7f023662cec29acfbeaed3641dd8ef9c9c6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.200.0 (2026-02-05)
4
+
5
+ Full Changelog: [v1.199.0...v1.200.0](https://github.com/Increase/increase-ruby/compare/v1.199.0...v1.200.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([384b3e6](https://github.com/Increase/increase-ruby/commit/384b3e658511e0eae3e01aa17f5c59c32a013f44))
10
+
3
11
  ## 1.199.0 (2026-02-04)
4
12
 
5
13
  Full Changelog: [v1.198.0...v1.199.0](https://github.com/Increase/increase-ruby/compare/v1.198.0...v1.199.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.199.0"
18
+ gem "increase", "~> 1.200.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -185,6 +185,16 @@ module Increase
185
185
  -> { Increase::PendingTransaction::Source::ACHTransferInstruction },
186
186
  nil?: true
187
187
 
188
+ # @!attribute blockchain_offramp_transfer_instruction
189
+ # A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
190
+ # the JSON response if and only if `category` is equal to
191
+ # `blockchain_offramp_transfer_instruction`.
192
+ #
193
+ # @return [Increase::Models::PendingTransaction::Source::BlockchainOfframpTransferInstruction, nil]
194
+ required :blockchain_offramp_transfer_instruction,
195
+ -> { Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction },
196
+ nil?: true
197
+
188
198
  # @!attribute blockchain_offramp_transfer_intention
189
199
  # A Blockchain Off-Ramp Transfer Intention object. This field will be present in
190
200
  # the JSON response if and only if `category` is equal to
@@ -330,7 +340,7 @@ module Increase
330
340
  -> { Increase::PendingTransaction::Source::WireTransferInstruction },
331
341
  nil?: true
332
342
 
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:)
343
+ # @!method initialize(account_transfer_instruction:, ach_transfer_instruction:, blockchain_offramp_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:)
334
344
  # Some parameter documentations has been truncated, see
335
345
  # {Increase::Models::PendingTransaction::Source} for more details.
336
346
  #
@@ -342,6 +352,8 @@ module Increase
342
352
  #
343
353
  # @param ach_transfer_instruction [Increase::Models::PendingTransaction::Source::ACHTransferInstruction, nil] An ACH Transfer Instruction object. This field will be present in the JSON respo
344
354
  #
355
+ # @param blockchain_offramp_transfer_instruction [Increase::Models::PendingTransaction::Source::BlockchainOfframpTransferInstruction, nil] A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
356
+ #
345
357
  # @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
358
  #
347
359
  # @param blockchain_onramp_transfer_instruction [Increase::Models::PendingTransaction::Source::BlockchainOnrampTransferInstruction, nil] A Blockchain On-Ramp Transfer Instruction object. This field will be present in
@@ -447,6 +459,34 @@ module Increase
447
459
  # @param transfer_id [String] The identifier of the ACH Transfer that led to this Pending Transaction.
448
460
  end
449
461
 
462
+ # @see Increase::Models::PendingTransaction::Source#blockchain_offramp_transfer_instruction
463
+ class BlockchainOfframpTransferInstruction < Increase::Internal::Type::BaseModel
464
+ # @!attribute source_blockchain_address_id
465
+ # The identifier of the Blockchain Address the funds were received at.
466
+ #
467
+ # @return [String]
468
+ required :source_blockchain_address_id, String
469
+
470
+ # @!attribute transfer_id
471
+ # The identifier of the Blockchain Off-Ramp Transfer that led to this Transaction.
472
+ #
473
+ # @return [String]
474
+ required :transfer_id, String
475
+
476
+ # @!method initialize(source_blockchain_address_id:, transfer_id:)
477
+ # Some parameter documentations has been truncated, see
478
+ # {Increase::Models::PendingTransaction::Source::BlockchainOfframpTransferInstruction}
479
+ # for more details.
480
+ #
481
+ # A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
482
+ # the JSON response if and only if `category` is equal to
483
+ # `blockchain_offramp_transfer_instruction`.
484
+ #
485
+ # @param source_blockchain_address_id [String] The identifier of the Blockchain Address the funds were received at.
486
+ #
487
+ # @param transfer_id [String] The identifier of the Blockchain Off-Ramp Transfer that led to this Transaction.
488
+ end
489
+
450
490
  # @see Increase::Models::PendingTransaction::Source#blockchain_offramp_transfer_intention
451
491
  class BlockchainOfframpTransferIntention < Increase::Internal::Type::BaseModel
452
492
  # @!attribute source_blockchain_address_id
@@ -1824,6 +1864,9 @@ module Increase
1824
1864
  # Blockchain On-Ramp Transfer Instruction: details will be under the `blockchain_onramp_transfer_instruction` object.
1825
1865
  BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION = :blockchain_onramp_transfer_instruction
1826
1866
 
1867
+ # Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
1868
+ BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION = :blockchain_offramp_transfer_instruction
1869
+
1827
1870
  # Blockchain Off-Ramp Transfer Intention: details will be under the `blockchain_offramp_transfer_intention` object.
1828
1871
  BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION = :blockchain_offramp_transfer_intention
1829
1872
 
@@ -130,6 +130,9 @@ module Increase
130
130
  # Blockchain On-Ramp Transfer Instruction: details will be under the `blockchain_onramp_transfer_instruction` object.
131
131
  BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION = :blockchain_onramp_transfer_instruction
132
132
 
133
+ # Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
134
+ BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION = :blockchain_offramp_transfer_instruction
135
+
133
136
  # Blockchain Off-Ramp Transfer Intention: details will be under the `blockchain_offramp_transfer_intention` object.
134
137
  BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION = :blockchain_offramp_transfer_intention
135
138
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.199.0"
4
+ VERSION = "1.200.0"
5
5
  end
@@ -277,6 +277,28 @@ module Increase
277
277
  end
278
278
  attr_writer :ach_transfer_instruction
279
279
 
280
+ # A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
281
+ # the JSON response if and only if `category` is equal to
282
+ # `blockchain_offramp_transfer_instruction`.
283
+ sig do
284
+ returns(
285
+ T.nilable(
286
+ Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction
287
+ )
288
+ )
289
+ end
290
+ attr_reader :blockchain_offramp_transfer_instruction
291
+
292
+ sig do
293
+ params(
294
+ blockchain_offramp_transfer_instruction:
295
+ T.nilable(
296
+ Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction::OrHash
297
+ )
298
+ ).void
299
+ end
300
+ attr_writer :blockchain_offramp_transfer_instruction
301
+
280
302
  # A Blockchain Off-Ramp Transfer Intention object. This field will be present in
281
303
  # the JSON response if and only if `category` is equal to
282
304
  # `blockchain_offramp_transfer_intention`.
@@ -573,6 +595,10 @@ module Increase
573
595
  T.nilable(
574
596
  Increase::PendingTransaction::Source::ACHTransferInstruction::OrHash
575
597
  ),
598
+ blockchain_offramp_transfer_instruction:
599
+ T.nilable(
600
+ Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction::OrHash
601
+ ),
576
602
  blockchain_offramp_transfer_intention:
577
603
  T.nilable(
578
604
  Increase::PendingTransaction::Source::BlockchainOfframpTransferIntention::OrHash
@@ -634,6 +660,10 @@ module Increase
634
660
  # An ACH Transfer Instruction object. This field will be present in the JSON
635
661
  # response if and only if `category` is equal to `ach_transfer_instruction`.
636
662
  ach_transfer_instruction:,
663
+ # A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
664
+ # the JSON response if and only if `category` is equal to
665
+ # `blockchain_offramp_transfer_instruction`.
666
+ blockchain_offramp_transfer_instruction:,
637
667
  # A Blockchain Off-Ramp Transfer Intention object. This field will be present in
638
668
  # the JSON response if and only if `category` is equal to
639
669
  # `blockchain_offramp_transfer_intention`.
@@ -703,6 +733,10 @@ module Increase
703
733
  T.nilable(
704
734
  Increase::PendingTransaction::Source::ACHTransferInstruction
705
735
  ),
736
+ blockchain_offramp_transfer_instruction:
737
+ T.nilable(
738
+ Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction
739
+ ),
706
740
  blockchain_offramp_transfer_intention:
707
741
  T.nilable(
708
742
  Increase::PendingTransaction::Source::BlockchainOfframpTransferIntention
@@ -893,6 +927,49 @@ module Increase
893
927
  end
894
928
  end
895
929
 
930
+ class BlockchainOfframpTransferInstruction < Increase::Internal::Type::BaseModel
931
+ OrHash =
932
+ T.type_alias do
933
+ T.any(
934
+ Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction,
935
+ Increase::Internal::AnyHash
936
+ )
937
+ end
938
+
939
+ # The identifier of the Blockchain Address the funds were received at.
940
+ sig { returns(String) }
941
+ attr_accessor :source_blockchain_address_id
942
+
943
+ # The identifier of the Blockchain Off-Ramp Transfer that led to this Transaction.
944
+ sig { returns(String) }
945
+ attr_accessor :transfer_id
946
+
947
+ # A Blockchain Off-Ramp Transfer Instruction object. This field will be present in
948
+ # the JSON response if and only if `category` is equal to
949
+ # `blockchain_offramp_transfer_instruction`.
950
+ sig do
951
+ params(
952
+ source_blockchain_address_id: String,
953
+ transfer_id: String
954
+ ).returns(T.attached_class)
955
+ end
956
+ def self.new(
957
+ # The identifier of the Blockchain Address the funds were received at.
958
+ source_blockchain_address_id:,
959
+ # The identifier of the Blockchain Off-Ramp Transfer that led to this Transaction.
960
+ transfer_id:
961
+ )
962
+ end
963
+
964
+ sig do
965
+ override.returns(
966
+ { source_blockchain_address_id: String, transfer_id: String }
967
+ )
968
+ end
969
+ def to_hash
970
+ end
971
+ end
972
+
896
973
  class BlockchainOfframpTransferIntention < Increase::Internal::Type::BaseModel
897
974
  OrHash =
898
975
  T.type_alias do
@@ -3475,6 +3552,13 @@ module Increase
3475
3552
  Increase::PendingTransaction::Source::Category::TaggedSymbol
3476
3553
  )
3477
3554
 
3555
+ # Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
3556
+ BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION =
3557
+ T.let(
3558
+ :blockchain_offramp_transfer_instruction,
3559
+ Increase::PendingTransaction::Source::Category::TaggedSymbol
3560
+ )
3561
+
3478
3562
  # Blockchain Off-Ramp Transfer Intention: details will be under the `blockchain_offramp_transfer_intention` object.
3479
3563
  BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION =
3480
3564
  T.let(
@@ -293,6 +293,13 @@ module Increase
293
293
  Increase::PendingTransactionListParams::Category::In::TaggedSymbol
294
294
  )
295
295
 
296
+ # Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
297
+ BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION =
298
+ T.let(
299
+ :blockchain_offramp_transfer_instruction,
300
+ Increase::PendingTransactionListParams::Category::In::TaggedSymbol
301
+ )
302
+
296
303
  # Blockchain Off-Ramp Transfer Intention: details will be under the `blockchain_offramp_transfer_intention` object.
297
304
  BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION =
298
305
  T.let(
@@ -108,6 +108,7 @@ module Increase
108
108
  {
109
109
  account_transfer_instruction: Increase::PendingTransaction::Source::AccountTransferInstruction?,
110
110
  ach_transfer_instruction: Increase::PendingTransaction::Source::ACHTransferInstruction?,
111
+ blockchain_offramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction?,
111
112
  blockchain_offramp_transfer_intention: Increase::PendingTransaction::Source::BlockchainOfframpTransferIntention?,
112
113
  blockchain_onramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOnrampTransferInstruction?,
113
114
  card_authorization: Increase::PendingTransaction::Source::CardAuthorization?,
@@ -130,6 +131,8 @@ module Increase
130
131
 
131
132
  attr_accessor ach_transfer_instruction: Increase::PendingTransaction::Source::ACHTransferInstruction?
132
133
 
134
+ attr_accessor blockchain_offramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction?
135
+
133
136
  attr_accessor blockchain_offramp_transfer_intention: Increase::PendingTransaction::Source::BlockchainOfframpTransferIntention?
134
137
 
135
138
  attr_accessor blockchain_onramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOnrampTransferInstruction?
@@ -163,6 +166,7 @@ module Increase
163
166
  def initialize: (
164
167
  account_transfer_instruction: Increase::PendingTransaction::Source::AccountTransferInstruction?,
165
168
  ach_transfer_instruction: Increase::PendingTransaction::Source::ACHTransferInstruction?,
169
+ blockchain_offramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction?,
166
170
  blockchain_offramp_transfer_intention: Increase::PendingTransaction::Source::BlockchainOfframpTransferIntention?,
167
171
  blockchain_onramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOnrampTransferInstruction?,
168
172
  card_authorization: Increase::PendingTransaction::Source::CardAuthorization?,
@@ -183,6 +187,7 @@ module Increase
183
187
  def to_hash: -> {
184
188
  account_transfer_instruction: Increase::PendingTransaction::Source::AccountTransferInstruction?,
185
189
  ach_transfer_instruction: Increase::PendingTransaction::Source::ACHTransferInstruction?,
190
+ blockchain_offramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOfframpTransferInstruction?,
186
191
  blockchain_offramp_transfer_intention: Increase::PendingTransaction::Source::BlockchainOfframpTransferIntention?,
187
192
  blockchain_onramp_transfer_instruction: Increase::PendingTransaction::Source::BlockchainOnrampTransferInstruction?,
188
193
  card_authorization: Increase::PendingTransaction::Source::CardAuthorization?,
@@ -250,6 +255,25 @@ module Increase
250
255
  def to_hash: -> { amount: Integer, transfer_id: String }
251
256
  end
252
257
 
258
+ type blockchain_offramp_transfer_instruction =
259
+ { source_blockchain_address_id: String, transfer_id: String }
260
+
261
+ class BlockchainOfframpTransferInstruction < Increase::Internal::Type::BaseModel
262
+ attr_accessor source_blockchain_address_id: String
263
+
264
+ attr_accessor transfer_id: String
265
+
266
+ def initialize: (
267
+ source_blockchain_address_id: String,
268
+ transfer_id: String
269
+ ) -> void
270
+
271
+ def to_hash: -> {
272
+ source_blockchain_address_id: String,
273
+ transfer_id: String
274
+ }
275
+ end
276
+
253
277
  type blockchain_offramp_transfer_intention =
254
278
  { source_blockchain_address_id: String, transfer_id: String }
255
279
 
@@ -1147,6 +1171,7 @@ module Increase
1147
1171
  | :swift_transfer_instruction
1148
1172
  | :card_push_transfer_instruction
1149
1173
  | :blockchain_onramp_transfer_instruction
1174
+ | :blockchain_offramp_transfer_instruction
1150
1175
  | :blockchain_offramp_transfer_intention
1151
1176
  | :other
1152
1177
 
@@ -1195,6 +1220,9 @@ module Increase
1195
1220
  # Blockchain On-Ramp Transfer Instruction: details will be under the `blockchain_onramp_transfer_instruction` object.
1196
1221
  BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION: :blockchain_onramp_transfer_instruction
1197
1222
 
1223
+ # Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
1224
+ BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION: :blockchain_offramp_transfer_instruction
1225
+
1198
1226
  # Blockchain Off-Ramp Transfer Intention: details will be under the `blockchain_offramp_transfer_intention` object.
1199
1227
  BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION: :blockchain_offramp_transfer_intention
1200
1228
 
@@ -107,6 +107,7 @@ module Increase
107
107
  | :swift_transfer_instruction
108
108
  | :card_push_transfer_instruction
109
109
  | :blockchain_onramp_transfer_instruction
110
+ | :blockchain_offramp_transfer_instruction
110
111
  | :blockchain_offramp_transfer_intention
111
112
  | :other
112
113
 
@@ -155,6 +156,9 @@ module Increase
155
156
  # Blockchain On-Ramp Transfer Instruction: details will be under the `blockchain_onramp_transfer_instruction` object.
156
157
  BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION: :blockchain_onramp_transfer_instruction
157
158
 
159
+ # Blockchain Off-Ramp Transfer Instruction: details will be under the `blockchain_offramp_transfer_instruction` object.
160
+ BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION: :blockchain_offramp_transfer_instruction
161
+
158
162
  # Blockchain Off-Ramp Transfer Intention: details will be under the `blockchain_offramp_transfer_intention` object.
159
163
  BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION: :blockchain_offramp_transfer_intention
160
164
 
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.199.0
4
+ version: 1.200.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-02-04 00:00:00.000000000 Z
11
+ date: 2026-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi