@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 +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
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
|
|
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
|
|
207
|
+
return `${this.pluginOptions.actionName}`;
|
|
208
208
|
}
|
|
209
209
|
|
|
210
210
|
setupEndpoints(server: IHttpServer) {
|