botinabox 0.2.4 → 0.2.5
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 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1140,7 +1140,10 @@ var DataStore = class {
|
|
|
1140
1140
|
protectedFiles: def.protectedFiles,
|
|
1141
1141
|
protected: def.protected,
|
|
1142
1142
|
encrypted: def.encrypted,
|
|
1143
|
-
|
|
1143
|
+
// Note: sourceDefaults.softDelete NOT set here because junction tables
|
|
1144
|
+
// (agent_project, rule_agent, etc.) don't have deleted_at columns.
|
|
1145
|
+
// Entity context render functions should add softDelete per-source when targeting
|
|
1146
|
+
// tables that support it.
|
|
1144
1147
|
index: def.indexFile ? {
|
|
1145
1148
|
outputFile: def.indexFile,
|
|
1146
1149
|
render: def.indexRender ?? ((rows) => {
|