Skip to content

Commit f5f2fdb

Browse files
feat(api): add REVERSED status value to payment list params
1 parent eeb4a32 commit f5f2fdb

4 files changed

Lines changed: 7 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: 214
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-46435dfdef99ea1c005a78bab282c859980e1edd5570e781bf3b67dd97ebf545.yml
3-
openapi_spec_hash: fe504df52c793d72df78146d3fb6f3ac
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-5b3d4793b9cc2b4a6ac971f36d5e8a08b48fb976aba670f9ffedc929a52d3e0a.yml
3+
openapi_spec_hash: 3bcf49d20dbd24100d67fa3750a40e6b
44
config_hash: 5bb913c05ebeb301ec925b16e75bb251

lib/lithic/models/payment_list_params.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ module Status
124124
DECLINED = :DECLINED
125125
PENDING = :PENDING
126126
RETURNED = :RETURNED
127+
REVERSED = :REVERSED
127128
SETTLED = :SETTLED
128129

129130
# @!method self.values

rbi/lithic/models/payment_list_params.rbi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,8 @@ module Lithic
202202
T.let(:PENDING, Lithic::PaymentListParams::Status::TaggedSymbol)
203203
RETURNED =
204204
T.let(:RETURNED, Lithic::PaymentListParams::Status::TaggedSymbol)
205+
REVERSED =
206+
T.let(:REVERSED, Lithic::PaymentListParams::Status::TaggedSymbol)
205207
SETTLED =
206208
T.let(:SETTLED, Lithic::PaymentListParams::Status::TaggedSymbol)
207209

sig/lithic/models/payment_list_params.rbs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,15 @@ module Lithic
121121
def self?.values: -> ::Array[Lithic::Models::PaymentListParams::result]
122122
end
123123

124-
type status = :DECLINED | :PENDING | :RETURNED | :SETTLED
124+
type status = :DECLINED | :PENDING | :RETURNED | :REVERSED | :SETTLED
125125

126126
module Status
127127
extend Lithic::Internal::Type::Enum
128128

129129
DECLINED: :DECLINED
130130
PENDING: :PENDING
131131
RETURNED: :RETURNED
132+
REVERSED: :REVERSED
132133
SETTLED: :SETTLED
133134

134135
def self?.values: -> ::Array[Lithic::Models::PaymentListParams::status]

0 commit comments

Comments
 (0)