feat(portal-frontend): add worklist and case-detail typed interfaces and API services

Types mirror New.Api.Contracts verbatim; all write calls use the href
given in a case's actions block rather than a client-built URL.
This commit is contained in:
eho
2026-07-31 08:45:27 +02:00
parent 229ca9b7d9
commit b8a8d28e7b
6 changed files with 194 additions and 1 deletions
+3 -1
View File
@@ -1,4 +1,5 @@
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
import { provideHttpClient } from '@angular/common/http';
import { provideRouter } from '@angular/router';
import { routes } from './app.routes';
@@ -6,6 +7,7 @@ import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
providers: [
provideBrowserGlobalErrorListeners(),
provideRouter(routes)
provideRouter(routes),
provideHttpClient()
]
};