orchid-orm 1.18.3 → 1.19.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 +3 -2
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -1759,7 +1759,8 @@ const orchidORM = (_a, tables) => {
|
|
|
1759
1759
|
const options2 = __spreadProps(__spreadValues$1({}, commonOptions), {
|
|
1760
1760
|
schema: table.schema,
|
|
1761
1761
|
language: table.language,
|
|
1762
|
-
scopes: table.scopes
|
|
1762
|
+
scopes: table.scopes,
|
|
1763
|
+
softDelete: table.softDelete
|
|
1763
1764
|
});
|
|
1764
1765
|
if (table.noPrimaryKey)
|
|
1765
1766
|
options2.noPrimaryKey = "ignore";
|