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
I'm trying to paginate through the output of typeform.responses.list, but for some reason, the Response type does not include the token field, that is required for the before and after parameters of list endpoint.
Expected Behavior
The typings match the return values of the API.
Current Behavior
The typings are incomplete and hacks like (response as any).token are necessary to access the data we need.
Possible Solution
Correct the typings to match the API.
Steps to Reproduce
n/a
Screenshots
n/a
Your Environment
Client Version: 2.4.1
Node.js Version: v18.16.1
NPM Version: 9.5.1
The text was updated successfully, but these errors were encountered:
Description
I'm trying to paginate through the output of
typeform.responses.list
, but for some reason, theResponse
type does not include thetoken
field, that is required for thebefore
andafter
parameters of list endpoint.Expected Behavior
The typings match the return values of the API.
Current Behavior
The typings are incomplete and hacks like
(response as any).token
are necessary to access the data we need.Possible Solution
Correct the typings to match the API.
Steps to Reproduce
n/a
Screenshots
n/a
Your Environment
The text was updated successfully, but these errors were encountered: