feat(server): create a person with optional values ()

* feat: create person dto

* chore: open api

* fix: e2e

* fix: web usage
This commit is contained in:
Jason Rasmussen 2024-03-07 15:34:57 -05:00 committed by GitHub
parent f1a8e385e9
commit 661409bac7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 372 additions and 148 deletions
mobile/openapi/lib

View file

@ -358,6 +358,8 @@ class ApiClient {
return PeopleUpdateDto.fromJson(value);
case 'PeopleUpdateItem':
return PeopleUpdateItem.fromJson(value);
case 'PersonCreateDto':
return PersonCreateDto.fromJson(value);
case 'PersonResponseDto':
return PersonResponseDto.fromJson(value);
case 'PersonStatisticsResponseDto':