Properly set PagingOfRessources for paginated requests:
- retrieveAllRecurringTemplates
- filterContact
The types look like this:
export type ExampleType = {
content: Partial<SomeType[]> & Partial<PagingOfRessources>;
};
while is should be like this:
export type ExampleType = Partial<PagingOfRessources> & {
content: Partial<SomeType[]>;
};
Properly set
PagingOfRessourcesfor paginated requests:The types look like this:
while is should be like this: