mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-01 19:42:27 +08:00
chore: fix typos (#5766)
This commit is contained in:
@ -142,7 +142,7 @@ impl SecretsHandler for settings::ApiKeys {
|
||||
}
|
||||
|
||||
#[async_trait::async_trait]
|
||||
impl SecretsHandler for settings::ApplePayDecryptConifg {
|
||||
impl SecretsHandler for settings::ApplePayDecryptConfig {
|
||||
async fn convert_to_raw_secret(
|
||||
value: SecretStateContainer<Self, SecuredSecret>,
|
||||
secret_management_client: &dyn SecretManagementInterface,
|
||||
@ -343,7 +343,7 @@ pub(crate) async fn fetch_raw_secrets(
|
||||
.expect("Failed to decrypt connector_onboarding configs");
|
||||
|
||||
#[allow(clippy::expect_used)]
|
||||
let applepay_decrypt_keys = settings::ApplePayDecryptConifg::convert_to_raw_secret(
|
||||
let applepay_decrypt_keys = settings::ApplePayDecryptConfig::convert_to_raw_secret(
|
||||
conf.applepay_decrypt_keys,
|
||||
secret_management_client,
|
||||
)
|
||||
|
||||
@ -94,7 +94,7 @@ pub struct Settings<S: SecretState> {
|
||||
#[cfg(feature = "payouts")]
|
||||
pub payouts: Payouts,
|
||||
pub payout_method_filters: ConnectorFilters,
|
||||
pub applepay_decrypt_keys: SecretStateContainer<ApplePayDecryptConifg, S>,
|
||||
pub applepay_decrypt_keys: SecretStateContainer<ApplePayDecryptConfig, S>,
|
||||
pub multiple_api_version_supported_connectors: MultipleApiVersionSupportedConnectors,
|
||||
pub applepay_merchant_configs: SecretStateContainer<ApplepayMerchantConfigs, S>,
|
||||
pub lock_settings: LockSettings,
|
||||
@ -687,7 +687,7 @@ pub struct WebhookSourceVerificationCall {
|
||||
}
|
||||
|
||||
#[derive(Debug, Deserialize, Clone, Default)]
|
||||
pub struct ApplePayDecryptConifg {
|
||||
pub struct ApplePayDecryptConfig {
|
||||
pub apple_pay_ppc: Secret<String>,
|
||||
pub apple_pay_ppc_key: Secret<String>,
|
||||
pub apple_pay_merchant_cert: Secret<String>,
|
||||
|
||||
Reference in New Issue
Block a user