increase 1.337.0 → 1.338.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: 629be8d8f9a8b45280dfc906082d5554f2a91b56c459e4fca2a69300c7c4aec3
4
- data.tar.gz: e59403bc2d905200628519800d96919f4ad6206cf5deb9d8cc1dda729df430f6
3
+ metadata.gz: f2421d28be1ae99adb5ebd0f1d35ec9dc9bde67202bb9a603f87df09aceb1007
4
+ data.tar.gz: 27edbc064aaac7181030d074f4afe519af357bb0b5b8345bc85529a780f6656f
5
5
  SHA512:
6
- metadata.gz: c8a7f0ed0a6ab7316f32b9e07d474113fde870c216788c1107e9afa9d46013b0b965e7d3b76ada5ad45076f00b3bee538df9c8d9db818fc523a502f5819ddb8e
7
- data.tar.gz: 331152ce71672804632ccfb3b8b376146a9e6f59b581b70c4b70a5d0ade09452126146e50022f04830587304f9babf892d2807e44c722d6daa384da268890bb4
6
+ metadata.gz: 1a2ad5882a85fa5f919c3042f8b55a16a093fac9200d4c081f49797a43003dfc5a942548d558fa615a82c303a93d3293942ab392bb39490cd6deb27ad5468f64
7
+ data.tar.gz: 304c56360d05c83059b3905d2883dfea6d0a41e90dc81023f54121e187ac09d11d3dab40926fc438c07341c5d41d3a606fa950ed4e38fa64ff57b8bb403f7b71
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.338.0](https://github.com/Increase/increase-ruby/compare/v1.337.0...v1.338.0) (2026-06-23)
4
+
5
+
6
+ ### Features
7
+
8
+ * **api:** add UETR field to inbound FedNow transfers ([5bdc7d0](https://github.com/Increase/increase-ruby/commit/5bdc7d0c5a2afbec6b4eb41974a15e92180def50))
9
+
3
10
  ## [1.337.0](https://github.com/Increase/increase-ruby/compare/v1.336.0...v1.337.0) (2026-06-22)
4
11
 
5
12
 
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.337.0"
18
+ gem "increase", "~> 1.338.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -27,7 +27,8 @@ require "bundler/setup"
27
27
  require "increase"
28
28
 
29
29
  increase = Increase::Client.new(
30
- api_key: ENV["INCREASE_API_KEY"] # This is the default and can be omitted
30
+ api_key: ENV["INCREASE_API_KEY"], # This is the default and can be omitted
31
+ environment: "sandbox" # defaults to "production"
31
32
  )
32
33
 
33
34
  account = increase.accounts.create(
@@ -98,13 +98,21 @@ module Increase
98
98
  # @return [Symbol, Increase::Models::InboundFednowTransfer::Type]
99
99
  required :type, enum: -> { Increase::InboundFednowTransfer::Type }
100
100
 
101
+ # @!attribute unique_end_to_end_transaction_reference
102
+ # The Unique End-to-end Transaction Reference
103
+ # ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
104
+ # of the transfer.
105
+ #
106
+ # @return [String, nil]
107
+ required :unique_end_to_end_transaction_reference, String, nil?: true
108
+
101
109
  # @!attribute unstructured_remittance_information
102
110
  # Additional information included with the transfer.
103
111
  #
104
112
  # @return [String, nil]
105
113
  required :unstructured_remittance_information, String, nil?: true
106
114
 
107
- # @!method initialize(id:, account_id:, account_number_id:, amount:, confirmation:, created_at:, creditor_name:, currency:, debtor_account_number:, debtor_name:, debtor_routing_number:, decline:, status:, transaction_id:, type:, unstructured_remittance_information:)
115
+ # @!method initialize(id:, account_id:, account_number_id:, amount:, confirmation:, created_at:, creditor_name:, currency:, debtor_account_number:, debtor_name:, debtor_routing_number:, decline:, status:, transaction_id:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:)
108
116
  # Some parameter documentations has been truncated, see
109
117
  # {Increase::Models::InboundFednowTransfer} for more details.
110
118
  #
@@ -141,6 +149,8 @@ module Increase
141
149
  #
142
150
  # @param type [Symbol, Increase::Models::InboundFednowTransfer::Type] A constant representing the object's type. For this resource it will always be `
143
151
  #
152
+ # @param unique_end_to_end_transaction_reference [String, nil] The Unique End-to-end Transaction Reference ([UETR](https://www.swift.com/paymen
153
+ #
144
154
  # @param unstructured_remittance_information [String, nil] Additional information included with the transfer.
145
155
 
146
156
  # @see Increase::Models::InboundFednowTransfer#confirmation
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.337.0"
4
+ VERSION = "1.338.0"
5
5
  end
@@ -87,6 +87,12 @@ module Increase
87
87
  sig { returns(Increase::InboundFednowTransfer::Type::TaggedSymbol) }
88
88
  attr_accessor :type
89
89
 
90
+ # The Unique End-to-end Transaction Reference
91
+ # ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
92
+ # of the transfer.
93
+ sig { returns(T.nilable(String)) }
94
+ attr_accessor :unique_end_to_end_transaction_reference
95
+
90
96
  # Additional information included with the transfer.
91
97
  sig { returns(T.nilable(String)) }
92
98
  attr_accessor :unstructured_remittance_information
@@ -111,6 +117,7 @@ module Increase
111
117
  status: Increase::InboundFednowTransfer::Status::OrSymbol,
112
118
  transaction_id: T.nilable(String),
113
119
  type: Increase::InboundFednowTransfer::Type::OrSymbol,
120
+ unique_end_to_end_transaction_reference: T.nilable(String),
114
121
  unstructured_remittance_information: T.nilable(String)
115
122
  ).returns(T.attached_class)
116
123
  end
@@ -149,6 +156,10 @@ module Increase
149
156
  # A constant representing the object's type. For this resource it will always be
150
157
  # `inbound_fednow_transfer`.
151
158
  type:,
159
+ # The Unique End-to-end Transaction Reference
160
+ # ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
161
+ # of the transfer.
162
+ unique_end_to_end_transaction_reference:,
152
163
  # Additional information included with the transfer.
153
164
  unstructured_remittance_information:
154
165
  )
@@ -173,6 +184,7 @@ module Increase
173
184
  status: Increase::InboundFednowTransfer::Status::TaggedSymbol,
174
185
  transaction_id: T.nilable(String),
175
186
  type: Increase::InboundFednowTransfer::Type::TaggedSymbol,
187
+ unique_end_to_end_transaction_reference: T.nilable(String),
176
188
  unstructured_remittance_information: T.nilable(String)
177
189
  }
178
190
  )
