@adminforth/bulk-ai-flow 1.6.0 → 1.7.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.js CHANGED
@@ -174,7 +174,7 @@ export default class BulkAiFlowPlugin extends AdminForthPlugin {
174
174
  instanceUniqueRepresentation(pluginOptions) {
175
175
  // optional method to return unique string representation of plugin instance.
176
176
  // Needed if plugin can have multiple instances on one resource
177
- return `single`;
177
+ return `${this.pluginOptions.actionName}`;
178
178
  }
179
179
  setupEndpoints(server) {
180
180
  server.endpoint({
package/index.ts CHANGED
@@ -204,7 +204,7 @@ export default class BulkAiFlowPlugin extends AdminForthPlugin {
204
204
  instanceUniqueRepresentation(pluginOptions: any) : string {
205
205
  // optional method to return unique string representation of plugin instance.
206
206
  // Needed if plugin can have multiple instances on one resource
207
- return `single`;
207
+ return `${this.pluginOptions.actionName}`;
208
208
  }
209
209
 
210
210
  setupEndpoints(server: IHttpServer) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/bulk-ai-flow",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },