We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8a35ca commit f50ebe9Copy full SHA for f50ebe9
libs/fedaco/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@gradii/fedaco",
3
- "version": "1.1.13",
+ "version": "1.1.14",
4
"repository": {
5
"type": "git",
6
"url": "https://github.com/gradii/fedaco.git"
libs/fedaco/src/fedaco/mixins/soft-deletes.ts
@@ -15,7 +15,7 @@ export interface SoftDeletes {
15
InitializeSoftDeletes(this: Model & this): void;
16
17
/*Force a hard delete on a soft deleted model.*/
18
- ForceDelete(this: Model & this): boolean;
+ ForceDelete(this: Model & this): Promise<boolean>;
19
20
/*Perform the actual delete query on this model instance.*/
21
_performDeleteOnModel(this: Model & this): void;
0 commit comments