orchid-orm 1.13.9 → 1.14.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.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { columnTypes, QueryHooks, getColumnTypes, addQueryOn, VirtualColumn, pushQueryValue, isQueryReturnsAll, getQueryAs,
|
|
1
|
+
import { columnTypes, QueryHooks, getColumnTypes, addQueryOn, VirtualColumn, pushQueryValue, isQueryReturnsAll, getQueryAs, toSQLCacheKey, OrchidOrmInternalError, NotFoundError, relationQueryKey, Adapter, Db, anyShape, getClonedQueryData } from 'pqb';
|
|
2
2
|
export { OrchidOrmError, OrchidOrmInternalError, columnTypes, raw, testTransaction } from 'pqb';
|
|
3
3
|
import { getStackTrace, applyMixins, getCallerFilePath, snakeCaseKey, toSnakeCase } from 'orchid-core';
|
|
4
4
|
import { AsyncLocalStorage } from 'node:async_hooks';
|
|
@@ -757,7 +757,7 @@ const nestedUpdate$1 = ({ query, primaryKey, foreignKey }) => {
|
|
|
757
757
|
[foreignKey]: data[0][primaryKey]
|
|
758
758
|
}))
|
|
759
759
|
);
|
|
760
|
-
delete t.q[
|
|
760
|
+
delete t.q[toSQLCacheKey];
|
|
761
761
|
}
|
|
762
762
|
if (params.disconnect || params.set) {
|
|
763
763
|
await t.where(
|
|
@@ -769,7 +769,7 @@ const nestedUpdate$1 = ({ query, primaryKey, foreignKey }) => {
|
|
|
769
769
|
)
|
|
770
770
|
)._update({ [foreignKey]: null });
|
|
771
771
|
if (params.set) {
|
|
772
|
-
delete t.q[
|
|
772
|
+
delete t.q[toSQLCacheKey];
|
|
773
773
|
await t.where(
|
|
774
774
|
Array.isArray(params.set) ? {
|
|
775
775
|
OR: params.set
|
|
@@ -778,7 +778,7 @@ const nestedUpdate$1 = ({ query, primaryKey, foreignKey }) => {
|
|
|
778
778
|
}
|
|
779
779
|
}
|
|
780
780
|
if (params.delete || params.update) {
|
|
781
|
-
delete t.q[
|
|
781
|
+
delete t.q[toSQLCacheKey];
|
|
782
782
|
const q = t._where(
|
|
783
783
|
getWhereForNestedUpdate(
|
|
784
784
|
data,
|
|
@@ -1124,7 +1124,7 @@ const nestedUpdate = (state) => {
|
|
|
1124
1124
|
if (params.set) {
|
|
1125
1125
|
const j = queryJoinTable(state, data);
|
|
1126
1126
|
await j._delete();
|
|
1127
|
-
delete j.q[
|
|
1127
|
+
delete j.q[toSQLCacheKey];
|
|
1128
1128
|
const ids = await queryRelatedTable(
|
|
1129
1129
|
state.relatedTableQuery,
|
|
1130
1130
|
params.set
|