@prowodo/angular-client
v1.14.0
Published
Typed Angular client for ProWoDo — AI-native Scrum + MCP-friendly project management.
Readme
@prowodo/angular-client
Typed Angular client for ProWoDo.
Install
npm install @prowodo/angular-clientQuick start
import { ApiModule, Configuration, TasksService } from '@prowodo/angular-client';
@NgModule({
imports: [
ApiModule.forRoot(() => new Configuration({
basePath: 'https://backend.prowodo.com',
credentials: {
firebaseAuth: () => localStorage.getItem('FToken') ?? '',
},
})),
],
})
export class AppModule {}
// In a component:
constructor(private tasks: TasksService) {}
ngOnInit() {
this.tasks.tasksList().subscribe(tasks => console.log(tasks));
}API reference
The client is generated from the ProWoDo OpenAPI schema. Browse the runtime schema at https://backend.prowodo.com/api/schema/swagger-ui/.
Versioning
- Patch (1.0.x): additive non-breaking — new endpoint, new optional field/param
- Major (x.0.0): breaking — removed/renamed endpoint, removed field, changed type
See CHANGELOG.md in the repo for release notes.
License
MIT
