increase 1.162.0 → 1.163.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/file.rb +1 -1
- data/lib/increase/models/file_create_params.rb +1 -1
- data/lib/increase/models/file_list_params.rb +1 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/file.rbi +1 -1
- data/rbi/increase/models/file_create_params.rbi +1 -1
- data/rbi/increase/models/file_list_params.rbi +1 -1
- data/sig/increase/models/file.rbs +1 -1
- data/sig/increase/models/file_create_params.rbs +1 -1
- data/sig/increase/models/file_list_params.rbs +1 -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: f036ff9d2fc74cbf85957c86f6a0c1811381bbcc1b534c86ef135ce3f9e0ad59
|
|
4
|
+
data.tar.gz: d759321d5640bc36dbf7d74c0580b93796b1d3a9984a79540667e897543a11f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22ac974e6fb92426bfe3581e6262a4845d78da1223147c4b25bbc705ace20e104db45fc97f199385ab104844dea16d94a8bf890973ea777851161a39e7669c6a
|
|
7
|
+
data.tar.gz: d3f4eba6161c12c46ab62a8015e4012174b0a419bdfc768fbd8cf10d38f8c519c235cb6f96d76eb2cf7f6f463b369b32592174ab0b2158951b2d831a6bd0e483
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.163.0 (2025-12-15)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.162.0...v1.163.0](https://github.com/Increase/increase-ruby/compare/v1.162.0...v1.163.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([e460bf9](https://github.com/Increase/increase-ruby/commit/e460bf9922c48bef47dc445ea2d40fd7da99c249))
|
|
10
|
+
|
|
3
11
|
## 1.162.0 (2025-12-15)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.161.0...v1.162.0](https://github.com/Increase/increase-ruby/compare/v1.161.0...v1.162.0)
|
data/README.md
CHANGED
data/lib/increase/models/file.rb
CHANGED
|
@@ -132,7 +132,7 @@ module Increase
|
|
|
132
132
|
# An image of a check that was mailed to a recipient.
|
|
133
133
|
MAILED_CHECK_IMAGE = :mailed_check_image
|
|
134
134
|
|
|
135
|
-
# A document to be printed on an additional page and mailed with a check that you've requested Increase print.
|
|
135
|
+
# A document to be printed on an additional page and mailed with a check that you've requested Increase print. This must be a PDF whose pages are all US letter size and all have the same orientation.
|
|
136
136
|
CHECK_ATTACHMENT = :check_attachment
|
|
137
137
|
|
|
138
138
|
# An image to be used as the check voucher image, which is printed in the middle of the trifold area of a check. This must be a 2550x1100 pixel PNG.
|
|
@@ -55,7 +55,7 @@ module Increase
|
|
|
55
55
|
# An image of a check that was mailed to a recipient.
|
|
56
56
|
MAILED_CHECK_IMAGE = :mailed_check_image
|
|
57
57
|
|
|
58
|
-
# A document to be printed on an additional page and mailed with a check that you've requested Increase print.
|
|
58
|
+
# A document to be printed on an additional page and mailed with a check that you've requested Increase print. This must be a PDF whose pages are all US letter size and all have the same orientation.
|
|
59
59
|
CHECK_ATTACHMENT = :check_attachment
|
|
60
60
|
|
|
61
61
|
# An image to be used as the check voucher image, which is printed in the middle of the trifold area of a check. This must be a 2550x1100 pixel PNG.
|
|
@@ -134,7 +134,7 @@ module Increase
|
|
|
134
134
|
# An image of a check that was mailed to a recipient.
|
|
135
135
|
MAILED_CHECK_IMAGE = :mailed_check_image
|
|
136
136
|
|
|
137
|
-
# A document to be printed on an additional page and mailed with a check that you've requested Increase print.
|
|
137
|
+
# A document to be printed on an additional page and mailed with a check that you've requested Increase print. This must be a PDF whose pages are all US letter size and all have the same orientation.
|
|
138
138
|
CHECK_ATTACHMENT = :check_attachment
|
|
139
139
|
|
|
140
140
|
# An image to be used as the check voucher image, which is printed in the middle of the trifold area of a check. This must be a 2550x1100 pixel PNG.
|
data/lib/increase/version.rb
CHANGED
|
@@ -170,7 +170,7 @@ module Increase
|
|
|
170
170
|
MAILED_CHECK_IMAGE =
|
|
171
171
|
T.let(:mailed_check_image, Increase::File::Purpose::TaggedSymbol)
|
|
172
172
|
|
|
173
|
-
# A document to be printed on an additional page and mailed with a check that you've requested Increase print.
|
|
173
|
+
# A document to be printed on an additional page and mailed with a check that you've requested Increase print. This must be a PDF whose pages are all US letter size and all have the same orientation.
|
|
174
174
|
CHECK_ATTACHMENT =
|
|
175
175
|
T.let(:check_attachment, Increase::File::Purpose::TaggedSymbol)
|
|
176
176
|
|
|
@@ -98,7 +98,7 @@ module Increase
|
|
|
98
98
|
Increase::FileCreateParams::Purpose::TaggedSymbol
|
|
99
99
|
)
|
|
100
100
|
|
|
101
|
-
# A document to be printed on an additional page and mailed with a check that you've requested Increase print.
|
|
101
|
+
# A document to be printed on an additional page and mailed with a check that you've requested Increase print. This must be a PDF whose pages are all US letter size and all have the same orientation.
|
|
102
102
|
CHECK_ATTACHMENT =
|
|
103
103
|
T.let(
|
|
104
104
|
:check_attachment,
|
|
@@ -262,7 +262,7 @@ module Increase
|
|
|
262
262
|
Increase::FileListParams::Purpose::In::TaggedSymbol
|
|
263
263
|
)
|
|
264
264
|
|
|
265
|
-
# A document to be printed on an additional page and mailed with a check that you've requested Increase print.
|
|
265
|
+
# A document to be printed on an additional page and mailed with a check that you've requested Increase print. This must be a PDF whose pages are all US letter size and all have the same orientation.
|
|
266
266
|
CHECK_ATTACHMENT =
|
|
267
267
|
T.let(
|
|
268
268
|
:check_attachment,
|
|
@@ -124,7 +124,7 @@ module Increase
|
|
|
124
124
|
# An image of a check that was mailed to a recipient.
|
|
125
125
|
MAILED_CHECK_IMAGE: :mailed_check_image
|
|
126
126
|
|
|
127
|
-
# A document to be printed on an additional page and mailed with a check that you've requested Increase print.
|
|
127
|
+
# A document to be printed on an additional page and mailed with a check that you've requested Increase print. This must be a PDF whose pages are all US letter size and all have the same orientation.
|
|
128
128
|
CHECK_ATTACHMENT: :check_attachment
|
|
129
129
|
|
|
130
130
|
# An image to be used as the check voucher image, which is printed in the middle of the trifold area of a check. This must be a 2550x1100 pixel PNG.
|
|
@@ -70,7 +70,7 @@ module Increase
|
|
|
70
70
|
# An image of a check that was mailed to a recipient.
|
|
71
71
|
MAILED_CHECK_IMAGE: :mailed_check_image
|
|
72
72
|
|
|
73
|
-
# A document to be printed on an additional page and mailed with a check that you've requested Increase print.
|
|
73
|
+
# A document to be printed on an additional page and mailed with a check that you've requested Increase print. This must be a PDF whose pages are all US letter size and all have the same orientation.
|
|
74
74
|
CHECK_ATTACHMENT: :check_attachment
|
|
75
75
|
|
|
76
76
|
# An image to be used as the check voucher image, which is printed in the middle of the trifold area of a check. This must be a 2550x1100 pixel PNG.
|
|
@@ -163,7 +163,7 @@ module Increase
|
|
|
163
163
|
# An image of a check that was mailed to a recipient.
|
|
164
164
|
MAILED_CHECK_IMAGE: :mailed_check_image
|
|
165
165
|
|
|
166
|
-
# A document to be printed on an additional page and mailed with a check that you've requested Increase print.
|
|
166
|
+
# A document to be printed on an additional page and mailed with a check that you've requested Increase print. This must be a PDF whose pages are all US letter size and all have the same orientation.
|
|
167
167
|
CHECK_ATTACHMENT: :check_attachment
|
|
168
168
|
|
|
169
169
|
# An image to be used as the check voucher image, which is printed in the middle of the trifold area of a check. This must be a 2550x1100 pixel PNG.
|