Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .generated/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,4 @@ lib/clerk-http-client/models/verify_totp_request.rb
lib/clerk-http-client/models/waitlist_entry.rb
lib/clerk-http-client/models/web3_wallet.rb
lib/clerk-http-client/models/web3_wallet_verification.rb
spec/api/billing_api_spec.rb
spec/models/commerce_subscription_next_payment_spec.rb
spec/models/commerce_subscription_spec.rb
spec/spec_helper.rb
4 changes: 2 additions & 2 deletions .generated/lib/clerk-http-client/models/verification_web3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def valid?
status_validator = EnumAttributeValidator.new('String', ["unverified", "verified", "failed", "expired"])
return false unless status_validator.valid?(@status)
return false if @strategy.nil?
strategy_validator = EnumAttributeValidator.new('String', ["web3_metamask_signature", "web3_coinbase_wallet_signature", "web3_okx_wallet_signature"])
strategy_validator = EnumAttributeValidator.new('String', ["web3_metamask_signature", "web3_base_signature", "web3_coinbase_wallet_signature", "web3_okx_wallet_signature"])
return false unless strategy_validator.valid?(@strategy)
true
end
Expand Down Expand Up @@ -207,7 +207,7 @@ def status=(status)
# Custom attribute writer method checking allowed values (enum).
# @param [Object] strategy Object to be assigned
def strategy=(strategy)
validator = EnumAttributeValidator.new('String', ["web3_metamask_signature", "web3_coinbase_wallet_signature", "web3_okx_wallet_signature"])
validator = EnumAttributeValidator.new('String', ["web3_metamask_signature", "web3_base_signature", "web3_coinbase_wallet_signature", "web3_okx_wallet_signature"])
unless validator.valid?(strategy)
fail ArgumentError, "invalid value for \"strategy\", must be one of #{validator.allowable_values}."
end
Expand Down