orchid-orm 1.45.1 → 1.45.3

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/dist/index.d.ts CHANGED
@@ -224,7 +224,7 @@ type OrchidORM<T extends TableClasses = TableClasses> = {
224
224
  * const value = 1;
225
225
  *
226
226
  * // it is safe to interpolate inside the backticks (``):
227
- * const result = await db.$query<{ one: number }>`SELECT ${value} AS one`;
227
+ * const result = await db.$query<{ one: number }>`SELECT ${value} one`;
228
228
  * // data is inside `rows` array:
229
229
  * result.rows[0].one;
230
230
  * ```