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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 95a8747fa00f6f4934dc38e1a4a23a192cc319730c52f32816ec9a25306c5f73
4
- data.tar.gz: e7e4d7388577b4098f2d1030803f9c2a73c4acc555cb0a628f42dc1d0be3f792
3
+ metadata.gz: f036ff9d2fc74cbf85957c86f6a0c1811381bbcc1b534c86ef135ce3f9e0ad59
4
+ data.tar.gz: d759321d5640bc36dbf7d74c0580b93796b1d3a9984a79540667e897543a11f3
5
5
  SHA512:
6
- metadata.gz: 3d6ecaa1dafe96ea8367365bf9f0fadb6300f408a5a28408cd52621afc00d6cf822f61ea1c23e6192aaba37235c73ec17eec3b32dbf9d8f2e4773dffcec2026f
7
- data.tar.gz: 73f2c6e2dae4a0cf0b6c28fc77f8d16ee2483c7c7d2d9e6c13c3a5c7e0795d8b98894d7b4c935d1b5dceb4e452e086eb49af05e1862027cc3a305fd942d11df8
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
@@ -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.162.0"
18
+ gem "increase", "~> 1.163.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.162.0"
4
+ VERSION = "1.163.0"
5
5
  end
@@ -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.
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.162.0
4
+ version: 1.163.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase