feat: Console SDK update for version 12.2.0#90
feat: Console SDK update for version 12.2.0#90ArnabChatterjee20k wants to merge 6 commits intomainfrom
Conversation
Greptile SummaryThis PR updates the Console SDK to version 12.2.0, targeting Appwrite API v1.9.4. It adds
Confidence Score: 4/5The core SDK changes are correct but the four new bigint example docs actively mislead developers with the wrong property name. The underlying service implementations and models are correct. However, all four new bigint example docs use docs/examples/databases/create-big-int-attribute.md, docs/examples/databases/update-big-int-attribute.md, docs/examples/tablesdb/create-big-int-column.md, and docs/examples/tablesdb/update-big-int-column.md all need Important Files Changed
Reviews (5): Last reviewed commit: "chore: refresh sdk for latest spec (sani..." | Re-trigger Greptile |
| required: false, | ||
| min: null, // optional | ||
| max: null, // optional | ||
| default: null, // optional |
There was a problem hiding this comment.
Wrong property name for default value in example
The example uses default: null but the TypeScript method signature expects the property to be named xdefault. Callers who copy this snippet verbatim will get a TypeScript type error (since default is not in the params interface) and the default value will be silently dropped from the request. The same mismatch exists in docs/examples/databases/update-big-int-attribute.md, docs/examples/tablesdb/create-big-int-column.md, and docs/examples/tablesdb/update-big-int-column.md.
There was a problem hiding this comment.
this is also present in the main repo as well https://github.com/appwrite/sdk-for-console/blob/main/docs/examples/tablesdb/create-integer-column.md
default and not xdefault
This PR contains updates to the Console SDK for version 12.2.0.