Alexis Rico
Alexis Rico
Transactions endpoint now offers `columns` projection, update the SDK to take advantage of it and expose the new options to the public API.
Make sure the CLI and codegen use the same version or a semver compatible one. Criteria: - Projects should NOT have a pinned codegen version. - Users should always be...
Change default behaviors depending of the framework detected during `xata init`
When we add Dates support we can consider: ColumnType Where we type on fn returns Date. But also accept strings in create/update. Similarly we can have a third generic for...
{ type: "throw" } | { type: "retry"; retries: number; wait: number | (retry: number) => number } | { type: "custom"; boundary: (method, route, ..., retry()) => void }...
Functions: - [ ] Vercel Serverless Functions (Node v16) - [x] CF Workers (V8) - [ ] Netlify Edge Functions (Deno) Sites: - [x] Vercel (Next.js) - [x] CF Pages...
- Updates OpenAPI generation config to fix a problem with a duplicated type - Adds pagination support for `xata pull` in pgroll mode - Requires https://github.com/xataio/xata/pull/4608 - Requires https://github.com/xataio/xata/pull/4619
Something similar to: ```ts declare module "@astrajs/rest" { import { AxiosRequestConfig } from "axios"; interface AstraClientOptions { configFile?: string; configSection?: string; baseApiPath?: string; baseUrl?: string; authUrl?: string; authToken?: string; applicationToken?:...