pqb 0.36.11 → 0.36.13

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.mjs CHANGED
@@ -11690,7 +11690,7 @@ class QueryMethods {
11690
11690
  * Finds a single record with a given SQL, throws {@link NotFoundError} if not found:
11691
11691
  *
11692
11692
  * ```ts
11693
- * await db.user.find`
11693
+ * await db.user.findBySql`
11694
11694
  * age = ${age} AND
11695
11695
  * name = ${name}
11696
11696
  * `;
@@ -11720,7 +11720,7 @@ class QueryMethods {
11720
11720
  * Returns `undefined` when not found.
11721
11721
  *
11722
11722
  * ```ts
11723
- * await db.user.find`
11723
+ * await db.user.findBySqlOptional`
11724
11724
  * age = ${age} AND
11725
11725
  * name = ${name}
11726
11726
  * `;