
In the process of developing a new web app front-end using the Appwrite SDK as backend, the SDK was updated from 18.0.0, which I started development with, to 20.0.0, the latest. I updated the project packages in reaction to last week's NPM's package's malware attackes. So I noticed all my local API endpoint calls to Appwrite were deprecated. And many of the Model interfaces I was using were unavailable in the latest package. Since the app is new and still in development, I decided to simply update all the Appwrite dependent code. However, to my surprise, all new CRUD APIs are marked as deprecated as well. It is a real pain to have to try to work with deprecated methods as there is a lot of TS and ESLint noise to deal with. Why are these just-released as of a couple of months ago APIs marked as deprecated? Is there a work-around?

It's because in 1.8 there is some renames, Databases is now TablesDb, and all methods names changed.
You can check it here:
https://appwrite.io/docs/references/cloud/client-web/tablesDB
Renaming your class and methods will remove the warnings
Recommended threads
- Unable to sign up
Signing up for an appwrite account is throwing an error, looking at console I'm getting a 400 error Image
- 401 and 429 Error
I had previously working app, but currently It failed, I have no idea why, and when I tried to fix it, I got 429 error, no matter how much time passed between ...
- Cookie expiration date is 6 months inste...
When I login to my app with `createEmailPasswordSession` the cookie has only 6 months of expiration but I have 1 year in Auth settings. I have console-logged th...
