@masterteam/flowplus-workflow 0.0.12 → 0.0.13
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/assets/flowplus-workflow.css +2 -2
- package/assets/i18n/ar.json +5 -4
- package/assets/i18n/en.json +5 -4
- package/fesm2022/masterteam-flowplus-workflow.mjs +1521 -827
- package/fesm2022/masterteam-flowplus-workflow.mjs.map +1 -1
- package/package.json +4 -4
- package/types/masterteam-flowplus-workflow.d.ts +51 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/flowplus-workflow",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "FlowPlus2 design-time workflow builder package — Studio, Builder, inspectors, canvas (Foblex), validation, layout persistence, publish flow. Runtime task action / process start / client form rendering live in @masterteam/work-center and @masterteam/forms/client-form, not here.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"directory": "../../../dist/masterteam/flowplus-workflow",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"tailwindcss-primeui": "^0.6.1",
|
|
26
26
|
"dagre": "^0.8.5",
|
|
27
27
|
"@ngxs/store": "^20.1.0",
|
|
28
|
-
"@masterteam/
|
|
29
|
-
"@masterteam/forms": "^0.0.
|
|
30
|
-
"@masterteam/
|
|
28
|
+
"@masterteam/components": "^0.0.190",
|
|
29
|
+
"@masterteam/forms": "^0.0.91",
|
|
30
|
+
"@masterteam/icons": "^0.0.16"
|
|
31
31
|
},
|
|
32
32
|
"sideEffects": false,
|
|
33
33
|
"exports": {
|
|
@@ -650,8 +650,8 @@ interface WorkflowBuilderPermissionsDto {
|
|
|
650
650
|
* - AI node configuration NEVER carries provider / model / credential /
|
|
651
651
|
* base-url / tool / script fields. Those live only in Control Panel ->
|
|
652
652
|
* Automation Engine -> Integrations. See {@link AI_FORBIDDEN_NODE_CONFIG_KEYS}.
|
|
653
|
-
* - Builder AI nodes
|
|
654
|
-
*
|
|
653
|
+
* - Builder AI nodes keep catalog-backed runtime types, but the normal FE
|
|
654
|
+
* surface collapses them to one visible `AI Node`: prompt + output schema.
|
|
655
655
|
* - The Execution Inspector may show safe {@link ExecutionNodeAiSummary}
|
|
656
656
|
* metadata only — never raw prompt, raw response, or secrets.
|
|
657
657
|
*/
|
|
@@ -670,7 +670,7 @@ interface AiNodeHelperMetadata {
|
|
|
670
670
|
/** Always true — AI nodes use the global Control Panel AI profile. */
|
|
671
671
|
usesGlobalAiProfile?: boolean;
|
|
672
672
|
supportsStructuredOutput?: boolean;
|
|
673
|
-
/**
|
|
673
|
+
/** Legacy backend hint; the current FE requires prompt only. */
|
|
674
674
|
requiresPromptOrInstructions?: boolean;
|
|
675
675
|
hasSideEffects?: boolean;
|
|
676
676
|
publishable?: boolean;
|
|
@@ -690,8 +690,9 @@ interface SpecializedAiNodeConfig {
|
|
|
690
690
|
/** Config shape for a GENERIC AI node (no provider/model/credential fields). */
|
|
691
691
|
interface GenericAiNodeConfig {
|
|
692
692
|
prompt?: string | null;
|
|
693
|
+
/** Legacy only; loaded as prompt when prompt is absent, then stripped on save. */
|
|
693
694
|
instructions?: string | null;
|
|
694
|
-
/** Optional structured-output JSON schema
|
|
695
|
+
/** Optional structured-output JSON schema used for downstream data pills. */
|
|
695
696
|
outputSchema?: unknown;
|
|
696
697
|
[key: string]: unknown;
|
|
697
698
|
}
|
|
@@ -3825,6 +3826,7 @@ declare class WorkflowCatalogApiService {
|
|
|
3825
3826
|
getLocalActionDescriptor(actionKey: string): Observable<WorkflowAppActionDescriptorDto>;
|
|
3826
3827
|
getLocalActionOptions(actionKey: string, fieldKey: string): Observable<WorkflowAppActionOptionDto[]>;
|
|
3827
3828
|
private applyCapabilityOverrides;
|
|
3829
|
+
private withBusinessActionCatalog;
|
|
3828
3830
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WorkflowCatalogApiService, never>;
|
|
3829
3831
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<WorkflowCatalogApiService>;
|
|
3830
3832
|
}
|
|
@@ -3955,6 +3957,7 @@ declare class AutomationBuilderCatalogApiService {
|
|
|
3955
3957
|
private readonly cachedCatalog;
|
|
3956
3958
|
private catalogRequest$;
|
|
3957
3959
|
catalog(): Observable<AutomationBuilderCatalog>;
|
|
3960
|
+
private withBusinessActionCatalog;
|
|
3958
3961
|
invalidateCatalog(): void;
|
|
3959
3962
|
nodeTypes(): Observable<NodeTypeCatalogItem[]>;
|
|
3960
3963
|
connectors(): Observable<ConnectorCatalog>;
|
|
@@ -4388,6 +4391,7 @@ interface FlowplusUiState {
|
|
|
4388
4391
|
bottomPanelOpen: boolean;
|
|
4389
4392
|
bottomPanelTab: 'problems' | 'testRun' | 'context' | 'logs' | 'raw';
|
|
4390
4393
|
bottomPanelHeightPx: number;
|
|
4394
|
+
showLastExecution: boolean;
|
|
4391
4395
|
minimapOpen: boolean;
|
|
4392
4396
|
validationOverlay: boolean;
|
|
4393
4397
|
paletteSearch: string;
|
|
@@ -4568,6 +4572,10 @@ declare const FLOWPLUS_WORKFLOW_DEFAULT_STATE: FlowplusWorkflowStateModel;
|
|
|
4568
4572
|
* so the devtools timeline reads like a story of what the user did.
|
|
4569
4573
|
*/
|
|
4570
4574
|
|
|
4575
|
+
interface FlowplusExecutionPollingOptions {
|
|
4576
|
+
poll?: boolean;
|
|
4577
|
+
}
|
|
4578
|
+
type FlowplusExecutionReplayMode = Exclude<FlowplusRuntimeReplayMode, 'off'>;
|
|
4571
4579
|
declare class LoadWorkflowList {
|
|
4572
4580
|
query?: {
|
|
4573
4581
|
search?: string;
|
|
@@ -4911,6 +4919,11 @@ declare class SetBottomPanelHeight {
|
|
|
4911
4919
|
static readonly type = "[FlowplusWorkflow] Set Bottom Panel Height";
|
|
4912
4920
|
constructor(heightPx: number);
|
|
4913
4921
|
}
|
|
4922
|
+
declare class SetShowLastExecution {
|
|
4923
|
+
show: boolean;
|
|
4924
|
+
static readonly type = "[FlowplusWorkflow] Set Show Last Execution";
|
|
4925
|
+
constructor(show: boolean);
|
|
4926
|
+
}
|
|
4914
4927
|
declare class SetMinimap {
|
|
4915
4928
|
open: boolean;
|
|
4916
4929
|
static readonly type = "[FlowplusWorkflow] Set Minimap";
|
|
@@ -5004,22 +5017,28 @@ declare class CancelAutomationExecution {
|
|
|
5004
5017
|
}
|
|
5005
5018
|
declare class PollAutomationExecution {
|
|
5006
5019
|
executionId: number | string;
|
|
5020
|
+
replayMode: FlowplusExecutionReplayMode;
|
|
5021
|
+
options: FlowplusExecutionPollingOptions;
|
|
5007
5022
|
static readonly type = "[FlowplusWorkflow] Poll Automation Execution";
|
|
5008
|
-
constructor(executionId: number | string);
|
|
5023
|
+
constructor(executionId: number | string, replayMode?: FlowplusExecutionReplayMode, options?: FlowplusExecutionPollingOptions);
|
|
5009
5024
|
}
|
|
5010
5025
|
declare class LoadLatestAutomationExecution {
|
|
5026
|
+
options: FlowplusExecutionPollingOptions;
|
|
5011
5027
|
static readonly type = "[FlowplusWorkflow] Load Latest Automation Execution";
|
|
5028
|
+
constructor(options?: FlowplusExecutionPollingOptions);
|
|
5012
5029
|
}
|
|
5013
5030
|
declare class LoadAutomationExecution {
|
|
5014
5031
|
executionId: number | string;
|
|
5032
|
+
options: FlowplusExecutionPollingOptions;
|
|
5015
5033
|
static readonly type = "[FlowplusWorkflow] Load Automation Execution";
|
|
5016
|
-
constructor(executionId: number | string);
|
|
5034
|
+
constructor(executionId: number | string, options?: FlowplusExecutionPollingOptions);
|
|
5017
5035
|
}
|
|
5018
5036
|
declare class ApplyAutomationExecutionDetail {
|
|
5019
5037
|
detail: AutomationExecutionDetail;
|
|
5020
|
-
replayMode:
|
|
5038
|
+
replayMode: FlowplusExecutionReplayMode;
|
|
5039
|
+
options: FlowplusExecutionPollingOptions;
|
|
5021
5040
|
static readonly type = "[FlowplusWorkflow] Apply Automation Execution Detail";
|
|
5022
|
-
constructor(detail: AutomationExecutionDetail, replayMode?:
|
|
5041
|
+
constructor(detail: AutomationExecutionDetail, replayMode?: FlowplusExecutionReplayMode, options?: FlowplusExecutionPollingOptions);
|
|
5023
5042
|
}
|
|
5024
5043
|
declare class SelectRuntimeNodeRun {
|
|
5025
5044
|
nodeRunId: number | string | null;
|
|
@@ -5090,7 +5109,7 @@ declare class FlowplusWorkflowFacade {
|
|
|
5090
5109
|
readonly studio: _angular_core.Signal<_masterteam_flowplus_workflow.FlowplusStudioSlice>;
|
|
5091
5110
|
readonly studioWorkflows: _angular_core.Signal<_masterteam_flowplus_workflow.WorkflowDefinitionSummaryDto[]>;
|
|
5092
5111
|
readonly studioSearch: _angular_core.Signal<string>;
|
|
5093
|
-
readonly studioStatusFilter: _angular_core.Signal<"
|
|
5112
|
+
readonly studioStatusFilter: _angular_core.Signal<"published" | "all" | "draft" | "invalid" | "archived">;
|
|
5094
5113
|
readonly builder: _angular_core.Signal<FlowplusBuilderSlice>;
|
|
5095
5114
|
readonly workflow: _angular_core.Signal<_masterteam_flowplus_workflow.WorkflowDefinitionDto | null>;
|
|
5096
5115
|
readonly steps: _angular_core.Signal<WorkflowStepDto[]>;
|
|
@@ -5129,6 +5148,7 @@ declare class FlowplusWorkflowFacade {
|
|
|
5129
5148
|
readonly runtimeAccepted: _angular_core.Signal<boolean>;
|
|
5130
5149
|
readonly runtimeLoading: _angular_core.Signal<boolean>;
|
|
5131
5150
|
readonly activeExecutionId: _angular_core.Signal<string | number | null>;
|
|
5151
|
+
readonly showLastExecution: _angular_core.Signal<boolean>;
|
|
5132
5152
|
readonly selectedRuntimeTriggerId: _angular_core.Signal<number | null>;
|
|
5133
5153
|
readonly selectedRuntimeTrigger: _angular_core.Signal<WorkflowTriggerDto>;
|
|
5134
5154
|
readonly selectedTrigger: _angular_core.Signal<WorkflowTriggerDto | null>;
|
|
@@ -5273,6 +5293,7 @@ declare class FlowplusWorkflowFacade {
|
|
|
5273
5293
|
setBottomPanelTab(tab: FlowplusUiState['bottomPanelTab']): Observable<void>;
|
|
5274
5294
|
toggleBottomPanel(open?: boolean): Observable<void>;
|
|
5275
5295
|
setBottomPanelHeight(heightPx: number): Observable<void>;
|
|
5296
|
+
setShowLastExecution(show: boolean): Observable<void>;
|
|
5276
5297
|
setMinimap(open: boolean): Observable<void>;
|
|
5277
5298
|
setPaletteOpen(open?: boolean, pin?: boolean): Observable<void>;
|
|
5278
5299
|
togglePalette(): Observable<void>;
|
|
@@ -5294,8 +5315,8 @@ declare class FlowplusWorkflowFacade {
|
|
|
5294
5315
|
setSelectedRuntimeTrigger(triggerId: number | null): Observable<void>;
|
|
5295
5316
|
runAutomationTrigger(request?: FlowplusTriggerExecutionRequest): Observable<void>;
|
|
5296
5317
|
cancelAutomationExecution(executionId?: number | string | null): Observable<void>;
|
|
5297
|
-
loadLatestAutomationExecution(): Observable<void>;
|
|
5298
|
-
loadAutomationExecution(executionId: number | string): Observable<void>;
|
|
5318
|
+
loadLatestAutomationExecution(options?: FlowplusExecutionPollingOptions): Observable<void>;
|
|
5319
|
+
loadAutomationExecution(executionId: number | string, options?: FlowplusExecutionPollingOptions): Observable<void>;
|
|
5299
5320
|
refreshRuntimeOverlay(): Observable<void>;
|
|
5300
5321
|
selectRuntimeNodeRun(nodeRunId: number | string | null): Observable<void>;
|
|
5301
5322
|
clearAutomationRuntimeState(): Observable<void>;
|
|
@@ -5447,6 +5468,7 @@ declare class FlowplusWorkflowState {
|
|
|
5447
5468
|
setBottomPanelTab(ctx: StateContext<FlowplusWorkflowStateModel>, action: SetBottomPanelTab): void;
|
|
5448
5469
|
setBottomPanelOpen(ctx: StateContext<FlowplusWorkflowStateModel>, action: SetBottomPanelOpen): void;
|
|
5449
5470
|
setBottomPanelHeight(ctx: StateContext<FlowplusWorkflowStateModel>, action: SetBottomPanelHeight): void;
|
|
5471
|
+
setShowLastExecution(ctx: StateContext<FlowplusWorkflowStateModel>, action: SetShowLastExecution): Observable<void>;
|
|
5450
5472
|
setMinimap(ctx: StateContext<FlowplusWorkflowStateModel>, action: SetMinimap): void;
|
|
5451
5473
|
setPaletteOpen(ctx: StateContext<FlowplusWorkflowStateModel>, action: SetPaletteOpen): void;
|
|
5452
5474
|
setInspectorOpen(ctx: StateContext<FlowplusWorkflowStateModel>, action: SetInspectorOpen): void;
|
|
@@ -5466,7 +5488,7 @@ declare class FlowplusWorkflowState {
|
|
|
5466
5488
|
runAutomationTrigger(ctx: StateContext<FlowplusWorkflowStateModel>, action: RunAutomationTrigger): Observable<unknown> | void;
|
|
5467
5489
|
cancelAutomationExecution(ctx: StateContext<FlowplusWorkflowStateModel>, action: CancelAutomationExecution): Observable<unknown>;
|
|
5468
5490
|
pollAutomationExecution(ctx: StateContext<FlowplusWorkflowStateModel>, action: PollAutomationExecution): Observable<AutomationExecutionDetail>;
|
|
5469
|
-
loadLatestAutomationExecution(ctx: StateContext<FlowplusWorkflowStateModel
|
|
5491
|
+
loadLatestAutomationExecution(ctx: StateContext<FlowplusWorkflowStateModel>, action: LoadLatestAutomationExecution): Observable<AutomationExecutionDetail>;
|
|
5470
5492
|
loadAutomationExecution(ctx: StateContext<FlowplusWorkflowStateModel>, action: LoadAutomationExecution): Observable<AutomationExecutionDetail>;
|
|
5471
5493
|
applyAutomationExecutionDetail(ctx: StateContext<FlowplusWorkflowStateModel>, action: ApplyAutomationExecutionDetail): void;
|
|
5472
5494
|
clearAutomationRuntimeState(ctx: StateContext<FlowplusWorkflowStateModel>): void;
|
|
@@ -6337,7 +6359,6 @@ declare class ProcessCreateDialogComponent {
|
|
|
6337
6359
|
}
|
|
6338
6360
|
|
|
6339
6361
|
type PaletteGroupKey = 'logicFlow' | 'dataFiles' | 'peopleReview' | 'appsApis' | 'flowplus';
|
|
6340
|
-
type PaletteSectionKey = 'branching' | 'looping' | 'parallel' | 'timing' | 'dataShape' | 'fileConvert' | 'tasksApprovals' | 'sendWait' | 'businessActions' | 'apiWebhook' | 'flowplusNative' | 'automationCalls' | 'other';
|
|
6341
6362
|
interface AutomationNodeVisual {
|
|
6342
6363
|
key: string;
|
|
6343
6364
|
label: string;
|
|
@@ -6432,9 +6453,9 @@ declare class FlowNodeComponent {
|
|
|
6432
6453
|
readonly issueSeverity: _angular_core.Signal<CanvasIssueSeverity>;
|
|
6433
6454
|
readonly issueTooltip: _angular_core.Signal<string>;
|
|
6434
6455
|
readonly issueTooltipClass: _angular_core.Signal<string>;
|
|
6435
|
-
readonly runtimeTone: _angular_core.Signal<"
|
|
6456
|
+
readonly runtimeTone: _angular_core.Signal<"failed" | "skipped" | "waiting" | "completed" | "running" | null>;
|
|
6436
6457
|
readonly isRuntimeCancelled: _angular_core.Signal<boolean>;
|
|
6437
|
-
readonly runtimeIcon: _angular_core.Signal<"
|
|
6458
|
+
readonly runtimeIcon: _angular_core.Signal<"arrow.refresh-cw-05" | "alert.alert-triangle" | "general.activity-heart" | "general.check" | "general.minus-circle" | "media.stop" | "time.clock">;
|
|
6438
6459
|
readonly runtimeColor: _angular_core.Signal<"rgb(var(--fp-commit))" | "rgb(var(--fp-error))" | "rgb(var(--fp-warning))" | "var(--p-primary-color)" | "color-mix(in srgb, rgb(var(--fp-error)) 72%, var(--p-text-color))" | "rgb(var(--fp-text-muted))">;
|
|
6439
6460
|
readonly runtimeTooltip: _angular_core.Signal<string>;
|
|
6440
6461
|
readonly runtimeStatusLabel: _angular_core.Signal<string>;
|
|
@@ -6838,9 +6859,7 @@ declare class FlowCanvasComponent {
|
|
|
6838
6859
|
private dragRafId;
|
|
6839
6860
|
private positionSyncRafId;
|
|
6840
6861
|
private positionSyncTimerId;
|
|
6841
|
-
private positionPollTimerId;
|
|
6842
6862
|
private positionObserver;
|
|
6843
|
-
private lastObservedPositionSignature;
|
|
6844
6863
|
private positionSyncSuppressedUntil;
|
|
6845
6864
|
/** The edge the dragged node is currently over (committed on drop). */
|
|
6846
6865
|
private dropCandidateConnectionId;
|
|
@@ -6883,7 +6902,6 @@ declare class FlowCanvasComponent {
|
|
|
6883
6902
|
onNoteEditStart(noteId: string): void;
|
|
6884
6903
|
private commitCanvasPositions;
|
|
6885
6904
|
private syncCanvasPositionsFromDom;
|
|
6886
|
-
private syncStableCanvasPositions;
|
|
6887
6905
|
private readCanvasPositionSnapshot;
|
|
6888
6906
|
private schedulePointerPositionSync;
|
|
6889
6907
|
private isPositionSyncSuppressed;
|
|
@@ -7751,8 +7769,9 @@ interface PaletteGroupVm {
|
|
|
7751
7769
|
items: WorkflowStepTypeCatalogItemDto[];
|
|
7752
7770
|
}
|
|
7753
7771
|
interface PaletteSectionVm {
|
|
7754
|
-
key:
|
|
7772
|
+
key: string;
|
|
7755
7773
|
label: string;
|
|
7774
|
+
order: number;
|
|
7756
7775
|
items: WorkflowStepTypeCatalogItemDto[];
|
|
7757
7776
|
}
|
|
7758
7777
|
/** Which screen of the two-level finder is showing. */
|
|
@@ -7824,6 +7843,10 @@ declare class PaletteComponent {
|
|
|
7824
7843
|
triggerTypeFor(option: WorkflowCatalogOptionDto): string;
|
|
7825
7844
|
private isCreatable;
|
|
7826
7845
|
private isVisibleInPalette;
|
|
7846
|
+
private sectionForItem;
|
|
7847
|
+
private isConcreteBusinessAction;
|
|
7848
|
+
private metadataString;
|
|
7849
|
+
private humanizeKey;
|
|
7827
7850
|
private t;
|
|
7828
7851
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PaletteComponent, never>;
|
|
7829
7852
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaletteComponent, "fp-palette", never, {}, { "closeRequested": "closeRequested"; "openRequested": "openRequested"; "add": "add"; "addTrigger": "addTrigger"; "addNote": "addNote"; "openVariables": "openVariables"; "openExecutionFiles": "openExecutionFiles"; }, never, never, true, never>;
|
|
@@ -7952,6 +7975,7 @@ declare class BottomPanelComponent {
|
|
|
7952
7975
|
readonly hasRuntimeOverlay: _angular_core.Signal<boolean>;
|
|
7953
7976
|
readonly canOpenRuns: _angular_core.Signal<boolean>;
|
|
7954
7977
|
readonly showBottomToolbarActions: _angular_core.Signal<boolean>;
|
|
7978
|
+
readonly canRefreshRuntimeOverlay: _angular_core.Signal<boolean>;
|
|
7955
7979
|
readonly showStopCurrentRun: _angular_core.Signal<boolean>;
|
|
7956
7980
|
private readonly contextLabelCellTpl;
|
|
7957
7981
|
private readonly contextExpressionCellTpl;
|
|
@@ -8538,6 +8562,7 @@ declare class BottomPanelComponent {
|
|
|
8538
8562
|
runtimeSeverity(): BottomTabOption['severity'];
|
|
8539
8563
|
refreshRuntimeOverlay(): void;
|
|
8540
8564
|
clearReplay(): void;
|
|
8565
|
+
onShowLastExecutionChange(value: boolean): void;
|
|
8541
8566
|
stopCurrentRun(): void;
|
|
8542
8567
|
openRuns(): void;
|
|
8543
8568
|
openCurrentRun(): void;
|
|
@@ -8640,6 +8665,10 @@ interface PickerTreeGroup {
|
|
|
8640
8665
|
label: string;
|
|
8641
8666
|
children: PickerTreeNode[];
|
|
8642
8667
|
}
|
|
8668
|
+
interface GraphOutputDescriptor {
|
|
8669
|
+
typeKey: string;
|
|
8670
|
+
outputSchema?: JsonSchemaLite | null;
|
|
8671
|
+
}
|
|
8643
8672
|
|
|
8644
8673
|
declare class ContextPickerComponent {
|
|
8645
8674
|
private readonly store;
|
|
@@ -8652,6 +8681,7 @@ declare class ContextPickerComponent {
|
|
|
8652
8681
|
readonly error: _angular_core.Signal<string | null>;
|
|
8653
8682
|
readonly pickerGroups: _angular_core.Signal<PickerTreeGroup[]>;
|
|
8654
8683
|
readonly filteredGroups: _angular_core.Signal<PickerTreeGroup[]>;
|
|
8684
|
+
readonly graphOutputDescriptors: _angular_core.Signal<GraphOutputDescriptor[]>;
|
|
8655
8685
|
private userFacingContextNodes;
|
|
8656
8686
|
onNodePrimary(node: PickerTreeNode, event: Event): void;
|
|
8657
8687
|
toggleNode(node: PickerTreeNode): void;
|
|
@@ -8950,5 +8980,5 @@ declare class DagreFlowLayoutEngine implements FlowLayoutEngine {
|
|
|
8950
8980
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DagreFlowLayoutEngine>;
|
|
8951
8981
|
}
|
|
8952
8982
|
|
|
8953
|
-
export { AI_FORBIDDEN_NODE_CONFIG_KEYS, APP_STATES, AddCanvasNote, ApplyAutomationExecutionDetail, ApplyBuilderCommand, ApplyBuilderSnapshot, AutomationBuilderCatalogApiService, AutomationDesignApiService, AutomationExecutionApiService, AutomationExecutionsPageComponent, BottomPanelComponent, BuilderTopbarComponent, CLIENT_AUTOMATION_DEFAULT_STATE, CancelAutomationExecution, ClearAutomationRuntimeState, ClearCommandHistory, ClearConflict, ClearPendingOperation, ClearSelection, ClearWorkflowBuilder, ClientAutomationActionKey, ClientAutomationFacade, ClientAutomationPageComponent, ClientAutomationState, ClientInteractionDialogComponent, ClientStartFormDialogComponent, CommitStepUpdates, CommitWorkflowMetadata, ConnectionCreated, ConnectionCreationFailed, ContextPickerComponent, ContextPillButtonComponent, ContextPillComponent, CreateConnection, CreateLocalOpenAiConnection, CreateManualConnection, CreateOpenAiConnection, CreateStep, CreateTrigger, CreateWorkflow, DagreFlowLayoutEngine, DeleteCanvasNote, DeleteConnection, DeleteStep, DeleteTrigger, DeleteWorkflow, DuplicateCanvasNote, DuplicateWorkflow, EndpointBuilder, ExecuteInteractionAction, FLOWPLUS_FORM_DESIGNER_ADAPTER, FLOWPLUS_RETURN_LOOP_CONNECTION_TYPE, FLOWPLUS_WORKFLOW_CONFIG, FLOWPLUS_WORKFLOW_DEFAULT_RUNTIME, FLOWPLUS_WORKFLOW_DEFAULT_STATE, FLOWPLUS_WORKFLOW_NAVIGATION, FLOWPLUS_WORKFLOW_ROUTES, FLOW_NODE_BASE_HEIGHT, FLOW_NODE_CARD_WIDTH, FLOW_NODE_MULTI_OUTPUT_GAP, FLOW_NODE_OUTPUT_SIZE, FlowCanvasComponent, FlowNodeComponent, FlowplusWorkflowActionKey, FlowplusWorkflowFacade, FlowplusWorkflowNavigationService, FlowplusWorkflowOverlayService, FlowplusWorkflowState, INTEGRATIONS_DEFAULT_STATE, InspectorShellComponent, IntegrationConnectionFormComponent, IntegrationsActionKey, IntegrationsFacade, IntegrationsPageComponent, IntegrationsState, KeyboardShortcutsService, LOCAL_FALLBACK_CATALOG, LoadAiProfile, LoadAutomationExecution, LoadClientAutomationCounts, LoadClientForms, LoadContextCatalog, LoadContextCatalogForStep, LoadCurrentInteractions, LoadIntegrationsCatalog, LoadIntegrationsConnections, LoadIntegrationsOverview, LoadInteractionDetail, LoadInteractionHistory, LoadLatestAutomationExecution, LoadLayout, LoadManualTriggers, LoadMyRequests, LoadOperationsAuditEvents, LoadOperationsAutomations, LoadOperationsBottlenecks, LoadOperationsHealth, LoadOperationsInstance, LoadOperationsInstanceTimeline, LoadOperationsInstances, LoadOperationsOverview, LoadOperationsWorkItems, LoadRequestLifecycle, LoadStartCatalog, LoadTriggers, LoadWorkflowBuilder, LoadWorkflowCatalog, LoadWorkflowList, MarkLayoutDirty, MoveStep, NODE_COLOR_TOKEN, NODE_DEFAULT_ICON, NODE_MT_ICON, NoopFlowplusFormDesignerAdapter, OPERATIONS_DEFAULT_STATE, OperationsActionKey, OperationsFacade, OperationsPageComponent, OperationsState, PaletteComponent, PaletteDragSourceDirective, PollAutomationExecution, ProblemsPanelComponent, ProcessCreateDialogComponent, PublishWorkflow, RedoBuilderCommand, ReloadWorkflowBuilder, RevokeConnection, RunAutomationTrigger, RunManualTrigger, RunWorkflowTest, SaveAiProfile, SaveInteractionDraft, SaveLayout, SelectCanvasNote, SelectConnection, SelectRuntimeNodeRun, SelectStep, SelectTrigger, SetActiveInspectorTab, SetBottomPanelHeight, SetBottomPanelOpen, SetBottomPanelTab, SetCanvasViewport, SetContextCatalog, SetCreateDialogOpen, SetInspectorOpen, SetLayout, SetLayoutAutosavePaused, SetMinimap, SetPaletteOpen, SetPaletteSearch, SetPendingOperation, SetReadonly, SetSelectedRuntimeTrigger, SetSelection, SetSelectionFromCanvas, SetStudioFilter, SetValidation, SetWorkflowCatalog, SetWorkflowDefinition, StepCreated, StepCreationFailed, SubmitStartForm, TRIGGER_MT_ICON, TestAiProfile, TestConnection, TestRunPanelComponent, UnconfiguredFormDesignerAdapter, UndoBuilderCommand, UnpublishWorkflow, UpdateCanvasNote, UpdateConnection, UpdateLocalOpenAiConnection, UpdateOpenAiConnection, UpdateStep, UpdateTrigger, UpdateWorkflowMetadata, UpdateWorkflowResources, UpdateWorkflowVariables, ValidateWorkflow, WorkflowBuilderPageComponent, WorkflowCatalogApiService, WorkflowContextApiService, WorkflowDebugApiService, WorkflowDefinitionApiService, WorkflowFormApiService, WorkflowRunDebuggerPageComponent, WorkflowRuntimeApiService, WorkflowStudioPageComponent, WorkflowValidationApiService, allValidationIssues, applyBuilderSnapshot, avatarSeverityForStep, avatarSeverityForTrigger, canShowConnectionQuickAdd, canonicalTriggerTypeForStarterKind, coerceTranslatable, colorVarFor, computeBranchLanes, computeSaveStatus, connectionCanvasId, connectionClosesDirectedCycle, derivePortsForStep, extractMessage, flowNodeCardHeightForOutputs, flowNodeLayoutHeightForOutputs, flowNodeOutputCenterY, flowNodeOutputStackHeight, flowPortKeyExists, fromWorkflowConnectionDomain, fromWorkflowStepDomain, hasOtherPending, iconFor, indexValidationByConnectionId, indexValidationByStepId, indexValidationByTriggerId, inputPortId, isEntityDirty, isReturnConnectionForCanvas, mapHttpError, mtIconForStep, mtIconForTrigger, newClientMutationId, nextOperationId, nodeCanvasId, outputPortId, parseConnectionId, parseNodeId, parsePortId, parseTriggerOutputPortId, parseTriggerStartConnectionId, patchLayoutPosition, patchTriggerLayoutPosition, provideFlowplusFormDesignerAdapter, provideFlowplusWorkflow, provideFlowplusWorkflowNavigation, provideFlowplusWorkflowNavigationDefaults, readAiNodeHelperMetadata, readRecord, removeStepWithEdges, resolveConnectionEndpointStep, resolveTranslatable, resolveTriggerStartNodeKey, resolveTriggerStartStep, resolveTriggerStartStepId, resolveWorkflowTriggerKey, routeConnectionForCanvas, savingOrSaved, shouldPublishCurrentDefinitionBeforeRun, summarizeTriggerCycleValidation, tempNodeCanvasId, toWorkflowConnectionDomain, toWorkflowDefinitionDomain, toWorkflowStepDomain, toWorkflowTriggerDomain, triggerCanvasId, triggerOutputPortId, triggerStartConnectionCanvasId, triggerStarterKindFor, unwrap, unwrapApiData, upsertConnection, upsertStep };
|
|
8954
|
-
export type { ActivateAutomationRequest, ActivationResult, AdminOperationsQuery, AiNodeHelperMetadata, AiNodeKind, AiProfile, AiProfileUpdateRequest, AiProfileValidationStatus, AiProviderErrorCode, AiProviderMetadata, AiTokenUsage, ApiEnvelope, AssignmentSelectorContractResult, AssignmentValidationRequest, AutomationBuilderCatalog, AutomationCommandHeaders, AutomationEngineHealthSnapshot, AutomationExecutionDetail, AutomationExecutionEvent, AutomationExecutionListResult, AutomationExecutionNodeDataDetail, AutomationExecutionStatus, AutomationExecutionSummary, AutomationExportDefinition, AutomationFormBindingDefinition, AutomationFrontendDetail, AutomationFrontendListResult, AutomationImportRequest, AutomationImportResult, AutomationLastExecutionSummary, AutomationMetadataRequest, AutomationNodeAttempt, AutomationNodeDefinition, AutomationNodeRun, AutomationNodeTestRunExternalCallAudit, AutomationNodeTestRunLogEntry, AutomationNodeTestRunRequest, AutomationNodeTestRunResult, AutomationNodeTestRunStatus, AutomationNodeTestRunValidationIssue, AutomationNodeType, AutomationPagedResult, AutomationRetentionPruneResult, AutomationRevisionDiffResult, AutomationRevisionSummary, AutomationRouteDefinition, AutomationRunResult, AutomationRuntimeWait, AutomationRuntimeWaitResumeTokenResult, AutomationSelectorItem, AutomationSelectorResult, AutomationStatus, AutomationSummary, AutomationTriggerDefinition, AutomationTriggerType, AutomationValidationIssue, AutomationValidationReport, AutomationValidationSummary, AvatarSeverityVars, BatchBuilderPatchRequest, BusinessActionActorContext, BusinessActionApp, BusinessActionAppsResult, BusinessActionAutomationContext, BusinessActionCatalog, BusinessActionDefinition, BusinessActionDiscoveryContext, BusinessActionError, BusinessActionField, BusinessActionListResult, BusinessActionNodeConfig, BusinessActionOption, BusinessActionOptionProvider, BusinessActionOptionsRequest, BusinessActionOptionsResponse, BusinessActionTestRequest, BusinessActionTestResponse, BusinessActionValidateRequest, BusinessActionValidateResponse, BusinessActionValidationIssue, CanonicalFormDefinitionDetail, CanonicalFormDefinitionSummary, CanonicalFormListParams, CanonicalFormRevisionDetail, CanonicalFormRevisionPublishResult, CanonicalFormRevisionSummary, CanonicalFormRevisionValidationResult, CanonicalModuleDefinitionDetail, CanonicalModuleDefinitionListParams, CanonicalModuleDefinitionSummary, CanonicalModuleField, CanonicalModuleSchema, ClientAutomationCounts, ClientAutomationQuery, ClientAutomationStateModel, ClientInteraction, ClientInteractionDetail, ClientInteractionFormSurface, ClientInteractionPayload, ClientManualTrigger, ClientRequestLifecycle, ClientRequestLifecycleEvent, ClientRequestLifecycleStep, ClientRequestSummary, ClientStartCatalog, ClientStartForm, ConfigFieldWidget, ConfigUiAction, ConfigUiCompanionWrite, ConfigUiComputedRule, ConfigUiFieldHint, ConfigUiGroupSchema, ConfigUiListItemSchema, ConfigUiOptionsSource, ConfigUiSection, ConfigUiVisibilityRule, ConnectionTestRequest, ConnectionTestResult, ConnectorActionCatalogItem, ConnectorCatalog, ConnectorProviderCatalogItem, ConvertToFileActionCatalogItem, ConvertToFileCatalog, CreateCanonicalFormDefinitionRequest, CreateCanonicalFormRevisionRequest, CreateCanonicalModuleDefinitionRequest, CreateCanonicalModuleFieldRequest, CreateWorkflowConnectionRequest, CreateWorkflowDefinitionRequest, CreateWorkflowPluginStepRequest, CreateWorkflowStepRequest, CredentialFieldDescriptor, CredentialMutationResult, CredentialOAuthStartRequest, CredentialOAuthStartResult, CredentialProviderCatalogItem, CredentialReference, CredentialReferenceListResult, CredentialTestRequest, CredentialTestResult, CredentialTypeCatalogItem, CredentialTypeCatalogResult, DataTransformActionCatalogItem, DataTransformCatalog, EngineCommandError, EngineEventDto, ExecutionCancelResult, ExecutionNodeAiSummary, ExecutionRetryRequest, ExecutionRetryResult, ExpressionNamespaceDescriptor, ExpressionPreviewRequest, ExpressionPreviewResult, ExpressionValidationRequest, ExpressionValidationResult, FlowBranchLaneVm, FlowCanvasConnectionPosition, FlowCanvasConnectionRouting, FlowCanvasConnectionRoutingContext, FlowCanvasConnectionSide, FlowCanvasConnectionType, FlowCanvasConnectionWaypoint, FlowCanvasEdgeVm, FlowCanvasNodeVm, FlowLayoutEngine, FlowNodePortVm, FlowPlusCommitMappingValidationRequest, FlowPlusModuleCatalogItem, FlowPlusModuleCatalogResult, FlowPlusModuleField, FlowPlusModuleSchemaResult, FlowPortDirection, FlowPortSide, FlowplusApiError, FlowplusBuilderCommand, FlowplusBuilderSlice, FlowplusConflictState, FlowplusDirtyFlags, FlowplusExecutionRuntimeSlice, FlowplusFormDesignerAdapter, FlowplusPendingOperation, FlowplusPublishStatus, FlowplusRuntimeNodeState, FlowplusRuntimeNodeVisualState, FlowplusRuntimeReplayMode, FlowplusRuntimeRouteState, FlowplusRuntimeRouteVisualState, FlowplusRuntimeTriggerState, FlowplusRuntimeTriggerVisualState, FlowplusSaveStatus, FlowplusSelection, FlowplusStudioSlice, FlowplusTriggerExecutionRequest, FlowplusUiState, FlowplusWorkflowConfig, FlowplusWorkflowNavigationConfig, FlowplusWorkflowStateModel, FormBindingDefinitionRequest, FormDefinitionStatus, FormPurpose, FormRevisionStatus, FormSchemaResult, FormSelectorContractResult, FormSelectorItem, FormVersionListResult, FormVersionSummary, FormulaBuilderValue, GenericAiNodeConfig, HumanApprovalDecisionRequest, HumanApprovalDecisionResult, HumanTaskActionResult, HumanTaskAssignment, HumanTaskCancelRequest, HumanTaskDraftRequest, HumanTaskPayloadResult, HumanTaskSubmitRequest, InlineFormCreateRequest, InlineFormDraftResult, InlineFormDraftUpdateRequest, InlineFormDraftValidationIssue, InlineFormDraftValidationResult, InlineFormFieldDraft, IntegrationAuthType, IntegrationConnectionSummary, IntegrationConnectionsResponse, IntegrationProviderCatalogItem, IntegrationProviderCategory, IntegrationSection, IntegrationSectionKey, IntegrationsOverview, IntegrationsStateModel, InteractionAction, InteractionActionRequest, InteractionAllowedAction, JsonSchemaLite, LocalOpenAiCompatibleConnectionRequest, LocalProviderRequestMode, ManualConnectionRequest, ManualCredentialCreateRequest, ModuleDefinitionStatus, ModuleFieldDataType, ModuleFieldStorageType, NavigationTarget, NodeConfigUiSchema, NodeDefinitionRequest, NodeTypeCatalogItem, OpenAiConnectionRequest, OpenStepFormDesignerInput, OpenStepFormPreviewInput, OperationsAuditEvent, OperationsAutomationSummary, OperationsBottleneck, OperationsHealth, OperationsInstanceDetail, OperationsInstanceSummary, OperationsNodeRun, OperationsOpenWorkItem, OperationsOverview, OperationsRecentFailure, OperationsRuntimeWait, OperationsStateModel, OperationsStatusCount, OperationsTimelineEvent, OperationsWorkItem, PagedResult, ProcessContextEntryDto, ProcessContextLineageNodeDto, ProcessContextSnapshotDto, ProcessContextTimelineEventDto, ProcessFormLoadRequest, ProcessFormLoadResponseDto, ProcessStartRequest, ProcessStartResultDto, ProcessSubmitOperationKey, ProcessSubmitRequest, ProcessSubmitResponseDto, ProcessSubmitStatus, PublishAutomationRequest, PublishAutomationResult, QueuedNodeSummary, ReorderCanonicalModuleFieldRequestItem, ReorderCanonicalModuleFieldsRequest, RouteDefinitionRequest, RunManualTriggerRequest, SaveInteractionDraftRequest, ScheduleOptionsResult, SchedulePreviewRequest, SchedulePreviewResult, ScheduleValidationRequest, SpecializedAiNodeConfig, StepFormDesignerResult, StepFormPreviewResult, SubmitStartFormRequest, TaskActionRequest, TaskActionResultDto, TranslatableText, TriggerCycleValidationSummary, TriggerDefinitionRequest, TriggerNodeVm, TriggerStarterKind, TriggerTypeCatalogItem, UpdateCanonicalFormDefinitionRequest, UpdateCanonicalFormRevisionRequest, UpdateCanonicalModuleFieldRequest, UpdateWorkflowConnectionRequest, UpdateWorkflowDefinitionRequest, UpdateWorkflowStepRequest, WaitResumeRequest, WaitResumeResult, WebhookSetupResult, WorkflowAppActionDescriptorDto, WorkflowAppActionMappingDto, WorkflowAppActionOptionDto, WorkflowAppActionStepConfigDto, WorkflowAppDescriptorDto, WorkflowAutomatedOutputMappingDto, WorkflowAutomatedStepConfigDto, WorkflowBuilderCapabilitiesDto, WorkflowBuilderDto, WorkflowBuilderPermissionsDto, WorkflowCatalogDefaultsDto, WorkflowCatalogDto, WorkflowCatalogOptionDto, WorkflowConnectionDomain, WorkflowConnectionDto, WorkflowConnectionLayoutDto, WorkflowContextCatalogDto, WorkflowContextCatalogSourceDto, WorkflowContextPathValidationRequest, WorkflowContextPathValidationResultDto, WorkflowContextSourceType, WorkflowContextValueType, WorkflowDefinitionDomain, WorkflowDefinitionDto, WorkflowDefinitionListQuery, WorkflowDefinitionListResult, WorkflowDefinitionSummaryDto, WorkflowFormBindingContractDto, WorkflowFormBindingMode, WorkflowJoinParallelStepConfigDto, WorkflowLayoutDto, WorkflowNodeLayoutDto, WorkflowPluginDescriptorDto, WorkflowPluginStepConfigDto, WorkflowResourceBindingDto, WorkflowRuntimeRoutingPolicyDto, WorkflowSelectedActionDto, WorkflowStartParallelStepConfigDto, WorkflowStatus, WorkflowStepActionCatalogItemDto, WorkflowStepActionDto, WorkflowStepCategory, WorkflowStepDefaultsItemDto, WorkflowStepDomain, WorkflowStepDto, WorkflowStepFormBindingDto, WorkflowStepFormContractDto, WorkflowStepFormUpdateRequest, WorkflowStepPropertyDto, WorkflowStepType, WorkflowStepTypeCapabilityItemDto, WorkflowStepTypeCatalogItemDto, WorkflowSubprocessContextMappingDto, WorkflowSubprocessPropertyMappingDto, WorkflowSubprocessStepConfigDto, WorkflowTestRunConnectionDecisionDto, WorkflowTestRunContextChangeDto, WorkflowTestRunContextValueDto, WorkflowTestRunMode, WorkflowTestRunRequest, WorkflowTestRunResultDto, WorkflowTestRunStatus, WorkflowTestStepResultDto, WorkflowTestStepStatus, WorkflowTriggerDomain, WorkflowTriggerDto, WorkflowTriggerType, WorkflowValidationEntityType, WorkflowValidationGroupKey, WorkflowValidationGroupedIssuesDto, WorkflowValidationIssueDto, WorkflowValidationIssueSeverity, WorkflowValidationResultDto, WorkflowValidationSeverity, WorkflowValidationStateDto, WorkflowVariableCollectionDto, WorkflowVariableDto, WorkflowVariableRequest, WorkflowViewportDto };
|
|
8983
|
+
export { AI_FORBIDDEN_NODE_CONFIG_KEYS, APP_STATES, AddCanvasNote, ApplyAutomationExecutionDetail, ApplyBuilderCommand, ApplyBuilderSnapshot, AutomationBuilderCatalogApiService, AutomationDesignApiService, AutomationExecutionApiService, AutomationExecutionsPageComponent, BottomPanelComponent, BuilderTopbarComponent, CLIENT_AUTOMATION_DEFAULT_STATE, CancelAutomationExecution, ClearAutomationRuntimeState, ClearCommandHistory, ClearConflict, ClearPendingOperation, ClearSelection, ClearWorkflowBuilder, ClientAutomationActionKey, ClientAutomationFacade, ClientAutomationPageComponent, ClientAutomationState, ClientInteractionDialogComponent, ClientStartFormDialogComponent, CommitStepUpdates, CommitWorkflowMetadata, ConnectionCreated, ConnectionCreationFailed, ContextPickerComponent, ContextPillButtonComponent, ContextPillComponent, CreateConnection, CreateLocalOpenAiConnection, CreateManualConnection, CreateOpenAiConnection, CreateStep, CreateTrigger, CreateWorkflow, DagreFlowLayoutEngine, DeleteCanvasNote, DeleteConnection, DeleteStep, DeleteTrigger, DeleteWorkflow, DuplicateCanvasNote, DuplicateWorkflow, EndpointBuilder, ExecuteInteractionAction, FLOWPLUS_FORM_DESIGNER_ADAPTER, FLOWPLUS_RETURN_LOOP_CONNECTION_TYPE, FLOWPLUS_WORKFLOW_CONFIG, FLOWPLUS_WORKFLOW_DEFAULT_RUNTIME, FLOWPLUS_WORKFLOW_DEFAULT_STATE, FLOWPLUS_WORKFLOW_NAVIGATION, FLOWPLUS_WORKFLOW_ROUTES, FLOW_NODE_BASE_HEIGHT, FLOW_NODE_CARD_WIDTH, FLOW_NODE_MULTI_OUTPUT_GAP, FLOW_NODE_OUTPUT_SIZE, FlowCanvasComponent, FlowNodeComponent, FlowplusWorkflowActionKey, FlowplusWorkflowFacade, FlowplusWorkflowNavigationService, FlowplusWorkflowOverlayService, FlowplusWorkflowState, INTEGRATIONS_DEFAULT_STATE, InspectorShellComponent, IntegrationConnectionFormComponent, IntegrationsActionKey, IntegrationsFacade, IntegrationsPageComponent, IntegrationsState, KeyboardShortcutsService, LOCAL_FALLBACK_CATALOG, LoadAiProfile, LoadAutomationExecution, LoadClientAutomationCounts, LoadClientForms, LoadContextCatalog, LoadContextCatalogForStep, LoadCurrentInteractions, LoadIntegrationsCatalog, LoadIntegrationsConnections, LoadIntegrationsOverview, LoadInteractionDetail, LoadInteractionHistory, LoadLatestAutomationExecution, LoadLayout, LoadManualTriggers, LoadMyRequests, LoadOperationsAuditEvents, LoadOperationsAutomations, LoadOperationsBottlenecks, LoadOperationsHealth, LoadOperationsInstance, LoadOperationsInstanceTimeline, LoadOperationsInstances, LoadOperationsOverview, LoadOperationsWorkItems, LoadRequestLifecycle, LoadStartCatalog, LoadTriggers, LoadWorkflowBuilder, LoadWorkflowCatalog, LoadWorkflowList, MarkLayoutDirty, MoveStep, NODE_COLOR_TOKEN, NODE_DEFAULT_ICON, NODE_MT_ICON, NoopFlowplusFormDesignerAdapter, OPERATIONS_DEFAULT_STATE, OperationsActionKey, OperationsFacade, OperationsPageComponent, OperationsState, PaletteComponent, PaletteDragSourceDirective, PollAutomationExecution, ProblemsPanelComponent, ProcessCreateDialogComponent, PublishWorkflow, RedoBuilderCommand, ReloadWorkflowBuilder, RevokeConnection, RunAutomationTrigger, RunManualTrigger, RunWorkflowTest, SaveAiProfile, SaveInteractionDraft, SaveLayout, SelectCanvasNote, SelectConnection, SelectRuntimeNodeRun, SelectStep, SelectTrigger, SetActiveInspectorTab, SetBottomPanelHeight, SetBottomPanelOpen, SetBottomPanelTab, SetCanvasViewport, SetContextCatalog, SetCreateDialogOpen, SetInspectorOpen, SetLayout, SetLayoutAutosavePaused, SetMinimap, SetPaletteOpen, SetPaletteSearch, SetPendingOperation, SetReadonly, SetSelectedRuntimeTrigger, SetSelection, SetSelectionFromCanvas, SetShowLastExecution, SetStudioFilter, SetValidation, SetWorkflowCatalog, SetWorkflowDefinition, StepCreated, StepCreationFailed, SubmitStartForm, TRIGGER_MT_ICON, TestAiProfile, TestConnection, TestRunPanelComponent, UnconfiguredFormDesignerAdapter, UndoBuilderCommand, UnpublishWorkflow, UpdateCanvasNote, UpdateConnection, UpdateLocalOpenAiConnection, UpdateOpenAiConnection, UpdateStep, UpdateTrigger, UpdateWorkflowMetadata, UpdateWorkflowResources, UpdateWorkflowVariables, ValidateWorkflow, WorkflowBuilderPageComponent, WorkflowCatalogApiService, WorkflowContextApiService, WorkflowDebugApiService, WorkflowDefinitionApiService, WorkflowFormApiService, WorkflowRunDebuggerPageComponent, WorkflowRuntimeApiService, WorkflowStudioPageComponent, WorkflowValidationApiService, allValidationIssues, applyBuilderSnapshot, avatarSeverityForStep, avatarSeverityForTrigger, canShowConnectionQuickAdd, canonicalTriggerTypeForStarterKind, coerceTranslatable, colorVarFor, computeBranchLanes, computeSaveStatus, connectionCanvasId, connectionClosesDirectedCycle, derivePortsForStep, extractMessage, flowNodeCardHeightForOutputs, flowNodeLayoutHeightForOutputs, flowNodeOutputCenterY, flowNodeOutputStackHeight, flowPortKeyExists, fromWorkflowConnectionDomain, fromWorkflowStepDomain, hasOtherPending, iconFor, indexValidationByConnectionId, indexValidationByStepId, indexValidationByTriggerId, inputPortId, isEntityDirty, isReturnConnectionForCanvas, mapHttpError, mtIconForStep, mtIconForTrigger, newClientMutationId, nextOperationId, nodeCanvasId, outputPortId, parseConnectionId, parseNodeId, parsePortId, parseTriggerOutputPortId, parseTriggerStartConnectionId, patchLayoutPosition, patchTriggerLayoutPosition, provideFlowplusFormDesignerAdapter, provideFlowplusWorkflow, provideFlowplusWorkflowNavigation, provideFlowplusWorkflowNavigationDefaults, readAiNodeHelperMetadata, readRecord, removeStepWithEdges, resolveConnectionEndpointStep, resolveTranslatable, resolveTriggerStartNodeKey, resolveTriggerStartStep, resolveTriggerStartStepId, resolveWorkflowTriggerKey, routeConnectionForCanvas, savingOrSaved, shouldPublishCurrentDefinitionBeforeRun, summarizeTriggerCycleValidation, tempNodeCanvasId, toWorkflowConnectionDomain, toWorkflowDefinitionDomain, toWorkflowStepDomain, toWorkflowTriggerDomain, triggerCanvasId, triggerOutputPortId, triggerStartConnectionCanvasId, triggerStarterKindFor, unwrap, unwrapApiData, upsertConnection, upsertStep };
|
|
8984
|
+
export type { ActivateAutomationRequest, ActivationResult, AdminOperationsQuery, AiNodeHelperMetadata, AiNodeKind, AiProfile, AiProfileUpdateRequest, AiProfileValidationStatus, AiProviderErrorCode, AiProviderMetadata, AiTokenUsage, ApiEnvelope, AssignmentSelectorContractResult, AssignmentValidationRequest, AutomationBuilderCatalog, AutomationCommandHeaders, AutomationEngineHealthSnapshot, AutomationExecutionDetail, AutomationExecutionEvent, AutomationExecutionListResult, AutomationExecutionNodeDataDetail, AutomationExecutionStatus, AutomationExecutionSummary, AutomationExportDefinition, AutomationFormBindingDefinition, AutomationFrontendDetail, AutomationFrontendListResult, AutomationImportRequest, AutomationImportResult, AutomationLastExecutionSummary, AutomationMetadataRequest, AutomationNodeAttempt, AutomationNodeDefinition, AutomationNodeRun, AutomationNodeTestRunExternalCallAudit, AutomationNodeTestRunLogEntry, AutomationNodeTestRunRequest, AutomationNodeTestRunResult, AutomationNodeTestRunStatus, AutomationNodeTestRunValidationIssue, AutomationNodeType, AutomationPagedResult, AutomationRetentionPruneResult, AutomationRevisionDiffResult, AutomationRevisionSummary, AutomationRouteDefinition, AutomationRunResult, AutomationRuntimeWait, AutomationRuntimeWaitResumeTokenResult, AutomationSelectorItem, AutomationSelectorResult, AutomationStatus, AutomationSummary, AutomationTriggerDefinition, AutomationTriggerType, AutomationValidationIssue, AutomationValidationReport, AutomationValidationSummary, AvatarSeverityVars, BatchBuilderPatchRequest, BusinessActionActorContext, BusinessActionApp, BusinessActionAppsResult, BusinessActionAutomationContext, BusinessActionCatalog, BusinessActionDefinition, BusinessActionDiscoveryContext, BusinessActionError, BusinessActionField, BusinessActionListResult, BusinessActionNodeConfig, BusinessActionOption, BusinessActionOptionProvider, BusinessActionOptionsRequest, BusinessActionOptionsResponse, BusinessActionTestRequest, BusinessActionTestResponse, BusinessActionValidateRequest, BusinessActionValidateResponse, BusinessActionValidationIssue, CanonicalFormDefinitionDetail, CanonicalFormDefinitionSummary, CanonicalFormListParams, CanonicalFormRevisionDetail, CanonicalFormRevisionPublishResult, CanonicalFormRevisionSummary, CanonicalFormRevisionValidationResult, CanonicalModuleDefinitionDetail, CanonicalModuleDefinitionListParams, CanonicalModuleDefinitionSummary, CanonicalModuleField, CanonicalModuleSchema, ClientAutomationCounts, ClientAutomationQuery, ClientAutomationStateModel, ClientInteraction, ClientInteractionDetail, ClientInteractionFormSurface, ClientInteractionPayload, ClientManualTrigger, ClientRequestLifecycle, ClientRequestLifecycleEvent, ClientRequestLifecycleStep, ClientRequestSummary, ClientStartCatalog, ClientStartForm, ConfigFieldWidget, ConfigUiAction, ConfigUiCompanionWrite, ConfigUiComputedRule, ConfigUiFieldHint, ConfigUiGroupSchema, ConfigUiListItemSchema, ConfigUiOptionsSource, ConfigUiSection, ConfigUiVisibilityRule, ConnectionTestRequest, ConnectionTestResult, ConnectorActionCatalogItem, ConnectorCatalog, ConnectorProviderCatalogItem, ConvertToFileActionCatalogItem, ConvertToFileCatalog, CreateCanonicalFormDefinitionRequest, CreateCanonicalFormRevisionRequest, CreateCanonicalModuleDefinitionRequest, CreateCanonicalModuleFieldRequest, CreateWorkflowConnectionRequest, CreateWorkflowDefinitionRequest, CreateWorkflowPluginStepRequest, CreateWorkflowStepRequest, CredentialFieldDescriptor, CredentialMutationResult, CredentialOAuthStartRequest, CredentialOAuthStartResult, CredentialProviderCatalogItem, CredentialReference, CredentialReferenceListResult, CredentialTestRequest, CredentialTestResult, CredentialTypeCatalogItem, CredentialTypeCatalogResult, DataTransformActionCatalogItem, DataTransformCatalog, EngineCommandError, EngineEventDto, ExecutionCancelResult, ExecutionNodeAiSummary, ExecutionRetryRequest, ExecutionRetryResult, ExpressionNamespaceDescriptor, ExpressionPreviewRequest, ExpressionPreviewResult, ExpressionValidationRequest, ExpressionValidationResult, FlowBranchLaneVm, FlowCanvasConnectionPosition, FlowCanvasConnectionRouting, FlowCanvasConnectionRoutingContext, FlowCanvasConnectionSide, FlowCanvasConnectionType, FlowCanvasConnectionWaypoint, FlowCanvasEdgeVm, FlowCanvasNodeVm, FlowLayoutEngine, FlowNodePortVm, FlowPlusCommitMappingValidationRequest, FlowPlusModuleCatalogItem, FlowPlusModuleCatalogResult, FlowPlusModuleField, FlowPlusModuleSchemaResult, FlowPortDirection, FlowPortSide, FlowplusApiError, FlowplusBuilderCommand, FlowplusBuilderSlice, FlowplusConflictState, FlowplusDirtyFlags, FlowplusExecutionPollingOptions, FlowplusExecutionReplayMode, FlowplusExecutionRuntimeSlice, FlowplusFormDesignerAdapter, FlowplusPendingOperation, FlowplusPublishStatus, FlowplusRuntimeNodeState, FlowplusRuntimeNodeVisualState, FlowplusRuntimeReplayMode, FlowplusRuntimeRouteState, FlowplusRuntimeRouteVisualState, FlowplusRuntimeTriggerState, FlowplusRuntimeTriggerVisualState, FlowplusSaveStatus, FlowplusSelection, FlowplusStudioSlice, FlowplusTriggerExecutionRequest, FlowplusUiState, FlowplusWorkflowConfig, FlowplusWorkflowNavigationConfig, FlowplusWorkflowStateModel, FormBindingDefinitionRequest, FormDefinitionStatus, FormPurpose, FormRevisionStatus, FormSchemaResult, FormSelectorContractResult, FormSelectorItem, FormVersionListResult, FormVersionSummary, FormulaBuilderValue, GenericAiNodeConfig, HumanApprovalDecisionRequest, HumanApprovalDecisionResult, HumanTaskActionResult, HumanTaskAssignment, HumanTaskCancelRequest, HumanTaskDraftRequest, HumanTaskPayloadResult, HumanTaskSubmitRequest, InlineFormCreateRequest, InlineFormDraftResult, InlineFormDraftUpdateRequest, InlineFormDraftValidationIssue, InlineFormDraftValidationResult, InlineFormFieldDraft, IntegrationAuthType, IntegrationConnectionSummary, IntegrationConnectionsResponse, IntegrationProviderCatalogItem, IntegrationProviderCategory, IntegrationSection, IntegrationSectionKey, IntegrationsOverview, IntegrationsStateModel, InteractionAction, InteractionActionRequest, InteractionAllowedAction, JsonSchemaLite, LocalOpenAiCompatibleConnectionRequest, LocalProviderRequestMode, ManualConnectionRequest, ManualCredentialCreateRequest, ModuleDefinitionStatus, ModuleFieldDataType, ModuleFieldStorageType, NavigationTarget, NodeConfigUiSchema, NodeDefinitionRequest, NodeTypeCatalogItem, OpenAiConnectionRequest, OpenStepFormDesignerInput, OpenStepFormPreviewInput, OperationsAuditEvent, OperationsAutomationSummary, OperationsBottleneck, OperationsHealth, OperationsInstanceDetail, OperationsInstanceSummary, OperationsNodeRun, OperationsOpenWorkItem, OperationsOverview, OperationsRecentFailure, OperationsRuntimeWait, OperationsStateModel, OperationsStatusCount, OperationsTimelineEvent, OperationsWorkItem, PagedResult, ProcessContextEntryDto, ProcessContextLineageNodeDto, ProcessContextSnapshotDto, ProcessContextTimelineEventDto, ProcessFormLoadRequest, ProcessFormLoadResponseDto, ProcessStartRequest, ProcessStartResultDto, ProcessSubmitOperationKey, ProcessSubmitRequest, ProcessSubmitResponseDto, ProcessSubmitStatus, PublishAutomationRequest, PublishAutomationResult, QueuedNodeSummary, ReorderCanonicalModuleFieldRequestItem, ReorderCanonicalModuleFieldsRequest, RouteDefinitionRequest, RunManualTriggerRequest, SaveInteractionDraftRequest, ScheduleOptionsResult, SchedulePreviewRequest, SchedulePreviewResult, ScheduleValidationRequest, SpecializedAiNodeConfig, StepFormDesignerResult, StepFormPreviewResult, SubmitStartFormRequest, TaskActionRequest, TaskActionResultDto, TranslatableText, TriggerCycleValidationSummary, TriggerDefinitionRequest, TriggerNodeVm, TriggerStarterKind, TriggerTypeCatalogItem, UpdateCanonicalFormDefinitionRequest, UpdateCanonicalFormRevisionRequest, UpdateCanonicalModuleFieldRequest, UpdateWorkflowConnectionRequest, UpdateWorkflowDefinitionRequest, UpdateWorkflowStepRequest, WaitResumeRequest, WaitResumeResult, WebhookSetupResult, WorkflowAppActionDescriptorDto, WorkflowAppActionMappingDto, WorkflowAppActionOptionDto, WorkflowAppActionStepConfigDto, WorkflowAppDescriptorDto, WorkflowAutomatedOutputMappingDto, WorkflowAutomatedStepConfigDto, WorkflowBuilderCapabilitiesDto, WorkflowBuilderDto, WorkflowBuilderPermissionsDto, WorkflowCatalogDefaultsDto, WorkflowCatalogDto, WorkflowCatalogOptionDto, WorkflowConnectionDomain, WorkflowConnectionDto, WorkflowConnectionLayoutDto, WorkflowContextCatalogDto, WorkflowContextCatalogSourceDto, WorkflowContextPathValidationRequest, WorkflowContextPathValidationResultDto, WorkflowContextSourceType, WorkflowContextValueType, WorkflowDefinitionDomain, WorkflowDefinitionDto, WorkflowDefinitionListQuery, WorkflowDefinitionListResult, WorkflowDefinitionSummaryDto, WorkflowFormBindingContractDto, WorkflowFormBindingMode, WorkflowJoinParallelStepConfigDto, WorkflowLayoutDto, WorkflowNodeLayoutDto, WorkflowPluginDescriptorDto, WorkflowPluginStepConfigDto, WorkflowResourceBindingDto, WorkflowRuntimeRoutingPolicyDto, WorkflowSelectedActionDto, WorkflowStartParallelStepConfigDto, WorkflowStatus, WorkflowStepActionCatalogItemDto, WorkflowStepActionDto, WorkflowStepCategory, WorkflowStepDefaultsItemDto, WorkflowStepDomain, WorkflowStepDto, WorkflowStepFormBindingDto, WorkflowStepFormContractDto, WorkflowStepFormUpdateRequest, WorkflowStepPropertyDto, WorkflowStepType, WorkflowStepTypeCapabilityItemDto, WorkflowStepTypeCatalogItemDto, WorkflowSubprocessContextMappingDto, WorkflowSubprocessPropertyMappingDto, WorkflowSubprocessStepConfigDto, WorkflowTestRunConnectionDecisionDto, WorkflowTestRunContextChangeDto, WorkflowTestRunContextValueDto, WorkflowTestRunMode, WorkflowTestRunRequest, WorkflowTestRunResultDto, WorkflowTestRunStatus, WorkflowTestStepResultDto, WorkflowTestStepStatus, WorkflowTriggerDomain, WorkflowTriggerDto, WorkflowTriggerType, WorkflowValidationEntityType, WorkflowValidationGroupKey, WorkflowValidationGroupedIssuesDto, WorkflowValidationIssueDto, WorkflowValidationIssueSeverity, WorkflowValidationResultDto, WorkflowValidationSeverity, WorkflowValidationStateDto, WorkflowVariableCollectionDto, WorkflowVariableDto, WorkflowVariableRequest, WorkflowViewportDto };
|