feat: hooked the APIs of the app into the pyoide core.

This commit is contained in:
2026-02-24 20:58:10 +01:00
parent 9238ad630c
commit c3aacd7776
37 changed files with 5623 additions and 8 deletions

View File

@@ -14,6 +14,7 @@ export type EditorRoute =
| 'metadata-diff'
| 'git-diff'
| 'documentation'
| 'api-documentation'
| 'site-validation'
| 'scripts';
@@ -29,6 +30,7 @@ export const EDITOR_TAB_ROUTE_REGISTRY: Record<TabType, Exclude<EditorRoute, 'da
'metadata-diff': 'metadata-diff',
'git-diff': 'git-diff',
documentation: 'documentation',
'api-documentation': 'api-documentation',
'site-validation': 'site-validation',
scripts: 'scripts',
};