@aouda/client 0.1.14 → 0.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -75,7 +75,7 @@ Generate TypeScript types from your Aouda schema (B.8 CLI):
75
75
  npx @aouda/client generate --server http://localhost:5000 --output ./types/
76
76
  ```
77
77
 
78
- The generated file (e.g. `schema.ts`) exports a `Schema` interface, a `TableName` union, and one interface per table. That shape is compatible with the typed client: use it as the generic for `createAoudaClient<Schema>(options)`.
78
+ The generated file (e.g. `schema.ts`) exports a `Schema` interface, a `TableName` union, and one interface per table. Named-query `*Row` interfaces include `selectExpr` aliases with server-inferred TypeScript types (`Int32` → `number`, uninferable → `unknown`) after generate against a post-S08 server. That shape is compatible with the typed client: use it as the generic for `createAoudaClient<Schema>(options)`.
79
79
 
80
80
  ```typescript
81
81
  import { createAoudaClient } from '@aouda/client';