Skip to content

Commit

Permalink
fix: fix errors examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ilfa committed Oct 25, 2024
1 parent b4be5f6 commit a2d7e87
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/deep-sides-grow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'fingerprint-pro-server-api-openapi': patch
---

Fix errors examples `403_feature_not_enabled` and `403_subscription_not_active`.
4 changes: 2 additions & 2 deletions schemas/paths/examples/errors/403_feature_not_enabled.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"error": {
"code": "SubscriptionNotActive",
"message": "forbidden"
"code": "FeatureNotEnabled",
"message": "feature not enabled"
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"error": {
"code": "FeatureNotEnabled",
"message": "feature not enabled"
"code": "SubscriptionNotActive",
"message": "forbidden"
}
}

0 comments on commit a2d7e87

Please sign in to comment.