pqb 0.63.0 → 0.64.0
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 +48 -36
- package/dist/index.js +0 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +0 -4
- package/dist/index.mjs.map +1 -1
- package/dist/internal.d.ts +1 -1
- package/dist/node-postgres.d.ts +42 -31
- package/dist/postgres-js.d.ts +42 -31
- package/dist/public.d.ts +1 -1
- package/dist/public.js +0 -4
- package/dist/public.js.map +1 -1
- package/dist/public.mjs +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -12938,16 +12938,12 @@ class QueryCreate {
|
|
|
12938
12938
|
* )
|
|
12939
12939
|
* .from('b');
|
|
12940
12940
|
* ```
|
|
12941
|
-
*
|
|
12942
|
-
* @param data - data for the record, may have values, raw SQL, queries, relation operations.
|
|
12943
12941
|
*/
|
|
12944
12942
|
create(data) {
|
|
12945
12943
|
return _queryCreate(_clone(this), data);
|
|
12946
12944
|
}
|
|
12947
12945
|
/**
|
|
12948
12946
|
* Works exactly as {@link create}, except that it returns inserted row count by default.
|
|
12949
|
-
*
|
|
12950
|
-
* @param data - data for the record, may have values, raw SQL, queries, relation operations.
|
|
12951
12947
|
*/
|
|
12952
12948
|
insert(data) {
|
|
12953
12949
|
return _queryInsert(_clone(this), data);
|