@esfaenza/flow-builder 20.3.39 → 20.3.40

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/index.d.ts CHANGED
@@ -1124,8 +1124,13 @@ interface FlowValidationResult {
1124
1124
  /**
1125
1125
  * Dove comparira' l'espressione. Non e' cosmesi: e' cio' che permette al motore di dire
1126
1126
  * «qui serve un booleano» invece di accettare un'espressione che poi fallira' a runtime (§6.3).
1127
+ *
1128
+ * `Text` e' l'uso diverso dagli altri: cio' che si manda non e' un'espressione ma un **testo con
1129
+ * merge field** — il messaggio di un Custom Error, un text template, la scritta di un campo di
1130
+ * screen (§5.12) — e a essere verificate sono le isole `{!...}`, non la frase. Un testo che non
1131
+ * ne contiene si tiene per se': mandarlo si farebbe accusare ogni parola.
1127
1132
  */
1128
- type FlowFormulaUsage = 'Resource' | 'Condition' | 'ValidationRule' | 'Value' | string;
1133
+ type FlowFormulaUsage = 'Resource' | 'Condition' | 'ValidationRule' | 'Value' | 'Text' | string;
1129
1134
  /**
1130
1135
  * L'unica primitiva della §6.3 che **avvolge** il documento invece di prenderlo nudo: oltre al
1131
1136
  * flow deve portare l'espressione e cosa ci si aspetta che produca (§6.4, ultimo capoverso).
@@ -2523,7 +2528,14 @@ declare class FlowDictionaryStore {
2523
2528
  * significa "non lo so", non "non esiste".
2524
2529
  */
2525
2530
  isGlobalScopeVerifiable(scope: string | undefined | null): boolean;
2526
- /** I percorsi noti di uno scope, già prefissati: `$User.Email`. */
2531
+ /**
2532
+ * I percorsi noti di uno scope, già prefissati: `$User.Email`.
2533
+ *
2534
+ * Il percorso **vuoto** e' lo scope stesso (§4.1): un host puo' dichiarare `$Profile` senza
2535
+ * punto — un'unica istanza invece dell'elenco dei suoi campi — e lì il riferimento e' il nome
2536
+ * dello scope. Concatenare comunque il punto produrrebbe `$Profile.`, che non e' un
2537
+ * riferimento di niente.
2538
+ */
2527
2539
  globalPathsOf(scope: string | undefined | null): string[];
2528
2540
  /** §5.14 — la voce di `stageStepTypes` di un `actionType`. */
2529
2541
  stageStepType(value: string | undefined | null): FlowStageStepTypeEntry | undefined;
@@ -5246,7 +5258,7 @@ declare class ConditionEditorComponent {
5246
5258
  */
5247
5259
  hasTypeMismatch(condition: FlowCondition): boolean;
5248
5260
  typeMismatchMessage(condition: FlowCondition): string;
5249
- readonly logicMode: _angular_core.Signal<"formula" | "and" | "or" | "custom">;
5261
+ readonly logicMode: _angular_core.Signal<"and" | "or" | "formula" | "custom">;
5250
5262
  readonly customLogic: _angular_core.Signal<string>;
5251
5263
  /** Feedback immediato sull'espressione: la verita' resta della validazione backend. */
5252
5264
  readonly customLogicError: _angular_core.Signal<string | null>;
@@ -5351,7 +5363,7 @@ declare class RecordFilterEditorComponent {
5351
5363
  * evita la ricerca di un campo che nell'elenco non c'e' e non ci sara'.
5352
5364
  */
5353
5365
  readonly identifierNotFilterable: _angular_core.Signal<boolean>;
5354
- readonly logicMode: _angular_core.Signal<"formula" | "and" | "or" | "custom">;
5366
+ readonly logicMode: _angular_core.Signal<"and" | "or" | "formula" | "custom">;
5355
5367
  readonly customLogic: _angular_core.Signal<string>;
5356
5368
  readonly showEmptyWarning: _angular_core.Signal<boolean>;
5357
5369
  addFilter(): void;
@@ -5513,6 +5525,107 @@ declare class ConnectorEditorComponent {
5513
5525
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConnectorEditorComponent, "fb-connector-editor", never, { "nodeName": { "alias": "nodeName"; "required": true; "isSignal": true; }; "node": { "alias": "node"; "required": true; "isSignal": true; }; "outlets": { "alias": "outlets"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; }, { "connectorChanged": "connectorChanged"; }, never, never, true, never>;
5514
5526
  }
5515
5527
 
5528
+ declare class MergeTextEditorComponent {
5529
+ private readonly store;
5530
+ private readonly api;
5531
+ private readonly service;
5532
+ private readonly destroyRef;
5533
+ readonly text: _angular_core.InputSignal<string>;
5534
+ /**
5535
+ * Dove comparira'. Resta un input perche' un motore puo' distinguere il messaggio di un errore
5536
+ * dalla scritta di un campo, ma il valore giusto e' quasi sempre quello predefinito.
5537
+ */
5538
+ readonly usage: _angular_core.InputSignal<string>;
5539
+ readonly placeholder: _angular_core.InputSignal<string>;
5540
+ readonly ariaLabel: _angular_core.InputSignal<string>;
5541
+ readonly disabled: _angular_core.InputSignal<boolean>;
5542
+ readonly rows: _angular_core.InputSignal<number>;
5543
+ /** Come nel formula editor: `change` dove mutare il documento ridisegna mezza schermata. */
5544
+ readonly commitOn: _angular_core.InputSignal<"input" | "change">;
5545
+ readonly textChange: _angular_core.OutputEmitterRef<string>;
5546
+ private readonly area;
5547
+ /**
5548
+ * Il testo che si sta scrivendo. Non e' legato al DOM — la casella tiene il suo valore e la
5549
+ * `[value]` resta quella del documento — perche' riscrivere l'attributo a ogni tasto sposta il
5550
+ * cursore quando si corregge in mezzo alla frase.
5551
+ */
5552
+ private readonly draft;
5553
+ private readonly _result;
5554
+ private readonly _isChecking;
5555
+ private timer?;
5556
+ /** Cresce a ogni richiesta: scarta le risposte di verifiche già superate. */
5557
+ private sequence;
5558
+ readonly result: _angular_core.Signal<FlowFormulaValidationResult | null>;
5559
+ readonly isChecking: _angular_core.Signal<boolean>;
5560
+ private readonly references;
5561
+ /** Il documento per cui l'elenco e' stato chiesto: evita una richiesta a ogni apertura. */
5562
+ private loadedFor;
5563
+ protected readonly isPickerOpen: _angular_core.WritableSignal<boolean>;
5564
+ protected readonly filter: _angular_core.WritableSignal<string>;
5565
+ /**
5566
+ * Cio' che si sta scrivendo **dentro** un'isola aperta, se il cursore ci sta dentro: e' la
5567
+ * seconda strada per inserire un nome, e la piu' rapida — chi ha scritto `{!Ord` non va a
5568
+ * cercare un bottone.
5569
+ */
5570
+ private readonly token;
5571
+ protected readonly highlighted: _angular_core.WritableSignal<number>;
5572
+ readonly suggestions: _angular_core.Signal<FlowReference[]>;
5573
+ /** L'elenco del bottone: tutti i nomi, filtrati dalla ricerca. */
5574
+ readonly pickerOptions: _angular_core.Signal<FlowReference[]>;
5575
+ /** Un testo senza segnaposto non si manda: non c'e' niente da verificare (§5.12). */
5576
+ readonly hasMergeFields: _angular_core.Signal<boolean>;
5577
+ readonly issues: _angular_core.Signal<FlowFormulaIssue[]>;
5578
+ readonly hasErrors: _angular_core.Signal<boolean>;
5579
+ readonly isConfirmed: _angular_core.Signal<boolean>;
5580
+ /** Il motore c'e' come primitiva ma non come motore: si dice, non si tace (§6.3). */
5581
+ readonly isUnverified: _angular_core.Signal<boolean>;
5582
+ constructor();
5583
+ onInput(value: string): void;
5584
+ onCommit(value: string): void;
5585
+ onFocus(): void;
5586
+ onCaretMove(): void;
5587
+ onBlur(): void;
5588
+ /**
5589
+ * Le frecce scorrono i suggerimenti e Invio inserisce — ma **solo** quando ce ne sono: in un
5590
+ * testo Invio deve restare Invio, che qui e' un a capo dentro il messaggio.
5591
+ */
5592
+ onKeyDown(event: KeyboardEvent): void;
5593
+ togglePicker(): void;
5594
+ /**
5595
+ * Il bottone: scrive un'isola **intera** al punto del cursore, graffe comprese. Inserire il
5596
+ * solo nome lascerebbe all'utente il compito di ricordarsi la sintassi, che e' esattamente
5597
+ * cio' che il comando esiste per evitare.
5598
+ */
5599
+ insertReference(name: string): void;
5600
+ /**
5601
+ * Il suggerimento dentro un'isola aperta: **completa** il nome e chiude la graffa.
5602
+ *
5603
+ * Non e' {@link insertReference}, ed e' la distinzione da non perdere: lì si scrive un'isola
5604
+ * nuova al punto del cursore, qui si sta già scrivendo dentro una — passare per l'altra strada
5605
+ * produce `{!IdOr{!IdOrdine}`, cioe' due aperture e un segnaposto che non si risolve.
5606
+ */
5607
+ complete(name: string): void;
5608
+ /** Scrive nella casella e propaga: la casella e' la sorgente del testo mentre si digita. */
5609
+ private write;
5610
+ private loadReferences;
5611
+ /**
5612
+ * La parola sotto il cursore, **solo dentro un'isola aperta**: fuori dalle graffe si sta
5613
+ * scrivendo una frase, e proporre nomi di variabili a ogni parola sarebbe rumore.
5614
+ */
5615
+ private refreshToken;
5616
+ severityOf(issue: FlowFormulaIssue): string;
5617
+ hasPosition(issue: FlowFormulaIssue): boolean;
5618
+ /** Il tratto citato dal rilievo, così il messaggio dice *dove* anche senza il salto. */
5619
+ excerptOf(issue: FlowFormulaIssue): string;
5620
+ /** Porta il cursore sul tratto segnalato: e' il payoff di `position`. */
5621
+ goToIssue(issue: FlowFormulaIssue): void;
5622
+ private schedule;
5623
+ private cancel;
5624
+ private check;
5625
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<MergeTextEditorComponent, never>;
5626
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MergeTextEditorComponent, "fb-merge-text-editor", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; "usage": { "alias": "usage"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "commitOn": { "alias": "commitOn"; "required": false; "isSignal": true; }; }, { "textChange": "textChange"; }, never, ["*"], true, never>;
5627
+ }
5628
+
5516
5629
  /**
5517
5630
  * `@Directive()` senza selettore: e' il modo in cui Angular riconosce come input quelli
5518
5631
  * dichiarati su una classe base ereditata da piu' componenti.
@@ -7110,5 +7223,5 @@ declare class SelectValueDirective implements AfterViewChecked {
7110
7223
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SelectValueDirective, "select[fbValue]", never, { "fbValue": { "alias": "fbValue"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
7111
7224
  }
7112
7225
 
7113
- export { ConditionEditorComponent, ConnectorEditorComponent, DebugPanelComponent, DynamicScreenInspectorComponent, ENUM_CHOICE_SET_DEFAULT_DISPLAY_FIELD, ENUM_CHOICE_SET_DEFAULT_VALUE_FIELD, ENUM_CHOICE_SET_FIELDS, ElementDialogComponent, ElementInspectorComponent, ElementPaletteComponent, EnumValuePickerComponent, FALLBACK_COLLECTION_BY_TYPE, FALLBACK_TYPE_LABEL, FLOW_BUILDER_HTTP_CONFIG, FLOW_CLIPBOARD_KIND, FLOW_CLIPBOARD_VERSION, FLOW_ELEMENT_ICONS, FLOW_ELEMENT_VARIANT_FIELDS, FLOW_ELEMENT_VARIANT_ICONS, FLOW_ERROR_FALLBACK_MESSAGE, FLOW_ERROR_HTTP_STATUS, FLOW_FOLD_HEIGHT, FLOW_FOLD_WIDTH, FLOW_GROUP_COLORS, FLOW_NAME_PATTERN, FLOW_NODE_COLLECTIONS, FLOW_NODE_HEIGHT, FLOW_NODE_WIDTH, FLOW_REFERENCE_FIELDS, FLOW_RESOURCE_COLLECTIONS, FLOW_VALUE_FIELDS, FLOW_VALUE_LITERAL_FIELDS, FieldAssignmentEditorComponent, FieldPickerComponent, FieldValuePickerComponent, FlowApiError, FlowBuilderApi, FlowBuilderComponent, FlowCanvasComponent, FlowCatalogStore, FlowClipboardService, FlowDictionaryStore, FlowDocumentStore, FlowEditorSession, FlowLayoutService, FlowValidationStore, FormulaEditorComponent, FormulaValidationService, GROUP_HEADER_HEIGHT, GROUP_MIN_HEIGHT, GROUP_MIN_WIDTH, GROUP_PADDING, GroupPanelComponent, HttpFlowBuilderApi, NamePickerComponent, NodeInspectorBase, ORCHESTRATION_CONDITION_OUTPUT, ObjectPickerComponent, OrchestratedStageInspectorComponent, ParameterEditorComponent, PasteDialogComponent, ProblemsPanelComponent, RecordFilterEditorComponent, ReferencePickerComponent, ResourceDialogComponent, ResourceFormComponent, ResourcePanelComponent, RunDialogComponent, SEVERITY_BUCKETS, SEVERITY_ICON, SEVERITY_LABEL, START_NODE_NAME, SelectValueDirective, StartInspectorComponent, StructureMemberPickerComponent, StructurePickerComponent, TYPES_WITH_AUTOMATIC_OUTPUT, TYPE_BY_COLLECTION, UNSUPPORTED_TYPES, ValueEditorComponent, VersionPanelComponent, allFieldsOf, applyPaste, areTypesComparable, boundsAround, buildClipboardPayload, canvasFoldId, canvasGroupId, canvasNodeId, checkConditionLogic, checkFlowName, choiceSetSourceOf, declaredChoiceSetSources, describeFieldPath, describePathEntry, duplicateField, elementIcon, emptyFlowDefinition, enumChoiceSetFieldType, fieldAt, filterReferences, flattenFields, flowNodeWidth, flowNodeWidthClass, foldSourceConnectorId, foldTargetConnectorId, groupColorClass, groupRect, hasAutoSize, innerNamesOf, insertField, isClipboardPayload, isCustomConditionLogic, isEmptyReferenceFilter, isFieldResource, isFoldReference, isGlobalReference, isNumericType, isPathInside, isTypeCheckedOperator, isUnknownEnumChoiceSetField, isValidFlowName, isValued, loadPathLevel, matchesReferenceFilter, membersInside, moveCondition, moveField, navigatePath, otherSourceFieldsOf, outletByKey, outletsOf, parseCanvasFoldId, parseCanvasGroupId, parseCanvasNodeId, parseFieldPath, parseInvariantNumber, parseSourceConnectorId, parseTargetConnectorId, pathAvailableNames, pathContainerLabel, pathKey, pathNotVerifiableMessage, planPaste, recomputeMembers, referenceRoot, referencedRootsOf, remapConditionLogic, removeCondition, removeField, resolvePath, rewriteReferences, sameMembers, samePath, screenActionNames, screenFieldNames, severityBucket, slugifyFlowName, sourceConnectorId, stageStepNames, stageStepOutputReferenced, stepsOf, targetConnectorId, typeOfCollection, uniqueFlowName, valuedFieldOf, valuedFieldsOf, variantFieldOf, variantOf, variantPresetOf };
7226
+ export { ConditionEditorComponent, ConnectorEditorComponent, DebugPanelComponent, DynamicScreenInspectorComponent, ENUM_CHOICE_SET_DEFAULT_DISPLAY_FIELD, ENUM_CHOICE_SET_DEFAULT_VALUE_FIELD, ENUM_CHOICE_SET_FIELDS, ElementDialogComponent, ElementInspectorComponent, ElementPaletteComponent, EnumValuePickerComponent, FALLBACK_COLLECTION_BY_TYPE, FALLBACK_TYPE_LABEL, FLOW_BUILDER_HTTP_CONFIG, FLOW_CLIPBOARD_KIND, FLOW_CLIPBOARD_VERSION, FLOW_ELEMENT_ICONS, FLOW_ELEMENT_VARIANT_FIELDS, FLOW_ELEMENT_VARIANT_ICONS, FLOW_ERROR_FALLBACK_MESSAGE, FLOW_ERROR_HTTP_STATUS, FLOW_FOLD_HEIGHT, FLOW_FOLD_WIDTH, FLOW_GROUP_COLORS, FLOW_NAME_PATTERN, FLOW_NODE_COLLECTIONS, FLOW_NODE_HEIGHT, FLOW_NODE_WIDTH, FLOW_REFERENCE_FIELDS, FLOW_RESOURCE_COLLECTIONS, FLOW_VALUE_FIELDS, FLOW_VALUE_LITERAL_FIELDS, FieldAssignmentEditorComponent, FieldPickerComponent, FieldValuePickerComponent, FlowApiError, FlowBuilderApi, FlowBuilderComponent, FlowCanvasComponent, FlowCatalogStore, FlowClipboardService, FlowDictionaryStore, FlowDocumentStore, FlowEditorSession, FlowLayoutService, FlowValidationStore, FormulaEditorComponent, FormulaValidationService, GROUP_HEADER_HEIGHT, GROUP_MIN_HEIGHT, GROUP_MIN_WIDTH, GROUP_PADDING, GroupPanelComponent, HttpFlowBuilderApi, MergeTextEditorComponent, NamePickerComponent, NodeInspectorBase, ORCHESTRATION_CONDITION_OUTPUT, ObjectPickerComponent, OrchestratedStageInspectorComponent, ParameterEditorComponent, PasteDialogComponent, ProblemsPanelComponent, RecordFilterEditorComponent, ReferencePickerComponent, ResourceDialogComponent, ResourceFormComponent, ResourcePanelComponent, RunDialogComponent, SEVERITY_BUCKETS, SEVERITY_ICON, SEVERITY_LABEL, START_NODE_NAME, SelectValueDirective, StartInspectorComponent, StructureMemberPickerComponent, StructurePickerComponent, TYPES_WITH_AUTOMATIC_OUTPUT, TYPE_BY_COLLECTION, UNSUPPORTED_TYPES, ValueEditorComponent, VersionPanelComponent, allFieldsOf, applyPaste, areTypesComparable, boundsAround, buildClipboardPayload, canvasFoldId, canvasGroupId, canvasNodeId, checkConditionLogic, checkFlowName, choiceSetSourceOf, declaredChoiceSetSources, describeFieldPath, describePathEntry, duplicateField, elementIcon, emptyFlowDefinition, enumChoiceSetFieldType, fieldAt, filterReferences, flattenFields, flowNodeWidth, flowNodeWidthClass, foldSourceConnectorId, foldTargetConnectorId, groupColorClass, groupRect, hasAutoSize, innerNamesOf, insertField, isClipboardPayload, isCustomConditionLogic, isEmptyReferenceFilter, isFieldResource, isFoldReference, isGlobalReference, isNumericType, isPathInside, isTypeCheckedOperator, isUnknownEnumChoiceSetField, isValidFlowName, isValued, loadPathLevel, matchesReferenceFilter, membersInside, moveCondition, moveField, navigatePath, otherSourceFieldsOf, outletByKey, outletsOf, parseCanvasFoldId, parseCanvasGroupId, parseCanvasNodeId, parseFieldPath, parseInvariantNumber, parseSourceConnectorId, parseTargetConnectorId, pathAvailableNames, pathContainerLabel, pathKey, pathNotVerifiableMessage, planPaste, recomputeMembers, referenceRoot, referencedRootsOf, remapConditionLogic, removeCondition, removeField, resolvePath, rewriteReferences, sameMembers, samePath, screenActionNames, screenFieldNames, severityBucket, slugifyFlowName, sourceConnectorId, stageStepNames, stageStepOutputReferenced, stepsOf, targetConnectorId, typeOfCollection, uniqueFlowName, valuedFieldOf, valuedFieldsOf, variantFieldOf, variantOf, variantPresetOf };
7114
7227
  export type { ChoiceSetSource, FieldAssignmentHolder, FilterFieldOption, FilterHolder, FlowActionCall, FlowAnyNode, FlowAssignment, FlowAssignmentItem, FlowAssignmentOperator, FlowAssignmentOperatorEntry, FlowBuilderHttpConfig, FlowCanvasEdge, FlowCanvasFold, FlowCanvasGroup, FlowCanvasNode, FlowCatalogEntry, FlowCatalogParameter, FlowChoice, FlowClipboardNode, FlowClipboardPayload, FlowClipboardResource, FlowCloneRequest, FlowCollectionProcessor, FlowCollectionProcessorType, FlowComparisonOperator, FlowComparisonOperatorEntry, FlowCondition, FlowConditionHolder, FlowConditionLogic, FlowConflictState, FlowConnectionKind, FlowConnector, FlowConnectorTarget, FlowConstant, FlowCreateRequest, FlowCustomError, FlowCustomErrorMessage, FlowCustomProperty, FlowDataType, FlowDataTypeEntry, FlowDecision, FlowDecisionRule, FlowDefinition, FlowDictionaries, FlowDictionaryEntry, FlowDynamicChoiceSet, FlowDynamicScreen, FlowEdge, FlowElementType, FlowElementTypeEntry, FlowEnumValue, FlowErrorCategory, FlowExportQuery, FlowFieldDescription, FlowFieldUsage, FlowFieldValue, FlowFormKind, FlowFormula, FlowFormulaFunction, FlowFormulaFunctionParameter, FlowFormulaIssue, FlowFormulaUsage, FlowFormulaValidationRequest, FlowFormulaValidationResult, FlowGlobalVariableEntry, FlowGroup, FlowGroupRef, FlowGroupTarget, FlowInputFieldAssignment, FlowInputParameter, FlowInterviewResult, FlowInterviewStatus, FlowIssueSeverity, FlowLayoutDirection, FlowLayoutNodeInput, FlowLayoutOptions, FlowLayoutResult, FlowListQuery, FlowLoop, FlowNameCheck, FlowNameProblem, FlowNewVersionRequest, FlowNodeBase, FlowNodeCollection, FlowNodeRef, FlowObjectDescription, FlowObjectSummary, FlowOffsetUnit, FlowOrchestratedStage, FlowOutlet, FlowOutline, FlowOutlineConnection, FlowOutlineGroup, FlowOutlineNode, FlowOutputFieldAssignment, FlowOutputParameter, FlowPalettePick, FlowPastePlan, FlowPasteRename, FlowPasteResource, FlowPendingScreen, FlowProcessType, FlowRecordCreate, FlowRecordDelete, FlowRecordFilter, FlowRecordFilterOperator, FlowRecordLookup, FlowRecordRollback, FlowRecordTriggerType, FlowRecordUpdate, FlowRecordValue, FlowRect, FlowReference, FlowReferenceFilter, FlowReferenceKind, FlowRegionContainerType, FlowResourceCollection, FlowResourceEdit, FlowResourceKindEntry, FlowResourceRef, FlowResourceTarget, FlowResumeRequest, FlowRunOutcome, FlowRunRequest, FlowSaveRequest, FlowSaveResult, FlowSchedule, FlowScheduledPath, FlowScreen, FlowScreenAction, FlowScreenField, FlowScreenFieldInputsRevisited, FlowScreenFieldNode, FlowScreenFieldPath, FlowScreenFieldType, FlowScreenFieldTypeEntry, FlowScreenNavigation, FlowScreenResponseRequest, FlowScreenTrigger, FlowScreenTriggerInitBehavior, FlowScreenValidationRule, FlowScriptPluginCall, FlowSeverityBucket, FlowSortOption, FlowSortOrder, FlowStage, FlowStageStep, FlowStageStepActionType, FlowStageStepAssignee, FlowStageStepConditionActionType, FlowStageStepRequest, FlowStageStepState, FlowStageStepStatus, FlowStageStepTypeEntry, FlowStart, FlowStartInterviewRequest, FlowStructureDescribed, FlowStructureDescription, FlowStructureInstance, FlowStructureMember, FlowSubflow, FlowSubflowInputAssignment, FlowSubflowOutputAssignment, FlowSummary, FlowTextTemplate, FlowTraceEntry, FlowTransactionModel, FlowTransform, FlowTransformType, FlowTransformValue, FlowTransformValueAction, FlowTriggerType, FlowTypedEntry, FlowTypedValue, FlowUnsupportedNode, FlowValidationIssue, FlowValidationResult, FlowValue, FlowVariable, FlowVersionStatus, FlowVersionSummary, FlowWait, FlowWaitEvent, NamePickerOption, PaletteGroup, PaletteItem, ParameterHolder, PathCatalog, PathContainer, PathContainerKind, PathEntry, PathLevel, PathLevelStatus, PathNavigation, PathNavigationRequest, PathResolution, PathStopReason, PathValueSet, StructureMemberUsage, ValueMode };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/flow-builder",
3
- "version": "20.3.39",
3
+ "version": "20.3.40",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^20.2.14",
6
6
  "@angular/common": "^20.3.28",