Missing API methods in TypedClient in OIM 9.1

Hello together,

when creating the TypedClient with the ImxClient, various API methods are missing in our CustomAPI. Some APIs are generated via the FromTable()-Method and they can be requested when running the APIServer via the ImxClient. But once the TypedClient is created, these methods are missing in the ApiClientMethodFactory. The logfile does recognizes the routes when building the TypedClient:

Trace: Validating method route: oneIDMWeb/common/configparms
Trace: Validating method route: oneIDMWeb/common/countries
Trace: Validating method route: oneIDMWeb/common/department
Trace: Validating method route: oneIDMWeb/common/departmentfiltered
Trace: Validating method route: oneIDMWeb/common/itrole/accountroles
Trace: Validating method route: oneIDMWeb/common/itroleentity
Trace: Validating method route: oneIDMWeb/common/localities
Trace: Validating method route: oneIDMWeb/common/person
Trace: Validating method route: oneIDMWeb/common/person/bulk
Trace: Validating method route: oneIDMWeb/common/personcategories
Trace: Validating method route: oneIDMWeb/common/personinformation

But many of them are missing in the ApiClientMethodFactory, the only ones created are:

oneIDMWeb_common_departmentfiltered_get(startIndex: number, pageSize: number, filter: string, search: string, orderBy: string): MethodDescriptor<DepartmentListResponse>;
oneIDMWeb_common_itrole_accountroles_get(uid_system: string, uid_account: string, startIndex: number, pageSize: number, filter: string, search: string, orderBy: string): MethodDescriptor<ResponseWebITRole>;
oneIDMWeb_common_itroleentity_get(OrderBy: string, StartIndex: number, PageSize: number, filter: FilterData[], withProperties: string, search: string): MethodDescriptor<EntityCollectionData>;
oneIDMWeb_common_personcategories_get(OrderBy: string, StartIndex: number, PageSize: number, filter: FilterData[], withProperties: string, search: string): MethodDescriptor<EntityCollectionData>;
oneIDMWeb_common_personinformation_get(): MethodDescriptor<PersonObject>;

Any ideas what might be the problem here?

Parents Reply Children
No Data