Skip to content

Commit 1a6d821

Browse files
feat(api): Add PENDING_REVIEW status to KYB enrollment simulation
1 parent 986c92f commit 1a6d821

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 177
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-cf14cb6b172fa5b0674b4d1b9c183c0776bc03e1c71808aa5b655a4302a44940.yml
3-
openapi_spec_hash: 9a72138012f47d97fac1827c5cf4f563
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-da8525181ab7cccb66db674dd7243de54b28969c0395223f6dbec3c791f1e7b0.yml
3+
openapi_spec_hash: f4f45e8ca906900f78f1c8aa0233fc20
44
config_hash: 693dddc4721eef512d75ab6c60897794

lib/lithic/models/account_holder_simulate_enrollment_review_params.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ module Status
4545

4646
ACCEPTED = :ACCEPTED
4747
REJECTED = :REJECTED
48+
PENDING_REVIEW = :PENDING_REVIEW
4849

4950
# @!method self.values
5051
# @return [Array<Symbol>]

rbi/lithic/models/account_holder_simulate_enrollment_review_params.rbi

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@ module Lithic
126126
:REJECTED,
127127
Lithic::AccountHolderSimulateEnrollmentReviewParams::Status::TaggedSymbol
128128
)
129+
PENDING_REVIEW =
130+
T.let(
131+
:PENDING_REVIEW,
132+
Lithic::AccountHolderSimulateEnrollmentReviewParams::Status::TaggedSymbol
133+
)
129134

130135
sig do
131136
override.returns(

sig/lithic/models/account_holder_simulate_enrollment_review_params.rbs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,14 @@ module Lithic
4242
request_options: Lithic::RequestOptions
4343
}
4444

45-
type status = :ACCEPTED | :REJECTED
45+
type status = :ACCEPTED | :REJECTED | :PENDING_REVIEW
4646

4747
module Status
4848
extend Lithic::Internal::Type::Enum
4949

5050
ACCEPTED: :ACCEPTED
5151
REJECTED: :REJECTED
52+
PENDING_REVIEW: :PENDING_REVIEW
5253

5354
def self?.values: -> ::Array[Lithic::Models::AccountHolderSimulateEnrollmentReviewParams::status]
5455
end

0 commit comments

Comments
 (0)