@blinkdotnew/sdk 0.14.11 → 0.14.12

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.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -208,7 +208,7 @@ The SDK now automatically converts between JavaScript camelCase and SQL snake_ca
208
208
  **⚠️ Important: Always Use camelCase in Your Code**
209
209
  - ✅ **Correct**: `{ userId: user.id, createdAt: new Date() }`
210
210
  - ❌ **Wrong**: `{ user_id: user.id, created_at: new Date() }`
211
- - **Exception**: Raw SQL queries still use snake_case (as stored in database)
211
+
212
212
 
213
213
  ```typescript
214
214
  // Create (ID auto-generated if not provided)
@@ -251,8 +251,7 @@ await blink.db.todos.createMany([
251
251
  ])
252
252
  await blink.db.todos.upsertMany([...])
253
253
 
254
- // Raw SQL (note: raw SQL still uses snake_case as stored in database)
255
- const result = await blink.db.sql('SELECT * FROM todos WHERE user_id = ?', [user.id])
254
+
256
255
  ```
257
256
 
258
257
  ### AI Operations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blinkdotnew/sdk",
3
- "version": "0.14.11",
3
+ "version": "0.14.12",
4
4
  "description": "Blink TypeScript SDK for client-side applications - Zero-boilerplate CRUD + auth + AI + analytics + notifications for modern SaaS/AI apps",
5
5
  "keywords": [
6
6
  "blink",