increase 1.262.0 → 1.263.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: d0f3f38754c155a91be7996e2f3e6dcdfcfde9ecfb8cf3ae3d0a09fd4830f94f
4
- data.tar.gz: 5f2bba57f4ca04ff2c9c53a12d48ad4cf494e1d85cd51eca3a64cb84f429b642
3
+ metadata.gz: 737efb7db57996a425b58fe535d2dca48fad857b79af2eed7b2be22974b936c6
4
+ data.tar.gz: 0eaa6201d859a6b9b9f53b426121a6e3abf3ae775d7a4438aebd570411319381
5
5
  SHA512:
6
- metadata.gz: 16f37b5106c75e286044e4bfb737ac142b8a85e7389ab4067538a298393573d7a7ed022c103a0850e5471c4fdffda18ec936eda9e1d17d2c4ceae94a4b04892b
7
- data.tar.gz: aacc0d1372a9a99e643727dd2d0728de35f0b61b7bc22da9fddfb4b05e53ddf5c2d53e4534fbe2d486c618c94050b5439e6d1407224e4ca8ba4ec45ec978cbee
6
+ metadata.gz: f2070466f4260e8cbbd276e3d75427243e3bb04189cf0eba354a0eefb41408ec1e01452840aaea81af8694f6b062855a17cbd4fb9487a0e2c3f51f432a7e88c3
7
+ data.tar.gz: b24c3baf8e3b328581dc71160dda9eacb20a5f9bd9e2b0bcbd4b79c091f6863587b807d369a15816c1c5e33609bcd1705755671c40bd2912db9fc1411ef3b4ca
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.263.0 (2026-03-19)
4
+
5
+ Full Changelog: [v1.262.0...v1.263.0](https://github.com/Increase/increase-ruby/compare/v1.262.0...v1.263.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([3d3c01e](https://github.com/Increase/increase-ruby/commit/3d3c01ed92f3bf1c934d1c5607e3195828e48249))
10
+
3
11
  ## 1.262.0 (2026-03-19)
4
12
 
5
13
  Full Changelog: [v1.261.0...v1.262.0](https://github.com/Increase/increase-ruby/compare/v1.261.0...v1.262.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.262.0"
18
+ gem "increase", "~> 1.263.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -7,12 +7,6 @@ module Increase
7
7
  extend Increase::Internal::Type::RequestParameters::Converter
8
8
  include Increase::Internal::Type::RequestParameters
9
9
 
10
- # @!attribute account_id
11
- # The identifier for the account that will send the transfer.
12
- #
13
- # @return [String]
14
- required :account_id, String
15
-
16
10
  # @!attribute amount
17
11
  # The amount, in minor units, to send to the creditor.
18
12
  #
@@ -80,12 +74,10 @@ module Increase
80
74
  # @return [String, nil]
81
75
  optional :routing_number, String
82
76
 
83
- # @!method initialize(account_id:, amount:, creditor_name:, debtor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, creditor_address: nil, debtor_address: nil, external_account_id: nil, require_approval: nil, routing_number: nil, request_options: {})
77
+ # @!method initialize(amount:, creditor_name:, debtor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, creditor_address: nil, debtor_address: nil, external_account_id: nil, require_approval: nil, routing_number: nil, request_options: {})
84
78
  # Some parameter documentations has been truncated, see
85
79
  # {Increase::Models::FednowTransferCreateParams} for more details.
86
80
  #
87
- # @param account_id [String] The identifier for the account that will send the transfer.
88
- #
89
81
  # @param amount [Integer] The amount, in minor units, to send to the creditor.
90
82
  #
91
83
  # @param creditor_name [String] The creditor's name.
@@ -8,9 +8,7 @@ module Increase
8
8
  #
9
9
  # Create a FedNow Transfer
10
10
  #
11
- # @overload create(account_id:, amount:, creditor_name:, debtor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, creditor_address: nil, debtor_address: nil, external_account_id: nil, require_approval: nil, routing_number: nil, request_options: {})
12
- #
13
- # @param account_id [String] The identifier for the account that will send the transfer.
11
+ # @overload create(amount:, creditor_name:, debtor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, creditor_address: nil, debtor_address: nil, external_account_id: nil, require_approval: nil, routing_number: nil, request_options: {})
14
12
  #
15
13
  # @param amount [Integer] The amount, in minor units, to send to the creditor.
16
14
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.262.0"
4
+ VERSION = "1.263.0"
5
5
  end
@@ -14,10 +14,6 @@ module Increase
14
14
  )
15
15
  end
16
16
 
17
- # The identifier for the account that will send the transfer.
18
- sig { returns(String) }
19
- attr_accessor :account_id
20
-
21
17
  # The amount, in minor units, to send to the creditor.
22
18
  sig { returns(Integer) }
23
19
  attr_accessor :amount
@@ -99,7 +95,6 @@ module Increase
99
95
 
100
96
  sig do
101
97
  params(
102
- account_id: String,
103
98
  amount: Integer,
104
99
  creditor_name: String,
105
100
  debtor_name: String,
@@ -117,8 +112,6 @@ module Increase
117
112
  ).returns(T.attached_class)
118
113
  end
119
114
  def self.new(
120
- # The identifier for the account that will send the transfer.
121
- account_id:,
122
115
  # The amount, in minor units, to send to the creditor.
123
116
  amount:,
124
117
  # The creditor's name.
@@ -149,7 +142,6 @@ module Increase
149
142
  sig do
150
143
  override.returns(
151
144
  {
152
- account_id: String,
153
145
  amount: Integer,
154
146
  creditor_name: String,
155
147
  debtor_name: String,
@@ -6,7 +6,6 @@ module Increase
6
6
  # Create a FedNow Transfer
7
7
  sig do
8
8
  params(
9
- account_id: String,
10
9
  amount: Integer,
11
10
  creditor_name: String,
12
11
  debtor_name: String,
@@ -24,8 +23,6 @@ module Increase
24
23
  ).returns(Increase::FednowTransfer)
25
24
  end
26
25
  def create(
27
- # The identifier for the account that will send the transfer.
28
- account_id:,
29
26
  # The amount, in minor units, to send to the creditor.
30
27
  amount:,
31
28
  # The creditor's name.
@@ -2,7 +2,6 @@ module Increase
2
2
  module Models
3
3
  type fednow_transfer_create_params =
4
4
  {
5
- account_id: String,
6
5
  amount: Integer,
7
6
  creditor_name: String,
8
7
  debtor_name: String,
@@ -21,8 +20,6 @@ module Increase
21
20
  extend Increase::Internal::Type::RequestParameters::Converter
22
21
  include Increase::Internal::Type::RequestParameters
23
22
 
24
- attr_accessor account_id: String
25
-
26
23
  attr_accessor amount: Integer
27
24
 
28
25
  attr_accessor creditor_name: String
@@ -62,7 +59,6 @@ module Increase
62
59
  def routing_number=: (String) -> String
63
60
 
64
61
  def initialize: (
65
- account_id: String,
66
62
  amount: Integer,
67
63
  creditor_name: String,
68
64
  debtor_name: String,
@@ -78,7 +74,6 @@ module Increase
78
74
  ) -> void
79
75
 
80
76
  def to_hash: -> {
81
- account_id: String,
82
77
  amount: Integer,
83
78
  creditor_name: String,
84
79
  debtor_name: String,
@@ -2,7 +2,6 @@ module Increase
2
2
  module Resources
3
3
  class FednowTransfers
4
4
  def create: (
5
- account_id: String,
6
5
  amount: Integer,
7
6
  creditor_name: String,
8
7
  debtor_name: String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.262.0
4
+ version: 1.263.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase