Plan-API : adding the update swagger

This commit is contained in:
Md Sharafat Hassain
2026-04-09 21:44:07 +06:00
parent 2f8c9dbc45
commit 308445f346
+12 -1
View File
@@ -91,7 +91,18 @@ export const planSwaggerDocs = {
required: true,
content: {
"application/json": {
example: JSON.stringify({}), // put your request body
example: JSON.stringify({
"planName": "PRO Plan",
"price": 12,
"planType": "PRO",
"planDesc": "The plan is only for pro users",
"planFeatures": {
"storage": "10GB",
"projects": 5,
"support": "Email Support"
}
}), // put your request body
},
},
},