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
Currently the HTTP response is always assumed to be JSON, and we handle a response in a Raw API by converting that JSON into a dhall value with type outputType.
As discussed in #6, we should let the configuration determine how HTTP responses are handled. We can introduce a dhall type
type Response = { headers : List { key: Text, value: Text }, body : Text, status : Natural }
and allow adding a field to the Raw request API, e.g.:
Currently the HTTP response is always assumed to be JSON, and we handle a response in a Raw API by converting that JSON into a dhall value with type
outputType
.As discussed in #6, we should let the configuration determine how HTTP responses are handled. We can introduce a dhall type
and allow adding a field to the Raw request API, e.g.:
The text was updated successfully, but these errors were encountered: