From ff3f5a9b8f581eec564d1f4649b509f76f939f7e Mon Sep 17 00:00:00 2001 From: "n.nakhostin" Date: Wed, 20 Aug 2025 12:29:27 +0330 Subject: [PATCH] Add Company Information Access to API Documentation - Updated API documentation to include a new section for company information access, detailing operations related to company profiles and tenders. - Enhanced Swagger JSON, YAML, and Go documentation to accurately reflect the new "Company" tag, ensuring clarity for mobile application users. - This addition improves the overall usability of the API by providing comprehensive information on company-related functionalities. --- cmd/web/docs/docs.go | 4 ++++ cmd/web/docs/swagger.json | 4 ++++ cmd/web/docs/swagger.yaml | 3 +++ 3 files changed, 11 insertions(+) diff --git a/cmd/web/docs/docs.go b/cmd/web/docs/docs.go index 500804c..edb66a4 100644 --- a/cmd/web/docs/docs.go +++ b/cmd/web/docs/docs.go @@ -8425,6 +8425,10 @@ const docTemplate = `{ "description": "Customer authentication and authorization operations for mobile application including login, logout, token refresh, and profile access", "name": "Authorization" }, + { + "description": "Company information access for mobile application including company profile and company tenders", + "name": "Company" + }, { "description": "Public tender information access for mobile application including active tender listings and detailed tender information", "name": "Tenders" diff --git a/cmd/web/docs/swagger.json b/cmd/web/docs/swagger.json index dab8bbd..0ddbef9 100644 --- a/cmd/web/docs/swagger.json +++ b/cmd/web/docs/swagger.json @@ -8419,6 +8419,10 @@ "description": "Customer authentication and authorization operations for mobile application including login, logout, token refresh, and profile access", "name": "Authorization" }, + { + "description": "Company information access for mobile application including company profile and company tenders", + "name": "Company" + }, { "description": "Public tender information access for mobile application including active tender listings and detailed tender information", "name": "Tenders" diff --git a/cmd/web/docs/swagger.yaml b/cmd/web/docs/swagger.yaml index 7f29b63..f832558 100644 --- a/cmd/web/docs/swagger.yaml +++ b/cmd/web/docs/swagger.yaml @@ -5381,6 +5381,9 @@ tags: - description: Customer authentication and authorization operations for mobile application including login, logout, token refresh, and profile access name: Authorization +- description: Company information access for mobile application including company + profile and company tenders + name: Company - description: Public tender information access for mobile application including active tender listings and detailed tender information name: Tenders