increase 1.132.0 → 1.133.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: bd1e36726c3bf38c5343d2cc09d33c7edcfd8f3805c443b505d9062e24d02c91
4
- data.tar.gz: 9bb00e7d1ae102ad2cca0e8bc0c5e3ea8281993360ac4f62a4ab477f29e10897
3
+ metadata.gz: abcbb2ef54a395375c629a063bf03297afc3f254c72240b08ef675c50ef22f42
4
+ data.tar.gz: 9f7e375b7b2422993288fb6e1da978f7ca370e6f67228477ea49a14af15ee02b
5
5
  SHA512:
6
- metadata.gz: 86eed7a1542e6944b0baf4535ee7277b77940a9ad2640297c846f9b24b2a6293faba95ea798f5dd15b060dc6c649edd37f367c12e4ebf3df3e98d1538b0333d3
7
- data.tar.gz: 5b694d81602223ac2008f40b11b768280d2ca3ea4dda211354efa9a9c06f8a8de40a677ec2422c677ded3af86f1e1c7b47ff9605084f59b65c551042ed4dfa43
6
+ metadata.gz: 4a9c197ed9538df78226464ccf705de6a3c6280605c4263655e8b938cc98cc67f86742b415d799120e1e08380c640c257639449d3c33347006c0063fa0f2695f
7
+ data.tar.gz: 45af721ca5456e5e4f219d89e30e958a5ad76e29ede06ff69117142d078c2fa2df33cbb2a16dc5c5c412276a3fb989dfc5a0def824162023d29390633e3cc353
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.133.0 (2025-11-06)
4
+
5
+ Full Changelog: [v1.132.0...v1.133.0](https://github.com/Increase/increase-ruby/compare/v1.132.0...v1.133.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([d6d8c4d](https://github.com/Increase/increase-ruby/commit/d6d8c4d6ca601cf6b8783448e1a1714dd9efcde0))
10
+
3
11
  ## 1.132.0 (2025-11-06)
4
12
 
5
13
  Full Changelog: [v1.131.0...v1.132.0](https://github.com/Increase/increase-ruby/compare/v1.131.0...v1.132.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.132.0"
18
+ gem "increase", "~> 1.133.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -98,19 +98,27 @@ module Increase
98
98
  # @return [String, nil]
99
99
  required :back_file_id, String, nil?: true
100
100
 
101
+ # @!attribute check_deposit_id
102
+ # The identifier of the Check Deposit if this check was deposited.
103
+ #
104
+ # @return [String, nil]
105
+ required :check_deposit_id, String, nil?: true
106
+
101
107
  # @!attribute front_file_id
102
108
  # The identifier for the File containing the front of the check.
103
109
  #
104
110
  # @return [String, nil]
105
111
  required :front_file_id, String, nil?: true
106
112
 
107
- # @!method initialize(amount:, back_file_id:, front_file_id:)
113
+ # @!method initialize(amount:, back_file_id:, check_deposit_id:, front_file_id:)
108
114
  # Inbound Mail Item Checks represent the checks in an Inbound Mail Item.
109
115
  #
110
116
  # @param amount [Integer] The amount of the check.
111
117
  #
112
118
  # @param back_file_id [String, nil] The identifier for the File containing the back of the check.
113
119
  #
120
+ # @param check_deposit_id [String, nil] The identifier of the Check Deposit if this check was deposited.
121
+ #
114
122
  # @param front_file_id [String, nil] The identifier for the File containing the front of the check.
115
123
  end
116
124
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.132.0"
4
+ VERSION = "1.133.0"
5
5
  end
@@ -126,6 +126,10 @@ module Increase
126
126
  sig { returns(T.nilable(String)) }
127
127
  attr_accessor :back_file_id
128
128
 
129
+ # The identifier of the Check Deposit if this check was deposited.
130
+ sig { returns(T.nilable(String)) }
131
+ attr_accessor :check_deposit_id
132
+
129
133
  # The identifier for the File containing the front of the check.
130
134
  sig { returns(T.nilable(String)) }
131
135
  attr_accessor :front_file_id
@@ -135,6 +139,7 @@ module Increase
135
139
  params(
136
140
  amount: Integer,
137
141
  back_file_id: T.nilable(String),
142
+ check_deposit_id: T.nilable(String),
138
143
  front_file_id: T.nilable(String)
139
144
  ).returns(T.attached_class)
140
145
  end
@@ -143,6 +148,8 @@ module Increase
143
148
  amount:,
144
149
  # The identifier for the File containing the back of the check.
145
150
  back_file_id:,
151
+ # The identifier of the Check Deposit if this check was deposited.
152
+ check_deposit_id:,
146
153
  # The identifier for the File containing the front of the check.
147
154
  front_file_id:
148
155
  )
@@ -153,6 +160,7 @@ module Increase
153
160
  {
154
161
  amount: Integer,
155
162
  back_file_id: T.nilable(String),
163
+ check_deposit_id: T.nilable(String),
156
164
  front_file_id: T.nilable(String)
157
165
  }
158
166
  )
@@ -57,24 +57,33 @@ module Increase
57
57
  }
58
58
 
59
59
  type check =
60
- { amount: Integer, back_file_id: String?, front_file_id: String? }
60
+ {
61
+ amount: Integer,
62
+ back_file_id: String?,
63
+ check_deposit_id: String?,
64
+ front_file_id: String?
65
+ }
61
66
 
62
67
  class Check < Increase::Internal::Type::BaseModel
63
68
  attr_accessor amount: Integer
64
69
 
65
70
  attr_accessor back_file_id: String?
66
71
 
72
+ attr_accessor check_deposit_id: String?
73
+
67
74
  attr_accessor front_file_id: String?
68
75
 
69
76
  def initialize: (
70
77
  amount: Integer,
71
78
  back_file_id: String?,
79
+ check_deposit_id: String?,
72
80
  front_file_id: String?
73
81
  ) -> void
74
82
 
75
83
  def to_hash: -> {
76
84
  amount: Integer,
77
85
  back_file_id: String?,
86
+ check_deposit_id: String?,
78
87
  front_file_id: String?
79
88
  }
80
89
  end
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.132.0
4
+ version: 1.133.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase