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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/inbound_mail_item.rb +9 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/inbound_mail_item.rbi +8 -0
- data/sig/increase/models/inbound_mail_item.rbs +10 -1
- 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: abcbb2ef54a395375c629a063bf03297afc3f254c72240b08ef675c50ef22f42
|
|
4
|
+
data.tar.gz: 9f7e375b7b2422993288fb6e1da978f7ca370e6f67228477ea49a14af15ee02b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
@@ -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
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -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
|
-
{
|
|
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
|