From 308445f34647224a10ccc825b8caec817b4af6de Mon Sep 17 00:00:00 2001 From: Md Sharafat Hassain Date: Thu, 9 Apr 2026 21:44:07 +0600 Subject: [PATCH] Plan-API : adding the update swagger --- src/app/modules/plan/plan.swagger.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/app/modules/plan/plan.swagger.ts b/src/app/modules/plan/plan.swagger.ts index 82ce586..4e20fe5 100644 --- a/src/app/modules/plan/plan.swagger.ts +++ b/src/app/modules/plan/plan.swagger.ts @@ -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 }, }, },