You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allows setting 'params.options.postSearch' in angular apps.
Actual Behavior
Somehow when you use this library in angular, the type for options param is changed to RequestInit.
This creates problem as you cannot set the postSearch option as it is not a property of RequestInit type.
Following is the screenshot of code you can see when you do F12 on search method in angular client code.
As you can see data type for options is RequestInit.
Steps to Reproduce the Problem
Use fhir-kit-client in angular app. I tried with ng18.
Try to set postSearch option in search method
The text was updated successfully, but these errors were encountered:
Expected Behavior
Allows setting 'params.options.postSearch' in angular apps.
Actual Behavior
Somehow when you use this library in angular, the type for options param is changed to RequestInit.
This creates problem as you cannot set the postSearch option as it is not a property of RequestInit type.
Following is the screenshot of code you can see when you do F12 on search method in angular client code.
As you can see data type for options is RequestInit.
Steps to Reproduce the Problem
The text was updated successfully, but these errors were encountered: