feat(router): implement post_update_tracker for SessionUpdate Flow and add support for session_update_flow for Paypal (#6299)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Swangi Kumari
2024-10-15 23:38:44 +05:30
committed by GitHub
parent 342529e056
commit 7e90031c68
29 changed files with 536 additions and 131 deletions

View File

@ -404,25 +404,25 @@ pub enum AuthorizationStatus {
Unresolved,
}
// #[derive(
// Clone,
// Debug,
// Eq,
// PartialEq,
// serde::Deserialize,
// serde::Serialize,
// strum::Display,
// strum::EnumString,
// ToSchema,
// Hash,
// )]
// #[router_derive::diesel_enum(storage_type = "text")]
// #[serde(rename_all = "snake_case")]
// #[strum(serialize_all = "snake_case")]
// pub enum SessionUpdateStatus {
// Success,
// Failure,
// }
#[derive(
Clone,
Debug,
Eq,
PartialEq,
serde::Deserialize,
serde::Serialize,
strum::Display,
strum::EnumString,
ToSchema,
Hash,
)]
#[router_derive::diesel_enum(storage_type = "text")]
#[serde(rename_all = "snake_case")]
#[strum(serialize_all = "snake_case")]
pub enum SessionUpdateStatus {
Success,
Failure,
}
#[derive(
Clone,