1
This commit is contained in:
@@ -9,9 +9,13 @@ import { requestIdMiddleware } from './middleware/requestId.js';
|
||||
import { responseEnvelopeMiddleware } from './middleware/responseEnvelope.js';
|
||||
import { createCharacterAssetRoutes } from './modules/assets/characterAssetRoutes.js';
|
||||
import { createEditorRoutes } from './modules/editor/editorRoutes.js';
|
||||
import { createStoryActionRoutes } from './modules/story/storyActionRoutes.js';
|
||||
import { createAuthRoutes } from './routes/authRoutes.js';
|
||||
import { createRuntimeRoutes } from './routes/runtimeRoutes.js';
|
||||
import { createRpgEntrySaveRoutes } from './routes/rpg-entry/rpgEntrySaveRoutes.js';
|
||||
import { createRpgWorldLibraryRoutes } from './routes/rpg-entry/rpgWorldLibraryRoutes.js';
|
||||
import { createRpgProfileRoutes } from './routes/rpg-profile/rpgProfileRoutes.js';
|
||||
import { createRpgRuntimeAiAssistRoutes } from './routes/rpg-runtime/rpgRuntimeAiAssistRoutes.js';
|
||||
import { createRpgRuntimeStoryRoutes } from './routes/rpg-runtime/rpgRuntimeStoryRoutes.js';
|
||||
import { createCustomWorldAgentRoutes } from './routes/customWorldAgent.js';
|
||||
|
||||
function matchesRoutePrefix(
|
||||
request: express.Request,
|
||||
@@ -118,6 +122,33 @@ export function createApp(context: AppContext) {
|
||||
createCharacterAssetRoutes(context.config, context.llmClient),
|
||||
),
|
||||
);
|
||||
app.use(
|
||||
'/api',
|
||||
scopeToPrefixes(
|
||||
['/runtime/profile', '/profile', '/runtime/settings'],
|
||||
withRouteMeta({ routeVersion: '2026-04-21', operation: 'rpg.profile.api' }),
|
||||
),
|
||||
createRpgProfileRoutes(context),
|
||||
);
|
||||
app.use(
|
||||
'/api',
|
||||
scopeToPrefixes(
|
||||
['/runtime/save', '/runtime/profile/save-archives', '/profile/save-archives'],
|
||||
withRouteMeta({ routeVersion: '2026-04-21', operation: 'rpg.entry.save.api' }),
|
||||
),
|
||||
createRpgEntrySaveRoutes(context),
|
||||
);
|
||||
app.use(
|
||||
'/api',
|
||||
scopeToPrefixes(
|
||||
['/runtime/custom-world-gallery', '/runtime/custom-world/works', '/runtime/custom-world-library'],
|
||||
withRouteMeta({
|
||||
routeVersion: '2026-04-21',
|
||||
operation: 'rpg.entry.worldLibrary.api',
|
||||
}),
|
||||
),
|
||||
createRpgWorldLibraryRoutes(context),
|
||||
);
|
||||
app.use(
|
||||
'/api/auth',
|
||||
withRouteMeta({ routeVersion: '2026-04-08' }),
|
||||
@@ -125,13 +156,61 @@ export function createApp(context: AppContext) {
|
||||
);
|
||||
app.use(
|
||||
'/api/runtime/story',
|
||||
withRouteMeta({ routeVersion: '2026-04-08' }),
|
||||
createStoryActionRoutes(context),
|
||||
withRouteMeta({ routeVersion: '2026-04-21' }),
|
||||
createRpgRuntimeStoryRoutes(context),
|
||||
);
|
||||
app.use(
|
||||
scopeToPrefixes(
|
||||
[
|
||||
'/llm/chat/completions',
|
||||
'/custom-world/cover-image',
|
||||
'/custom-world/cover-upload',
|
||||
'/custom-world/scene-image',
|
||||
'/custom-world/entity',
|
||||
'/custom-world/scene-npc',
|
||||
'/runtime/custom-world/entity',
|
||||
'/runtime/custom-world/scene-npc',
|
||||
'/runtime/custom-world/profile',
|
||||
'/runtime/story/initial',
|
||||
'/runtime/story/continue',
|
||||
'/runtime/chat',
|
||||
'/runtime/items',
|
||||
'/runtime/quests',
|
||||
'/ws/health',
|
||||
],
|
||||
withRouteMeta({
|
||||
routeVersion: '2026-04-21',
|
||||
operation: 'rpg.runtime.aiAssist.api',
|
||||
}),
|
||||
),
|
||||
);
|
||||
app.use(
|
||||
'/api',
|
||||
withRouteMeta({ routeVersion: '2026-04-08' }),
|
||||
createRuntimeRoutes(context),
|
||||
scopeToPrefixes(
|
||||
[
|
||||
'/llm/chat/completions',
|
||||
'/custom-world/cover-image',
|
||||
'/custom-world/cover-upload',
|
||||
'/custom-world/scene-image',
|
||||
'/custom-world/entity',
|
||||
'/custom-world/scene-npc',
|
||||
'/runtime/custom-world/entity',
|
||||
'/runtime/custom-world/scene-npc',
|
||||
'/runtime/custom-world/profile',
|
||||
'/runtime/story/initial',
|
||||
'/runtime/story/continue',
|
||||
'/runtime/chat',
|
||||
'/runtime/items',
|
||||
'/runtime/quests',
|
||||
'/ws/health',
|
||||
],
|
||||
createRpgRuntimeAiAssistRoutes(context),
|
||||
),
|
||||
);
|
||||
app.use(
|
||||
'/api/runtime/custom-world/agent',
|
||||
withRouteMeta({ routeVersion: '2026-04-21', operation: 'rpg.creation.agent.api' }),
|
||||
createCustomWorldAgentRoutes(context),
|
||||
);
|
||||
app.use(
|
||||
express.static(context.config.publicDir, {
|
||||
|
||||
Reference in New Issue
Block a user