increase 1.291.0 → 1.293.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: 04701f5cc966f87c80be5d546a0ebfb2c4aceaf452662f5c255ec44700432474
4
- data.tar.gz: f093c60a4d264cc201740c2a011e5cbcc428543e3657e40b397f8cdfc9a279f4
3
+ metadata.gz: f27d6f8d78af4a33d7b458c035245c4e044b3a3e72a75c5170ac24022674b580
4
+ data.tar.gz: b35640a9e4076bda3c967450239e038fc84245eeab1334636d046642fc624da4
5
5
  SHA512:
6
- metadata.gz: 9940ffa0a2c97e0135d6b68e1e45480b5becbe596f7615c64e3fa5393ba4075f27f7bfeea819825e96842f1e8a62840a72796e11178b034cd301f7fc8873c195
7
- data.tar.gz: 498d8f2ced98f35711a0aa64fb24a308be1458b870a79245d61483368605292a63e4dda62360e915c261e647d1eb01ea36cc8299b7774e10951225ad2e63de2e
6
+ metadata.gz: c9477f09858c87ba749ec0536c2d5e9082969f13efccb9d71b5e5134f55b0a97c2b5ad5f3f0d7615ebc45e989471aeae9f3399afa7e8c60c971f56a4de4776ea
7
+ data.tar.gz: afe6393b06142cec7b5d7f5afb782d2382951bf9bb17e6228474e001c5c987b31647b43f6eb994809030df334d3575300e7aaf27877f4b906b438bce3435128d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.293.0 (2026-04-13)
4
+
5
+ Full Changelog: [v1.292.0...v1.293.0](https://github.com/Increase/increase-ruby/compare/v1.292.0...v1.293.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([2bdd4bc](https://github.com/Increase/increase-ruby/commit/2bdd4bc5b465b78277c38a670df00e157d5be7a2))
10
+
11
+ ## 1.292.0 (2026-04-12)
12
+
13
+ Full Changelog: [v1.291.0...v1.292.0](https://github.com/Increase/increase-ruby/compare/v1.291.0...v1.292.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([7e88207](https://github.com/Increase/increase-ruby/commit/7e8820749f18fd75ac2e5b8e971e61d35b7776bb))
18
+
3
19
  ## 1.291.0 (2026-04-12)
4
20
 
5
21
  Full Changelog: [v1.290.0...v1.291.0](https://github.com/Increase/increase-ruby/compare/v1.290.0...v1.291.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.291.0"
18
+ gem "increase", "~> 1.293.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -24,6 +24,13 @@ module Increase
24
24
  # @return [Time]
25
25
  required :created_at, Time
26
26
 
27
+ # @!attribute creating_entity_onboarding_session_id
28
+ # The identifier of the Entity Onboarding Session that was used to create this
29
+ # Entity, if any.
30
+ #
31
+ # @return [String, nil]
32
+ required :creating_entity_onboarding_session_id, String, nil?: true
33
+
27
34
  # @!attribute description
28
35
  # The entity's description for display purposes.
29
36
  #
@@ -128,7 +135,7 @@ module Increase
128
135
  # @return [Increase::Models::Entity::Validation, nil]
129
136
  required :validation, -> { Increase::Entity::Validation }, nil?: true
130
137
 
131
- # @!method initialize(id:, corporation:, created_at:, description:, details_confirmed_at:, government_authority:, idempotency_key:, joint:, natural_person:, risk_rating:, status:, structure:, supplemental_documents:, terms_agreements:, third_party_verification:, trust:, type:, validation:)
138
+ # @!method initialize(id:, corporation:, created_at:, creating_entity_onboarding_session_id:, description:, details_confirmed_at:, government_authority:, idempotency_key:, joint:, natural_person:, risk_rating:, status:, structure:, supplemental_documents:, terms_agreements:, third_party_verification:, trust:, type:, validation:)
132
139
  # Some parameter documentations has been truncated, see {Increase::Models::Entity}
133
140
  # for more details.
134
141
  #
@@ -142,6 +149,8 @@ module Increase
142
149
  #
143
150
  # @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Entity
144
151
  #
152
+ # @param creating_entity_onboarding_session_id [String, nil] The identifier of the Entity Onboarding Session that was used to create this Ent
153
+ #
145
154
  # @param description [String, nil] The entity's description for display purposes.
146
155
  #
147
156
  # @param details_confirmed_at [Time, nil] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Entity'
@@ -142,6 +142,9 @@ module Increase
142
142
  # Occurs whenever a Card Payment is updated.
143
143
  CARD_PAYMENT_UPDATED = :"card_payment.updated"
144
144
 
145
+ # Occurs whenever a Card Purchase Supplement is created.
146
+ CARD_PURCHASE_SUPPLEMENT_CREATED = :"card_purchase_supplement.created"
147
+
145
148
  # Occurs whenever a Card Profile is created.
146
149
  CARD_PROFILE_CREATED = :"card_profile.created"
147
150
 
@@ -144,6 +144,9 @@ module Increase
144
144
  # Occurs whenever a Card Payment is updated.
145
145
  CARD_PAYMENT_UPDATED = :"card_payment.updated"
146
146
 
147
+ # Occurs whenever a Card Purchase Supplement is created.
148
+ CARD_PURCHASE_SUPPLEMENT_CREATED = :"card_purchase_supplement.created"
149
+
147
150
  # Occurs whenever a Card Profile is created.
148
151
  CARD_PROFILE_CREATED = :"card_profile.created"
149
152
 
@@ -176,6 +176,9 @@ module Increase
176
176
  # Occurs whenever a Card Payment is updated.
177
177
  CARD_PAYMENT_UPDATED = :"card_payment.updated"
178
178
 
179
+ # Occurs whenever a Card Purchase Supplement is created.
180
+ CARD_PURCHASE_SUPPLEMENT_CREATED = :"card_purchase_supplement.created"
181
+
179
182
  # Occurs whenever a Card Profile is created.
180
183
  CARD_PROFILE_CREATED = :"card_profile.created"
181
184
 
@@ -147,6 +147,9 @@ module Increase
147
147
  # Occurs whenever a Card Payment is updated.
148
148
  CARD_PAYMENT_UPDATED = :"card_payment.updated"
149
149
 
150
+ # Occurs whenever a Card Purchase Supplement is created.
151
+ CARD_PURCHASE_SUPPLEMENT_CREATED = :"card_purchase_supplement.created"
152
+
150
153
  # Occurs whenever a Card Profile is created.
151
154
  CARD_PROFILE_CREATED = :"card_profile.created"
152
155
 
@@ -141,6 +141,9 @@ module Increase
141
141
  # Occurs whenever a Card Payment is updated.
142
142
  CARD_PAYMENT_UPDATED = :"card_payment.updated"
143
143
 
144
+ # Occurs whenever a Card Purchase Supplement is created.
145
+ CARD_PURCHASE_SUPPLEMENT_CREATED = :"card_purchase_supplement.created"
146
+
144
147
  # Occurs whenever a Card Profile is created.
145
148
  CARD_PROFILE_CREATED = :"card_profile.created"
146
149
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.291.0"
4
+ VERSION = "1.293.0"
5
5
  end
@@ -27,6 +27,11 @@ module Increase
27
27
  sig { returns(Time) }
28
28
  attr_accessor :created_at
29
29
 
30
+ # The identifier of the Entity Onboarding Session that was used to create this
31
+ # Entity, if any.
32
+ sig { returns(T.nilable(String)) }
33
+ attr_accessor :creating_entity_onboarding_session_id
34
+
30
35
  # The entity's description for display purposes.
31
36
  sig { returns(T.nilable(String)) }
32
37
  attr_accessor :description
@@ -149,6 +154,7 @@ module Increase
149
154
  id: String,
150
155
  corporation: T.nilable(Increase::Entity::Corporation::OrHash),
151
156
  created_at: Time,
157
+ creating_entity_onboarding_session_id: T.nilable(String),
152
158
  description: T.nilable(String),
153
159
  details_confirmed_at: T.nilable(Time),
154
160
  government_authority:
@@ -178,6 +184,9 @@ module Increase
178
184
  # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Entity
179
185
  # was created.
180
186
  created_at:,
187
+ # The identifier of the Entity Onboarding Session that was used to create this
188
+ # Entity, if any.
189
+ creating_entity_onboarding_session_id:,
181
190
  # The entity's description for display purposes.
182
191
  description:,
183
192
  # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the
@@ -230,6 +239,7 @@ module Increase
230
239
  id: String,
231
240
  corporation: T.nilable(Increase::Entity::Corporation),
232
241
  created_at: Time,
242
+ creating_entity_onboarding_session_id: T.nilable(String),
233
243
  description: T.nilable(String),
234
244
  details_confirmed_at: T.nilable(Time),
235
245
  government_authority:
@@ -243,6 +243,13 @@ module Increase
243
243
  Increase::Event::Category::TaggedSymbol
244
244
  )
245
245
 
246
+ # Occurs whenever a Card Purchase Supplement is created.
247
+ CARD_PURCHASE_SUPPLEMENT_CREATED =
248
+ T.let(
249
+ :"card_purchase_supplement.created",
250
+ Increase::Event::Category::TaggedSymbol
251
+ )
252
+
246
253
  # Occurs whenever a Card Profile is created.
247
254
  CARD_PROFILE_CREATED =
248
255
  T.let(
@@ -312,6 +312,13 @@ module Increase
312
312
  Increase::EventListParams::Category::In::TaggedSymbol
313
313
  )
314
314
 
315
+ # Occurs whenever a Card Purchase Supplement is created.
316
+ CARD_PURCHASE_SUPPLEMENT_CREATED =
317
+ T.let(
318
+ :"card_purchase_supplement.created",
319
+ Increase::EventListParams::Category::In::TaggedSymbol
320
+ )
321
+
315
322
  # Occurs whenever a Card Profile is created.
316
323
  CARD_PROFILE_CREATED =
317
324
  T.let(
@@ -346,6 +346,13 @@ module Increase
346
346
  Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
347
347
  )
348
348
 
349
+ # Occurs whenever a Card Purchase Supplement is created.
350
+ CARD_PURCHASE_SUPPLEMENT_CREATED =
351
+ T.let(
352
+ :"card_purchase_supplement.created",
353
+ Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
354
+ )
355
+
349
356
  # Occurs whenever a Card Profile is created.
350
357
  CARD_PROFILE_CREATED =
351
358
  T.let(
@@ -344,6 +344,13 @@ module Increase
344
344
  Increase::EventSubscriptionCreateParams::SelectedEventCategory::EventCategory::TaggedSymbol
345
345
  )
346
346
 
347
+ # Occurs whenever a Card Purchase Supplement is created.
348
+ CARD_PURCHASE_SUPPLEMENT_CREATED =
349
+ T.let(
350
+ :"card_purchase_supplement.created",
351
+ Increase::EventSubscriptionCreateParams::SelectedEventCategory::EventCategory::TaggedSymbol
352
+ )
353
+
347
354
  # Occurs whenever a Card Profile is created.
348
355
  CARD_PROFILE_CREATED =
349
356
  T.let(
@@ -258,6 +258,13 @@ module Increase
258
258
  Increase::UnwrapWebhookEvent::Category::TaggedSymbol
259
259
  )
260
260
 
261
+ # Occurs whenever a Card Purchase Supplement is created.
262
+ CARD_PURCHASE_SUPPLEMENT_CREATED =
263
+ T.let(
264
+ :"card_purchase_supplement.created",
265
+ Increase::UnwrapWebhookEvent::Category::TaggedSymbol
266
+ )
267
+
261
268
  # Occurs whenever a Card Profile is created.
262
269
  CARD_PROFILE_CREATED =
263
270
  T.let(
@@ -5,6 +5,7 @@ module Increase
5
5
  id: String,
6
6
  corporation: Increase::Entity::Corporation?,
7
7
  created_at: Time,
8
+ creating_entity_onboarding_session_id: String?,
8
9
  description: String?,
9
10
  details_confirmed_at: Time?,
10
11
  government_authority: Increase::Entity::GovernmentAuthority?,
@@ -29,6 +30,8 @@ module Increase
29
30
 
30
31
  attr_accessor created_at: Time
31
32
 
33
+ attr_accessor creating_entity_onboarding_session_id: String?
34
+
32
35
  attr_accessor description: String?
33
36
 
34
37
  attr_accessor details_confirmed_at: Time?
@@ -63,6 +66,7 @@ module Increase
63
66
  id: String,
64
67
  corporation: Increase::Entity::Corporation?,
65
68
  created_at: Time,
69
+ creating_entity_onboarding_session_id: String?,
66
70
  description: String?,
67
71
  details_confirmed_at: Time?,
68
72
  government_authority: Increase::Entity::GovernmentAuthority?,
@@ -84,6 +88,7 @@ module Increase
84
88
  id: String,
85
89
  corporation: Increase::Entity::Corporation?,
86
90
  created_at: Time,
91
+ creating_entity_onboarding_session_id: String?,
87
92
  description: String?,
88
93
  details_confirmed_at: Time?,
89
94
  government_authority: Increase::Entity::GovernmentAuthority?,
@@ -66,6 +66,7 @@ module Increase
66
66
  | :"card.updated"
67
67
  | :"card_payment.created"
68
68
  | :"card_payment.updated"
69
+ | :"card_purchase_supplement.created"
69
70
  | :"card_profile.created"
70
71
  | :"card_profile.updated"
71
72
  | :"card_dispute.created"
@@ -227,6 +228,9 @@ module Increase
227
228
  # Occurs whenever a Card Payment is updated.
228
229
  CARD_PAYMENT_UPDATED: :"card_payment.updated"
229
230
 
231
+ # Occurs whenever a Card Purchase Supplement is created.
232
+ CARD_PURCHASE_SUPPLEMENT_CREATED: :"card_purchase_supplement.created"
233
+
230
234
  # Occurs whenever a Card Profile is created.
231
235
  CARD_PROFILE_CREATED: :"card_profile.created"
232
236
 
@@ -99,6 +99,7 @@ module Increase
99
99
  | :"card.updated"
100
100
  | :"card_payment.created"
101
101
  | :"card_payment.updated"
102
+ | :"card_purchase_supplement.created"
102
103
  | :"card_profile.created"
103
104
  | :"card_profile.updated"
104
105
  | :"card_dispute.created"
@@ -260,6 +261,9 @@ module Increase
260
261
  # Occurs whenever a Card Payment is updated.
261
262
  CARD_PAYMENT_UPDATED: :"card_payment.updated"
262
263
 
264
+ # Occurs whenever a Card Purchase Supplement is created.
265
+ CARD_PURCHASE_SUPPLEMENT_CREATED: :"card_purchase_supplement.created"
266
+
263
267
  # Occurs whenever a Card Profile is created.
264
268
  CARD_PROFILE_CREATED: :"card_profile.created"
265
269
 
@@ -92,6 +92,7 @@ module Increase
92
92
  | :"card.updated"
93
93
  | :"card_payment.created"
94
94
  | :"card_payment.updated"
95
+ | :"card_purchase_supplement.created"
95
96
  | :"card_profile.created"
96
97
  | :"card_profile.updated"
97
98
  | :"card_dispute.created"
@@ -253,6 +254,9 @@ module Increase
253
254
  # Occurs whenever a Card Payment is updated.
254
255
  CARD_PAYMENT_UPDATED: :"card_payment.updated"
255
256
 
257
+ # Occurs whenever a Card Purchase Supplement is created.
258
+ CARD_PURCHASE_SUPPLEMENT_CREATED: :"card_purchase_supplement.created"
259
+
256
260
  # Occurs whenever a Card Profile is created.
257
261
  CARD_PROFILE_CREATED: :"card_profile.created"
258
262
 
@@ -95,6 +95,7 @@ module Increase
95
95
  | :"card.updated"
96
96
  | :"card_payment.created"
97
97
  | :"card_payment.updated"
98
+ | :"card_purchase_supplement.created"
98
99
  | :"card_profile.created"
99
100
  | :"card_profile.updated"
100
101
  | :"card_dispute.created"
@@ -256,6 +257,9 @@ module Increase
256
257
  # Occurs whenever a Card Payment is updated.
257
258
  CARD_PAYMENT_UPDATED: :"card_payment.updated"
258
259
 
260
+ # Occurs whenever a Card Purchase Supplement is created.
261
+ CARD_PURCHASE_SUPPLEMENT_CREATED: :"card_purchase_supplement.created"
262
+
259
263
  # Occurs whenever a Card Profile is created.
260
264
  CARD_PROFILE_CREATED: :"card_profile.created"
261
265
 
@@ -66,6 +66,7 @@ module Increase
66
66
  | :"card.updated"
67
67
  | :"card_payment.created"
68
68
  | :"card_payment.updated"
69
+ | :"card_purchase_supplement.created"
69
70
  | :"card_profile.created"
70
71
  | :"card_profile.updated"
71
72
  | :"card_dispute.created"
@@ -227,6 +228,9 @@ module Increase
227
228
  # Occurs whenever a Card Payment is updated.
228
229
  CARD_PAYMENT_UPDATED: :"card_payment.updated"
229
230
 
231
+ # Occurs whenever a Card Purchase Supplement is created.
232
+ CARD_PURCHASE_SUPPLEMENT_CREATED: :"card_purchase_supplement.created"
233
+
230
234
  # Occurs whenever a Card Profile is created.
231
235
  CARD_PROFILE_CREATED: :"card_profile.created"
232
236
 
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.291.0
4
+ version: 1.293.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-04-12 00:00:00.000000000 Z
11
+ date: 2026-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi