Skip to content
Merged
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
18 changes: 18 additions & 0 deletions api-reference/openapi_spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -9847,6 +9847,24 @@
}
}
}
},
{
"type": "string",
"enum": [
"user_pix_key"
]
},
{
"type": "string",
"enum": [
"user_cpf"
]
},
{
"type": "string",
"enum": [
"user_cnpj"
]
}
],
"description": "Possible field type of required fields in payment_method_data"
Expand Down
6 changes: 6 additions & 0 deletions crates/api_models/src/enums.rs
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,9 @@ pub enum FieldType {
UserDateOfBirth,
UserVpaId,
LanguagePreference { options: Vec<String> },
UserPixKey,
UserCpf,
UserCnpj,
}

impl FieldType {
Expand Down Expand Up @@ -560,6 +563,9 @@ impl PartialEq for FieldType {
) => options_self.eq(options_other),
(Self::UserDateOfBirth, Self::UserDateOfBirth) => true,
(Self::UserVpaId, Self::UserVpaId) => true,
(Self::UserPixKey, Self::UserPixKey) => true,
(Self::UserCpf, Self::UserCpf) => true,
(Self::UserCnpj, Self::UserCnpj) => true,
(Self::LanguagePreference { .. }, Self::LanguagePreference { .. }) => true,
_unused => false,
}
Expand Down
44 changes: 43 additions & 1 deletion crates/router/src/configs/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8871,7 +8871,49 @@ impl Default for super::settings::RequiredFields {
}
),
])}),
])))
(enums::PaymentMethodType::Pix,
ConnectorFields {
fields: HashMap::from([
(
enums::Connector::Itaubank,
RequiredFieldFinal {
mandate: HashMap::new(),
non_mandate: HashMap::new(),
common: HashMap::from(
[
(
"payment_method_data.bank_transfer.pix.pix_key".to_string(),
RequiredFieldInfo {
required_field: "payment_method_data.bank_transfer.pix.pix_key".to_string(),
display_name: "pix_key".to_string(),
field_type: enums::FieldType::UserPixKey,
value: None,
}
),
(
"payment_method_data.bank_transfer.pix.cnpj".to_string(),
RequiredFieldInfo {
required_field: "payment_method_data.bank_transfer.pix.cnpj".to_string(),
display_name: "cnpj".to_string(),
field_type: enums::FieldType::UserCnpj,
value: None,
}
),
(
"payment_method_data.bank_transfer.pix.cpf".to_string(),
RequiredFieldInfo {
required_field: "payment_method_data.bank_transfer.pix.cpf".to_string(),
display_name: "cpf".to_string(),
field_type: enums::FieldType::UserCpf,
value: None,
}
),
]
),
}
),
])}),
])))
]))
}
}
Expand Down