@@ -17,6 +17,7 @@ module Increase
17
17
  status: Increase::Models::InboundFednowTransfer::status,
18
18
  transaction_id: String?,
19
19
  type: Increase::Models::InboundFednowTransfer::type_,
20
+ unique_end_to_end_transaction_reference: String?,
20
21
  unstructured_remittance_information: String?
21
22
  }
22
23
 
@@ -51,6 +52,8 @@ module Increase
51
52
 
52
53
  attr_accessor type: Increase::Models::InboundFednowTransfer::type_
53
54
 
55
+ attr_accessor unique_end_to_end_transaction_reference: String?
56
+
54
57
  attr_accessor unstructured_remittance_information: String?
55
58
 
56
59
  def initialize: (
@@ -69,6 +72,7 @@ module Increase
69
72
  status: Increase::Models::InboundFednowTransfer::status,
70
73
  transaction_id: String?,
71
74
  type: Increase::Models::InboundFednowTransfer::type_,
75
+ unique_end_to_end_transaction_reference: String?,
72
76
  unstructured_remittance_information: String?
73
77
  ) -> void
74
78
 
@@ -88,6 +92,7 @@ module Increase
88
92
  status: Increase::Models::InboundFednowTransfer::status,
89
93
  transaction_id: String?,
90
94
  type: Increase::Models::InboundFednowTransfer::type_,
95
+ unique_end_to_end_transaction_reference: String?,
91
96
  unstructured_remittance_information: String?
92
97
  }
93
98
 
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.337.0
4
+ version: 1.338.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-06-22 00:00:00.000000000 Z
11
+ date: 2026-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi