@adminforth/user-soft-delete 1.2.16 → 1.2.17

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 CHANGED
@@ -94,7 +94,7 @@ export default class UserSoftDelete extends AdminForthPlugin {
94
94
  instanceUniqueRepresentation(pluginOptions) {
95
95
  // optional method to return unique string representation of plugin instance.
96
96
  // Needed if plugin can have multiple instances on one resource
97
- return `user-soft-delete`;
97
+ return `single`;
98
98
  }
99
99
  setupEndpoints(server) {
100
100
  server.endpoint({
package/index.ts CHANGED
@@ -101,7 +101,7 @@ export default class UserSoftDelete extends AdminForthPlugin {
101
101
  instanceUniqueRepresentation(pluginOptions: any) : string {
102
102
  // optional method to return unique string representation of plugin instance.
103
103
  // Needed if plugin can have multiple instances on one resource
104
- return `user-soft-delete`;
104
+ return `single`;
105
105
  }
106
106
 
107
107
  setupEndpoints(server: IHttpServer) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/user-soft-delete",
3
- "version": "1.2.16",
3
+ "version": "1.2.17",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",