@voltro/plugin-soft-delete 0.32.0 → 0.34.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/CHANGELOG.md +2006 -0
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voltro/plugin-soft-delete",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.0",
|
|
4
4
|
"description": "Soft-delete plugin — ships the `softDelete()` schema mixin (deletedAt + deletedBy → Actor). The framework runtime turns `ctx.store.delete()` into an UPDATE on tables that carry this mixin; `ctx.store.hardDelete()` bypasses.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"voltro",
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"types": "./dist/mixin.d.ts",
|
|
28
28
|
"import": "./dist/mixin.js",
|
|
29
29
|
"default": "./dist/mixin.js"
|
|
30
|
-
}
|
|
30
|
+
},
|
|
31
|
+
"./package.json": "./package.json"
|
|
31
32
|
},
|
|
32
33
|
"main": "./dist/index.js",
|
|
33
34
|
"module": "./dist/index.js",
|
|
@@ -37,8 +38,8 @@
|
|
|
37
38
|
"node": ">=24.0.0"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
|
-
"@voltro/database": "0.
|
|
41
|
-
"@voltro/plugin-audit": "0.
|
|
41
|
+
"@voltro/database": "0.34.0",
|
|
42
|
+
"@voltro/plugin-audit": "0.34.0"
|
|
42
43
|
},
|
|
43
44
|
"peerDependencies": {
|
|
44
45
|
"effect": "^3.22.0"
|