-
Notifications
You must be signed in to change notification settings - Fork 533
[Bug] Invalid types in last update #1076
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I also see an issue in 49f3f2b#diff-5a4d9d347825dc80283179a0537726bed59c467114fdbefac69d0b4d73329a0bR409 This type should be [
{
status: 'Submitted',
count: 3,
days: [ '2025-03-07', '2025-03-08', '2025-03-09' ]
}
] |
The same invalid types remain as of v5.5.2 |
I'm also seeing an issue with broken types as a result of this commit: 49f3f2b The issue I'm encountering is similar to the one @codygordon posted but on ParticipantInstance. Old type prior to v.5.5.0: |
Same here. A few erroneous types were introduced including:
|
Hello! Thanks for raising the issue. We will look at it on priority basis. |
Hi, we are experiencing a similar issue with the We have reverted our twilio client version back to |
We experienced the same issue: It looks like the provided objects are no longer stringified using |
Hi! So as these helpers are autogenerated from the public open api specs, due to a recent update these changes have been introduced. I see the best way in most of the above cases would be to use |
Please review #1090 and let me know if there are any issues. Thanks! |
Uh oh!
There was an error while loading. Please reload this page.
Some of the changes in the following commit define types don't match the actual structure of the data causing type errors when attempting to access values as documented.
For example,
lineTypeIntelligence: Record<string, object>
suggests that the shape would be:It should probably instead be
Record<string, any>
.Or, even better, it should contain the actual available keys and value types as documented.
49f3f2b#diff-55a60b51b684465835a0448f6efceb0ef9b0cb5ada598728e1594ebf2507deddR292
The text was updated successfully, but these errors were encountered: