mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-27 11:24:45 +08:00
refactor(gsm): add error_category column to gsm table (#6648)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -10296,6 +10296,16 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"ErrorCategory": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"frm_decline",
|
||||
"processor_downtime",
|
||||
"processor_decline_unauthorized",
|
||||
"issue_with_payment_method",
|
||||
"processor_decline_incorrect_data"
|
||||
]
|
||||
},
|
||||
"EventClass": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
@ -11639,6 +11649,14 @@
|
||||
"type": "string",
|
||||
"description": "error message unified across the connectors",
|
||||
"nullable": true
|
||||
},
|
||||
"error_category": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/ErrorCategory"
|
||||
}
|
||||
],
|
||||
"nullable": true
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -11772,6 +11790,14 @@
|
||||
"type": "string",
|
||||
"description": "error message unified across the connectors",
|
||||
"nullable": true
|
||||
},
|
||||
"error_category": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/ErrorCategory"
|
||||
}
|
||||
],
|
||||
"nullable": true
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -11868,6 +11894,14 @@
|
||||
"type": "string",
|
||||
"description": "error message unified across the connectors",
|
||||
"nullable": true
|
||||
},
|
||||
"error_category": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/components/schemas/ErrorCategory"
|
||||
}
|
||||
],
|
||||
"nullable": true
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user