increase 1.132.0 → 1.134.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: 951c9998b6dcb58c6eeb657d1d38e7d80ae8396c61b81932ddba3d42bc734316
4
+ data.tar.gz: 2c38f8e9d2d76a5cb334a33b766f3a8f3f334315fef98640c50cd01aa1ef130a
5
5
  SHA512:
6
- metadata.gz: 86eed7a1542e6944b0baf4535ee7277b77940a9ad2640297c846f9b24b2a6293faba95ea798f5dd15b060dc6c649edd37f367c12e4ebf3df3e98d1538b0333d3
7
- data.tar.gz: 5b694d81602223ac2008f40b11b768280d2ca3ea4dda211354efa9a9c06f8a8de40a677ec2422c677ded3af86f1e1c7b47ff9605084f59b65c551042ed4dfa43
6
+ metadata.gz: 55e276ac70035d69a0782ca8b760668b11086adfb520094a8449a521138a97ecb90b1f4ea4a9d433131b05268b7c9ba601c37c5386775dc3b91175fe5cba3807
7
+ data.tar.gz: 91553ec8bc1a622e7cc0e2f00c0d6a937afdfa487be4700005e56033f10ac8d4ce94f7440674aa137a71abccbf96b948f468ff9b75ac090396037f748d529f3c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.134.0 (2025-11-07)
4
+
5
+ Full Changelog: [v1.133.0...v1.134.0](https://github.com/Increase/increase-ruby/compare/v1.133.0...v1.134.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([eda8aff](https://github.com/Increase/increase-ruby/commit/eda8afff6343175b8b8aa1558a8f225439622ebf))
10
+
11
+ ## 1.133.0 (2025-11-06)
12
+
13
+ Full Changelog: [v1.132.0...v1.133.0](https://github.com/Increase/increase-ruby/compare/v1.132.0...v1.133.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([d6d8c4d](https://github.com/Increase/increase-ruby/commit/d6d8c4d6ca601cf6b8783448e1a1714dd9efcde0))
18
+
3
19
  ## 1.132.0 (2025-11-06)
4
20
 
5
21
  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.134.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -153,6 +153,9 @@ module Increase
153
153
  # A statement generated by Increase.
154
154
  INCREASE_STATEMENT = :increase_statement
155
155
 
156
+ # A supplemental document for a Loan Application.
157
+ LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = :loan_application_supplemental_document
158
+
156
159
  # A file purpose not covered by any of the other cases.
157
160
  OTHER = :other
158
161
 
@@ -64,6 +64,9 @@ module Increase
64
64
  # An image of a government-issued ID.
65
65
  IDENTITY_DOCUMENT = :identity_document
66
66
 
67
+ # A supplemental document for a Loan Application.
68
+ LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = :loan_application_supplemental_document
69
+
67
70
  # A file purpose not covered by any of the other cases.
68
71
  OTHER = :other
69
72
 
@@ -155,6 +155,9 @@ module Increase
155
155
  # A statement generated by Increase.
156
156
  INCREASE_STATEMENT = :increase_statement
157
157
 
158
+ # A supplemental document for a Loan Application.
159
+ LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = :loan_application_supplemental_document
160
+
158
161
  # A file purpose not covered by any of the other cases.
159
162
  OTHER = :other
160
163
 
@@ -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.134.0"
5
5
  end
@@ -197,6 +197,13 @@ module Increase
197
197
  INCREASE_STATEMENT =
198
198
  T.let(:increase_statement, Increase::File::Purpose::TaggedSymbol)
199
199
 
200
+ # A supplemental document for a Loan Application.
201
+ LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT =
202
+ T.let(
203
+ :loan_application_supplemental_document,
204
+ Increase::File::Purpose::TaggedSymbol
205
+ )
206
+
200
207
  # A file purpose not covered by any of the other cases.
201
208
  OTHER = T.let(:other, Increase::File::Purpose::TaggedSymbol)
202
209
 
@@ -116,6 +116,13 @@ module Increase
116
116
  Increase::FileCreateParams::Purpose::TaggedSymbol
117
117
  )
118
118
 
119
+ # A supplemental document for a Loan Application.
120
+ LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT =
121
+ T.let(
122
+ :loan_application_supplemental_document,
123
+ Increase::FileCreateParams::Purpose::TaggedSymbol
124
+ )
125
+
119
126
  # A file purpose not covered by any of the other cases.
120
127
  OTHER = T.let(:other, Increase::FileCreateParams::Purpose::TaggedSymbol)
121
128
 
@@ -311,6 +311,13 @@ module Increase
311
311
  Increase::FileListParams::Purpose::In::TaggedSymbol
312
312
  )
313
313
 
314
+ # A supplemental document for a Loan Application.
315
+ LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT =
316
+ T.let(
317
+ :loan_application_supplemental_document,
318
+ Increase::FileListParams::Purpose::In::TaggedSymbol
319
+ )
320
+
314
321
  # A file purpose not covered by any of the other cases.
315
322
  OTHER =
316
323
  T.let(:other, Increase::FileListParams::Purpose::In::TaggedSymbol)
@@ -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
  )
@@ -84,6 +84,7 @@ module Increase
84
84
  | :form_ss_4
85
85
  | :identity_document
86
86
  | :increase_statement
87
+ | :loan_application_supplemental_document
87
88
  | :other
88
89
  | :trust_formation_document
89
90
  | :digital_wallet_artwork
@@ -143,6 +144,9 @@ module Increase
143
144
  # A statement generated by Increase.
144
145
  INCREASE_STATEMENT: :increase_statement
145
146
 
147
+ # A supplemental document for a Loan Application.
148
+ LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT: :loan_application_supplemental_document
149
+
146
150
  # A file purpose not covered by any of the other cases.
147
151
  OTHER: :other
148
152
 
@@ -42,6 +42,7 @@ module Increase
42
42
  | :check_attachment
43
43
  | :form_ss_4
44
44
  | :identity_document
45
+ | :loan_application_supplemental_document
45
46
  | :other
46
47
  | :trust_formation_document
47
48
  | :digital_wallet_artwork
@@ -77,6 +78,9 @@ module Increase
77
78
  # An image of a government-issued ID.
78
79
  IDENTITY_DOCUMENT: :identity_document
79
80
 
81
+ # A supplemental document for a Loan Application.
82
+ LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT: :loan_application_supplemental_document
83
+
80
84
  # A file purpose not covered by any of the other cases.
81
85
  OTHER: :other
82
86
 
@@ -123,6 +123,7 @@ module Increase
123
123
  | :form_ss_4
124
124
  | :identity_document
125
125
  | :increase_statement
126
+ | :loan_application_supplemental_document
126
127
  | :other
127
128
  | :trust_formation_document
128
129
  | :digital_wallet_artwork
@@ -182,6 +183,9 @@ module Increase
182
183
  # A statement generated by Increase.
183
184
  INCREASE_STATEMENT: :increase_statement
184
185
 
186
+ # A supplemental document for a Loan Application.
187
+ LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT: :loan_application_supplemental_document
188
+
185
189
  # A file purpose not covered by any of the other cases.
186
190
  OTHER: :other
187
191
 
@@ -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,14 +1,14 @@
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.134.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-11-06 00:00:00.000000000 Z
11
+ date: 2025-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool