docs(mintlify): remove OpenAPI Endpoints groups; add localized MDX endpoint pages for pt-BR and ko

This commit is contained in:
tonykipkemboi
2025-08-20 11:23:31 -04:00
parent 34100d290b
commit e08d210bb8
7 changed files with 54 additions and 14 deletions

View File

@@ -347,10 +347,6 @@
"en/api-reference/kickoff", "en/api-reference/kickoff",
"en/api-reference/status" "en/api-reference/status"
] ]
},
{
"group": "Endpoints",
"openapi": { "source": "/enterprise-api.en.yaml", "directory": "api-reference" }
} }
] ]
}, },
@@ -685,11 +681,12 @@
"groups": [ "groups": [
{ {
"group": "Começando", "group": "Começando",
"pages": ["pt-BR/api-reference/introduction"] "pages": [
}, "pt-BR/api-reference/introduction",
{ "pt-BR/api-reference/inputs",
"group": "Endpoints", "pt-BR/api-reference/kickoff",
"openapi": { "source": "/enterprise-api.pt-BR.yaml", "directory": "api-reference" } "pt-BR/api-reference/status"
]
} }
] ]
}, },
@@ -1031,11 +1028,12 @@
"groups": [ "groups": [
{ {
"group": "시작 안내", "group": "시작 안내",
"pages": ["ko/api-reference/introduction"] "pages": [
}, "ko/api-reference/introduction",
{ "ko/api-reference/inputs",
"group": "Endpoints", "ko/api-reference/kickoff",
"openapi": { "source": "/enterprise-api.ko.yaml", "directory": "api-reference" } "ko/api-reference/status"
]
} }
] ]
}, },

View File

@@ -0,0 +1,7 @@
---
title: "GET /inputs"
description: "크루가 필요로 하는 입력 확인"
openapi: "/enterprise-api.ko.yaml GET /inputs"
---

View File

@@ -0,0 +1,7 @@
---
title: "POST /kickoff"
description: "크루 실행 시작"
openapi: "/enterprise-api.ko.yaml POST /kickoff"
---

View File

@@ -0,0 +1,7 @@
---
title: "GET /status/{kickoff_id}"
description: "실행 상태 조회"
openapi: "/enterprise-api.ko.yaml GET /status/{kickoff_id}"
---

View File

@@ -0,0 +1,7 @@
---
title: "GET /inputs"
description: "Obter entradas necessárias para sua crew"
openapi: "/enterprise-api.pt-BR.yaml GET /inputs"
---

View File

@@ -0,0 +1,7 @@
---
title: "POST /kickoff"
description: "Iniciar a execução da crew"
openapi: "/enterprise-api.pt-BR.yaml POST /kickoff"
---

View File

@@ -0,0 +1,7 @@
---
title: "GET /status/{kickoff_id}"
description: "Obter o status da execução"
openapi: "/enterprise-api.pt-BR.yaml GET /status/{kickoff_id}"
---