From bb13da9d24e0d6a769e01ae322e8c00a77ec9d8c Mon Sep 17 00:00:00 2001 From: Julian Waller Date: Thu, 19 Oct 2023 09:56:09 +0100 Subject: [PATCH] chore: remove unimplemented `executeOnUserDataChanged` adlib-action property --- packages/blueprints-integration/src/action.ts | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/blueprints-integration/src/action.ts b/packages/blueprints-integration/src/action.ts index 7bd0121117..6eda749774 100644 --- a/packages/blueprints-integration/src/action.ts +++ b/packages/blueprints-integration/src/action.ts @@ -9,14 +9,14 @@ export interface ActionUserData { [key: string]: any } -export enum ActionExecuteAfterChanged { - /** Do not execute the action after userData has changed, unless specifically triggered by the user */ - none = 'none', - /** Execute the action immediately after userData has changed */ - immediately = 'immediately', - /** Execute the action after userData has changed and there was an identifiable period of calm in the changes */ - debounce = 'debounce', -} +// export enum ActionExecuteAfterChanged { +// /** Do not execute the action after userData has changed, unless specifically triggered by the user */ +// none = 'none', +// /** Execute the action immediately after userData has changed */ +// immediately = 'immediately', +// /** Execute the action after userData has changed and there was an identifiable period of calm in the changes */ +// debounce = 'debounce', +// } export interface IBlueprintActionManifestDisplay { /** A label to be displayed to the user */ @@ -94,9 +94,9 @@ export interface IBlueprintActionManifest { userDataManifest: { /** List of editable fields in userData, to allow for customising */ editableFields?: JSONBlob - /** Execute the action after userData is changed. If not present ActionExecuteAfterChanged.none is assumed. */ - executeOnUserDataChanged?: ActionExecuteAfterChanged // Potential future properties: + // /** Execute the action after userData is changed. If not present ActionExecuteAfterChanged.none is assumed. */ + // executeOnUserDataChanged?: ActionExecuteAfterChanged // asloDisplayACtionButton: boolean }