increase 1.165.0 → 1.166.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: 05da90968680e43dd96fe968137bb2d1fc7e3496d1352222dfe9b7e62b1dd847
4
- data.tar.gz: bc6e0aa22caa1006ee1a956bc69f6f173b66e9d01b33559165d473bc49440caf
3
+ metadata.gz: c6d8d790d06180693c67ef4103489a77c68673ffc28ccabb32d47ce107325a6d
4
+ data.tar.gz: c050385b3b6adb91a2b25bb01c9b1f588e8f9bd6cbe16cff30efb8756ea98462
5
5
  SHA512:
6
- metadata.gz: 6038689e8fcaeb411b2942fb9484b3f8437b0923a2908f8394ff830f91d13a5a5b7616ca30f41db4ad189cec54b4b8a3cb5819eccdf7ed18f83eac7c2b9f5152
7
- data.tar.gz: b88fdca387e061e4e4c129c238a641da6e706ae0b49e2a77eefc9df551e99fdc91aa686cad711d3f3178428d8ae7788a4f6d67f1467d4e8743d06ad585ad0c9d
6
+ metadata.gz: 73c101648ae44983b6e9ba36f03e9bf2cca65d9d420de21d86b3e65e8a1e01f3722a3b11089236a58793d5093ef4db80ca079e89056c32afc68116b0956079ff
7
+ data.tar.gz: 2c4fa5ecb7b66580c2dd2ac9766fe1063c11a18dca5667f87976c2155a5fa7517ac121609f625ac5910f8a0879906ef772cfa4b11f4a3415791a942c9b0b25cb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.166.0 (2025-12-17)
4
+
5
+ Full Changelog: [v1.165.0...v1.166.0](https://github.com/Increase/increase-ruby/compare/v1.165.0...v1.166.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([88bcbdb](https://github.com/Increase/increase-ruby/commit/88bcbdb902e7fb4c920d5e675385fb2a06a6ab96))
10
+
3
11
  ## 1.165.0 (2025-12-16)
4
12
 
5
13
  Full Changelog: [v1.164.1...v1.165.0](https://github.com/Increase/increase-ruby/compare/v1.164.1...v1.165.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.165.0"
18
+ gem "increase", "~> 1.166.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -115,6 +115,18 @@ module Increase
115
115
  # Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
116
116
  DASHBOARD_TABLE_CSV = :dashboard_table_csv
117
117
 
118
+ # A PDF of an account verification letter.
119
+ ACCOUNT_VERIFICATION_LETTER = :account_verification_letter
120
+
121
+ # A PDF of funding instructions.
122
+ FUNDING_INSTRUCTIONS = :funding_instructions
123
+
124
+ # A PDF of an Internal Revenue Service Form 1099-INT.
125
+ FORM_1099_INT = :form_1099_int
126
+
127
+ # A PDF of an Internal Revenue Service Form 1099-MISC.
128
+ FORM_1099_MISC = :form_1099_misc
129
+
118
130
  # @!method self.values
119
131
  # @return [Array<Symbol>]
120
132
  end
@@ -106,6 +106,18 @@ module Increase
106
106
  # Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
107
107
  DASHBOARD_TABLE_CSV = :dashboard_table_csv
108
108
 
109
+ # A PDF of an account verification letter.
110
+ ACCOUNT_VERIFICATION_LETTER = :account_verification_letter
111
+
112
+ # A PDF of funding instructions.
113
+ FUNDING_INSTRUCTIONS = :funding_instructions
114
+
115
+ # A PDF of an Internal Revenue Service Form 1099-INT.
116
+ FORM_1099_INT = :form_1099_int
117
+
118
+ # A PDF of an Internal Revenue Service Form 1099-MISC.
119
+ FORM_1099_MISC = :form_1099_misc
120
+
109
121
  # @!method self.values
110
122
  # @return [Array<Symbol>]
111
123
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.165.0"
4
+ VERSION = "1.166.0"
5
5
  end
@@ -154,6 +154,25 @@ module Increase
154
154
  DASHBOARD_TABLE_CSV =
155
155
  T.let(:dashboard_table_csv, Increase::Export::Category::TaggedSymbol)
156
156
 
157
+ # A PDF of an account verification letter.
158
+ ACCOUNT_VERIFICATION_LETTER =
159
+ T.let(
160
+ :account_verification_letter,
161
+ Increase::Export::Category::TaggedSymbol
162
+ )
163
+
164
+ # A PDF of funding instructions.
165
+ FUNDING_INSTRUCTIONS =
166
+ T.let(:funding_instructions, Increase::Export::Category::TaggedSymbol)
167
+
168
+ # A PDF of an Internal Revenue Service Form 1099-INT.
169
+ FORM_1099_INT =
170
+ T.let(:form_1099_int, Increase::Export::Category::TaggedSymbol)
171
+
172
+ # A PDF of an Internal Revenue Service Form 1099-MISC.
173
+ FORM_1099_MISC =
174
+ T.let(:form_1099_misc, Increase::Export::Category::TaggedSymbol)
175
+
157
176
  sig do
158
177
  override.returns(T::Array[Increase::Export::Category::TaggedSymbol])
159
178
  end
@@ -219,6 +219,34 @@ module Increase
219
219
  Increase::ExportListParams::Category::In::TaggedSymbol
220
220
  )
221
221
 
222
+ # A PDF of an account verification letter.
223
+ ACCOUNT_VERIFICATION_LETTER =
224
+ T.let(
225
+ :account_verification_letter,
226
+ Increase::ExportListParams::Category::In::TaggedSymbol
227
+ )
228
+
229
+ # A PDF of funding instructions.
230
+ FUNDING_INSTRUCTIONS =
231
+ T.let(
232
+ :funding_instructions,
233
+ Increase::ExportListParams::Category::In::TaggedSymbol
234
+ )
235
+
236
+ # A PDF of an Internal Revenue Service Form 1099-INT.
237
+ FORM_1099_INT =
238
+ T.let(
239
+ :form_1099_int,
240
+ Increase::ExportListParams::Category::In::TaggedSymbol
241
+ )
242
+
243
+ # A PDF of an Internal Revenue Service Form 1099-MISC.
244
+ FORM_1099_MISC =
245
+ T.let(
246
+ :form_1099_misc,
247
+ Increase::ExportListParams::Category::In::TaggedSymbol
248
+ )
249
+
222
250
  sig do
223
251
  override.returns(
224
252
  T::Array[Increase::ExportListParams::Category::In::TaggedSymbol]
@@ -60,6 +60,10 @@ module Increase
60
60
  | :entity_csv
61
61
  | :vendor_csv
62
62
  | :dashboard_table_csv
63
+ | :account_verification_letter
64
+ | :funding_instructions
65
+ | :form_1099_int
66
+ | :form_1099_misc
63
67
 
64
68
  module Category
65
69
  extend Increase::Internal::Type::Enum
@@ -88,6 +92,18 @@ module Increase
88
92
  # Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
89
93
  DASHBOARD_TABLE_CSV: :dashboard_table_csv
90
94
 
95
+ # A PDF of an account verification letter.
96
+ ACCOUNT_VERIFICATION_LETTER: :account_verification_letter
97
+
98
+ # A PDF of funding instructions.
99
+ FUNDING_INSTRUCTIONS: :funding_instructions
100
+
101
+ # A PDF of an Internal Revenue Service Form 1099-INT.
102
+ FORM_1099_INT: :form_1099_int
103
+
104
+ # A PDF of an Internal Revenue Service Form 1099-MISC.
105
+ FORM_1099_MISC: :form_1099_misc
106
+
91
107
  def self?.values: -> ::Array[Increase::Models::Export::category]
92
108
  end
93
109
 
@@ -92,6 +92,10 @@ module Increase
92
92
  | :entity_csv
93
93
  | :vendor_csv
94
94
  | :dashboard_table_csv
95
+ | :account_verification_letter
96
+ | :funding_instructions
97
+ | :form_1099_int
98
+ | :form_1099_misc
95
99
 
96
100
  module In
97
101
  extend Increase::Internal::Type::Enum
@@ -120,6 +124,18 @@ module Increase
120
124
  # Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
121
125
  DASHBOARD_TABLE_CSV: :dashboard_table_csv
122
126
 
127
+ # A PDF of an account verification letter.
128
+ ACCOUNT_VERIFICATION_LETTER: :account_verification_letter
129
+
130
+ # A PDF of funding instructions.
131
+ FUNDING_INSTRUCTIONS: :funding_instructions
132
+
133
+ # A PDF of an Internal Revenue Service Form 1099-INT.
134
+ FORM_1099_INT: :form_1099_int
135
+
136
+ # A PDF of an Internal Revenue Service Form 1099-MISC.
137
+ FORM_1099_MISC: :form_1099_misc
138
+
123
139
  def self?.values: -> ::Array[Increase::Models::ExportListParams::Category::in_]
124
140
  end
125
141
  end
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.165.0
4
+ version: 1.166.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-16 00:00:00.000000000 Z
11
+ date: 2025-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool