increase 1.292.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: b24eedb7f63c0c1f0f735cc2e9ccc0c4bbb1cc4a2460788b29eb544a6231080b
4
- data.tar.gz: f802d9d1223e6d842e44f2eb7641f4e0584644563678997dc9d867454f37af0e
3
+ metadata.gz: f27d6f8d78af4a33d7b458c035245c4e044b3a3e72a75c5170ac24022674b580
4
+ data.tar.gz: b35640a9e4076bda3c967450239e038fc84245eeab1334636d046642fc624da4
5
5
  SHA512:
6
- metadata.gz: 27c29454d2720a5d51cb3b4e94a5eba19d3a9f64224a4582ecbd92b17445e584dc0cf97a719979f82f278e04041cceb3528a466cb0d3858935197867830279e4
7
- data.tar.gz: c839a7c57216d0c48d0fcc1d54b6c4b794fb6448a8dd626856781f254f6441e2d38859e904d7d17c34edf14a0472e5d214a93f52a6a4c9316cc7fda636b7af1f
6
+ metadata.gz: c9477f09858c87ba749ec0536c2d5e9082969f13efccb9d71b5e5134f55b0a97c2b5ad5f3f0d7615ebc45e989471aeae9f3399afa7e8c60c971f56a4de4776ea
7
+ data.tar.gz: afe6393b06142cec7b5d7f5afb782d2382951bf9bb17e6228474e001c5c987b31647b43f6eb994809030df334d3575300e7aaf27877f4b906b438bce3435128d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
3
11
  ## 1.292.0 (2026-04-12)
4
12
 
5
13
  Full Changelog: [v1.291.0...v1.292.0](https://github.com/Increase/increase-ruby/compare/v1.291.0...v1.292.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.292.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'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.292.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:
@@ -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?,
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.292.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