@esfaenza/flow-builder 20.3.29 → 20.3.31
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/README.md +10 -1
- package/fesm2022/esfaenza-flow-builder.mjs +154 -3
- package/fesm2022/esfaenza-flow-builder.mjs.map +1 -1
- package/index.d.ts +117 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -992,6 +992,44 @@ interface FlowCatalogParameter {
|
|
|
992
992
|
isOutput?: boolean;
|
|
993
993
|
isRequired?: boolean;
|
|
994
994
|
}
|
|
995
|
+
/**
|
|
996
|
+
* §6.3, §6.4 — una funzione (o un operatore) scrivibile in un'espressione: la **palette**
|
|
997
|
+
* dell'editor di formule, cioe' la terza gamba accanto ai nomi (`POST /flows/references`) e al
|
|
998
|
+
* giudizio (`POST /flows/validate-formula`).
|
|
999
|
+
*
|
|
1000
|
+
* Due cose da non dimenticare, perche' sbagliarle produce rilievi falsi:
|
|
1001
|
+
*
|
|
1002
|
+
* - l'elenco **non e' autoritativo**: un motore puo' supportare piu' di quanto dichiara, quindi
|
|
1003
|
+
* una funzione fuori catalogo non si accusa. A giudicare e' `validateFormula`, sempre.
|
|
1004
|
+
* - la lista **vuota** significa «il motore non le dichiara», non «non ce ne sono» (§4.6): si
|
|
1005
|
+
* mostra il campo di testo libero e nessuna palette.
|
|
1006
|
+
*
|
|
1007
|
+
* `signature` e `description` sono da **mostrare**, non da parsare: la grammatica resta del
|
|
1008
|
+
* motore. `parameters`, `resultDataType` e `category` possono mancare — un motore con overload e
|
|
1009
|
+
* funzioni variadiche si descrive piu' fedelmente con la sola `signature`.
|
|
1010
|
+
*/
|
|
1011
|
+
interface FlowFormulaFunction {
|
|
1012
|
+
name: string;
|
|
1013
|
+
/** Per raggruppare la palette; assente = un gruppo senza titolo. */
|
|
1014
|
+
category?: string | null;
|
|
1015
|
+
/** La forma d'uso, da mostrare così com'e': `IF(condizione, se vero, se falso)`. */
|
|
1016
|
+
signature?: string | null;
|
|
1017
|
+
description?: string | null;
|
|
1018
|
+
/** Cosa **inserire** quando si sceglie la voce. Assente: si inserisce `name`. */
|
|
1019
|
+
snippet?: string | null;
|
|
1020
|
+
example?: string | null;
|
|
1021
|
+
resultDataType?: FlowDataType | null;
|
|
1022
|
+
isCollection?: boolean;
|
|
1023
|
+
parameters?: FlowFormulaFunctionParameter[];
|
|
1024
|
+
}
|
|
1025
|
+
/** Un parametro di una funzione di formula: descrittivo, non un contratto da validare. */
|
|
1026
|
+
interface FlowFormulaFunctionParameter {
|
|
1027
|
+
name: string;
|
|
1028
|
+
description?: string | null;
|
|
1029
|
+
dataType?: FlowDataType | null;
|
|
1030
|
+
isCollection?: boolean;
|
|
1031
|
+
isOptional?: boolean;
|
|
1032
|
+
}
|
|
995
1033
|
|
|
996
1034
|
/**
|
|
997
1035
|
* Payload delle primitive — FRONTEND.md §6, §7, §8, §10.
|
|
@@ -1592,6 +1630,27 @@ declare abstract class FlowBuilderApi {
|
|
|
1592
1630
|
abstract listForms(kind?: FlowFormKind): Promise<FlowCatalogEntry[]>;
|
|
1593
1631
|
/** `GET /catalog/forms/{name}/parameters` */
|
|
1594
1632
|
abstract listFormParameters(formName: string): Promise<FlowCatalogParameter[]>;
|
|
1633
|
+
/**
|
|
1634
|
+
* `GET /catalog/formula-functions?usage=` — le funzioni (e gli operatori, se il motore li
|
|
1635
|
+
* dichiara) scrivibili in un'espressione: la **palette** dell'editor di formule (§6.3, §6.4).
|
|
1636
|
+
*
|
|
1637
|
+
* È la terza gamba dell'editor di formule, e le altre due non la sostituiscono: i **nomi**
|
|
1638
|
+
* citabili li da' {@link getReferences}, il **giudizio** sull'espressione
|
|
1639
|
+
* {@link validateFormula}, e questa dice cosa si puo' scrivere in mezzo.
|
|
1640
|
+
*
|
|
1641
|
+
* `usage` chiede le sole funzioni che hanno senso in quel punto — lo stesso valore che va in
|
|
1642
|
+
* {@link validateFormula}. Un motore che non filtra risponde comunque l'elenco intero, che e'
|
|
1643
|
+
* legittimo: chi mostra non deve dedurre niente dal fatto che una voce ci sia.
|
|
1644
|
+
*
|
|
1645
|
+
* Due regole, e non sono dettagli. La lista **vuota** significa «il motore non le dichiara»,
|
|
1646
|
+
* non «non ce ne sono» (§4.6): si mostra il campo di testo libero, non una palette vuota. E
|
|
1647
|
+
* l'elenco **non e' autoritativo**: accusare una funzione che non c'e' produrrebbe un rilievo
|
|
1648
|
+
* falso su una formula valida, perche' un motore puo' supportare piu' di quanto dichiara.
|
|
1649
|
+
*
|
|
1650
|
+
* Opzionale come ogni catalogo che dipende da un servizio dell'host: assente, l'editor di
|
|
1651
|
+
* formule resta quello di prima — nomi e verifica, senza palette.
|
|
1652
|
+
*/
|
|
1653
|
+
listFormulaFunctions(usage?: FlowFormulaUsage): Promise<FlowFormulaFunction[]>;
|
|
1595
1654
|
/** `GET /catalog/enum-types` — per `objectType` delle risorse `Enum`. */
|
|
1596
1655
|
abstract listEnumTypes(): Promise<FlowCatalogEntry[]>;
|
|
1597
1656
|
/**
|
|
@@ -1778,6 +1837,11 @@ declare class HttpFlowBuilderApi extends FlowBuilderApi {
|
|
|
1778
1837
|
listScriptParameters(scriptName: string): Promise<FlowCatalogParameter[]>;
|
|
1779
1838
|
listForms(kind?: FlowFormKind): Promise<FlowCatalogEntry[]>;
|
|
1780
1839
|
listFormParameters(formName: string): Promise<FlowCatalogParameter[]>;
|
|
1840
|
+
/**
|
|
1841
|
+
* §6.3 — la palette dell'editor di formule. `usage` e' un filtro, non un obbligo: chi non lo
|
|
1842
|
+
* manda ottiene l'elenco intero, ed e' legittimo anche che un motore lo ignori.
|
|
1843
|
+
*/
|
|
1844
|
+
listFormulaFunctions(usage?: FlowFormulaUsage): Promise<FlowFormulaFunction[]>;
|
|
1781
1845
|
listEnumTypes(): Promise<FlowCatalogEntry[]>;
|
|
1782
1846
|
/** §4.6 — i valori di un tipo: `enumType` e' l'`objectType`, e va nel path come segmento. */
|
|
1783
1847
|
listEnumValues(enumType: string): Promise<FlowEnumValue[]>;
|
|
@@ -2446,6 +2510,7 @@ declare class FlowCatalogStore {
|
|
|
2446
2510
|
private readonly entriesCache;
|
|
2447
2511
|
private readonly parametersCache;
|
|
2448
2512
|
private readonly membersCache;
|
|
2513
|
+
private readonly formulaFunctionsCache;
|
|
2449
2514
|
/**
|
|
2450
2515
|
* Una lista vuota significa "non lo so", non "nessuno": con il catalogo non popolato la
|
|
2451
2516
|
* validazione salta i controlli invece di produrre falsi allarmi (§7). L'editor fa lo
|
|
@@ -2469,6 +2534,15 @@ declare class FlowCatalogStore {
|
|
|
2469
2534
|
*/
|
|
2470
2535
|
listForms(kind?: FlowFormKind): Promise<FlowCatalogEntry[]>;
|
|
2471
2536
|
listFormParameters(formName: string): Promise<FlowCatalogParameter[]>;
|
|
2537
|
+
/**
|
|
2538
|
+
* §6.3 — la palette dell'editor di formule. La cache e' per **usage**, perche' e' cio' che
|
|
2539
|
+
* cambia la risposta: un motore che filtra risponde due elenchi diversi a `Condition` e a
|
|
2540
|
+
* `Resource`, e una chiave sola li farebbe sovrascrivere a vicenda.
|
|
2541
|
+
*
|
|
2542
|
+
* La primitiva e' opzionale e l'errore diventa lista vuota — che qui significa «il motore non
|
|
2543
|
+
* le dichiara»: nessuna palette e nessuna accusa a una funzione fuori elenco (§4.6, §6.3).
|
|
2544
|
+
*/
|
|
2545
|
+
listFormulaFunctions(usage?: FlowFormulaUsage): Promise<FlowFormulaFunction[]>;
|
|
2472
2546
|
listEnumTypes(): Promise<FlowCatalogEntry[]>;
|
|
2473
2547
|
/**
|
|
2474
2548
|
* §4.6 — i valori di un tipo di enumerazione, cioe' i nomi scrivibili in `enumValue` (§4.2).
|
|
@@ -4195,6 +4269,7 @@ declare class FormulaEditorComponent {
|
|
|
4195
4269
|
private readonly store;
|
|
4196
4270
|
private readonly api;
|
|
4197
4271
|
private readonly service;
|
|
4272
|
+
private readonly catalog;
|
|
4198
4273
|
private readonly destroyRef;
|
|
4199
4274
|
readonly expression: _angular_core.InputSignal<string>;
|
|
4200
4275
|
/** Dove comparira': e' cio' che dice al motore cosa pretendere (§6.3). */
|
|
@@ -4242,6 +4317,37 @@ declare class FormulaEditorComponent {
|
|
|
4242
4317
|
private readonly token;
|
|
4243
4318
|
protected readonly highlighted: _angular_core.WritableSignal<number>;
|
|
4244
4319
|
readonly suggestions: _angular_core.Signal<FlowReference[]>;
|
|
4320
|
+
/**
|
|
4321
|
+
* Le funzioni dichiarate dal motore. L'elenco lo tiene in cache lo store, per `usage`: piu'
|
|
4322
|
+
* editor montati insieme fanno una richiesta sola. Vuoto = non dichiarate, e allora la palette
|
|
4323
|
+
* non esiste — mostrarla vuota farebbe credere che il motore non abbia funzioni.
|
|
4324
|
+
*/
|
|
4325
|
+
private readonly functions;
|
|
4326
|
+
protected readonly isPaletteOpen: _angular_core.WritableSignal<boolean>;
|
|
4327
|
+
protected readonly paletteFilter: _angular_core.WritableSignal<string>;
|
|
4328
|
+
readonly hasPalette: _angular_core.Signal<boolean>;
|
|
4329
|
+
/**
|
|
4330
|
+
* Le voci raggruppate per `category`. La categoria puo' mancare: quelle senza finiscono in un
|
|
4331
|
+
* gruppo senza titolo, in coda, invece di sparire.
|
|
4332
|
+
*/
|
|
4333
|
+
readonly paletteGroups: _angular_core.Signal<{
|
|
4334
|
+
category: string;
|
|
4335
|
+
items: FlowFormulaFunction[];
|
|
4336
|
+
}[]>;
|
|
4337
|
+
private matchesFilter;
|
|
4338
|
+
togglePalette(): void;
|
|
4339
|
+
/** La forma d'uso da mostrare: `signature` se il motore la da', altrimenti il solo nome. */
|
|
4340
|
+
signatureOf(entry: FlowFormulaFunction): string;
|
|
4341
|
+
/**
|
|
4342
|
+
* Inserisce la voce scelta al punto in cui si stava scrivendo. Cosa inserire lo dice `snippet`
|
|
4343
|
+
* — assente, il nome — e il cursore va **dentro** la prima parentesi: la palette serve a non
|
|
4344
|
+
* ricordare la firma, e lasciare il cursore in fondo costringerebbe a tornare indietro a mano.
|
|
4345
|
+
*
|
|
4346
|
+
* Non si scrive niente nel documento oltre al testo: la firma resta del motore, e qui non c'e'
|
|
4347
|
+
* nessun parser che la interpreti.
|
|
4348
|
+
*/
|
|
4349
|
+
insertFunction(entry: FlowFormulaFunction): void;
|
|
4350
|
+
private loadFunctions;
|
|
4245
4351
|
readonly issues: _angular_core.Signal<FlowFormulaIssue[]>;
|
|
4246
4352
|
readonly hasErrors: _angular_core.Signal<boolean>;
|
|
4247
4353
|
/**
|
|
@@ -4611,6 +4717,16 @@ declare class ParameterEditorComponent {
|
|
|
4611
4717
|
readonly inputs: _angular_core.Signal<FlowInputParameter[]>;
|
|
4612
4718
|
readonly outputs: _angular_core.Signal<FlowOutputParameter[]>;
|
|
4613
4719
|
readonly hasCatalog: _angular_core.Signal<boolean>;
|
|
4720
|
+
/**
|
|
4721
|
+
* I due elenchi **non** sono una partizione: `isInput` e `isOutput` sono flag indipendenti, e un
|
|
4722
|
+
* parametro bidirezionale (tipico dei componenti di screen) va proposto in tutt'e due i posti.
|
|
4723
|
+
* Filtrare i soli `isOutput !== true` lo faceva sparire dagli ingressi — e con esso dai
|
|
4724
|
+
* `missingRequired`, quindi non veniva proposto da nessuna parte; scritto a mano nel picker degli
|
|
4725
|
+
* input diventava poi `PARAMETER_UNKNOWN`, perche' il catalogo li' non lo conteneva.
|
|
4726
|
+
*
|
|
4727
|
+
* Chi non dichiara nessuno dei due flag vale **input**: e' il caso di gran lunga piu' comune, ed
|
|
4728
|
+
* e' cio' che i cataloghi che i flag non li dichiarano si aspettano.
|
|
4729
|
+
*/
|
|
4614
4730
|
readonly inputCatalog: _angular_core.Signal<FlowCatalogParameter[]>;
|
|
4615
4731
|
readonly outputCatalog: _angular_core.Signal<FlowCatalogParameter[]>;
|
|
4616
4732
|
/**
|
|
@@ -5874,4 +5990,4 @@ declare class SelectValueDirective implements AfterViewChecked {
|
|
|
5874
5990
|
}
|
|
5875
5991
|
|
|
5876
5992
|
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_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, HttpFlowBuilderApi, NamePickerComponent, NodeInspectorBase, ORCHESTRATION_CONDITION_OUTPUT, ObjectPickerComponent, OrchestratedStageInspectorComponent, ParameterEditorComponent, PasteDialogComponent, ProblemsPanelComponent, RecordFilterEditorComponent, ReferencePickerComponent, 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, buildClipboardPayload, canvasNodeId, checkConditionLogic, checkFlowName, choiceSetSourceOf, declaredChoiceSetSources, describePathEntry, duplicateField, elementIcon, emptyFlowDefinition, enumChoiceSetFieldType, fieldAt, filterReferences, flattenFields, flowNodeWidth, flowNodeWidthClass, innerNamesOf, insertField, isClipboardPayload, isCustomConditionLogic, isEmptyReferenceFilter, isFieldResource, isGlobalReference, isNumericType, isPathInside, isTypeCheckedOperator, isUnknownEnumChoiceSetField, isValidFlowName, isValued, loadPathLevel, matchesReferenceFilter, moveCondition, moveField, navigatePath, otherSourceFieldsOf, outletByKey, outletsOf, parseCanvasNodeId, parseInvariantNumber, parseSourceConnectorId, parseTargetConnectorId, pathAvailableNames, pathContainerLabel, pathKey, pathNotVerifiableMessage, planPaste, referenceRoot, referencedRootsOf, remapConditionLogic, removeCondition, removeField, resolvePath, rewriteReferences, samePath, screenActionNames, screenFieldNames, severityBucket, slugifyFlowName, sourceConnectorId, stageStepNames, stageStepOutputReferenced, stepsOf, targetConnectorId, typeOfCollection, uniqueFlowName, valuedFieldOf, valuedFieldsOf, variantFieldOf, variantOf, variantPresetOf };
|
|
5877
|
-
export type { ChoiceSetSource, FieldAssignmentHolder, FilterFieldOption, FilterHolder, FlowActionCall, FlowAnyNode, FlowAssignment, FlowAssignmentItem, FlowAssignmentOperator, FlowAssignmentOperatorEntry, FlowBuilderHttpConfig, FlowCanvasEdge, 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, FlowFormulaIssue, FlowFormulaUsage, FlowFormulaValidationRequest, FlowFormulaValidationResult, FlowGlobalVariableEntry, FlowInputFieldAssignment, FlowInputParameter, FlowInterviewResult, FlowInterviewStatus, FlowIssueSeverity, FlowLayoutDirection, FlowLayoutNodeInput, FlowLayoutOptions, FlowLayoutResult, FlowListQuery, FlowLoop, FlowNameCheck, FlowNameProblem, FlowNewVersionRequest, FlowNodeBase, FlowNodeCollection, FlowNodeRef, FlowObjectDescription, FlowObjectSummary, FlowOffsetUnit, FlowOrchestratedStage, FlowOutlet, FlowOutline, FlowOutlineConnection, FlowOutlineNode, FlowOutputFieldAssignment, FlowOutputParameter, FlowPalettePick, FlowPastePlan, FlowPasteRename, FlowPasteResource, FlowPendingScreen, FlowProcessType, FlowRecordCreate, FlowRecordDelete, FlowRecordFilter, FlowRecordFilterOperator, FlowRecordLookup, FlowRecordRollback, FlowRecordTriggerType, FlowRecordUpdate, FlowRecordValue, FlowReference, FlowReferenceFilter, FlowReferenceKind, FlowRegionContainerType, FlowResourceCollection, FlowResourceKindEntry, FlowResourceRef, 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 };
|
|
5993
|
+
export type { ChoiceSetSource, FieldAssignmentHolder, FilterFieldOption, FilterHolder, FlowActionCall, FlowAnyNode, FlowAssignment, FlowAssignmentItem, FlowAssignmentOperator, FlowAssignmentOperatorEntry, FlowBuilderHttpConfig, FlowCanvasEdge, 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, FlowInputFieldAssignment, FlowInputParameter, FlowInterviewResult, FlowInterviewStatus, FlowIssueSeverity, FlowLayoutDirection, FlowLayoutNodeInput, FlowLayoutOptions, FlowLayoutResult, FlowListQuery, FlowLoop, FlowNameCheck, FlowNameProblem, FlowNewVersionRequest, FlowNodeBase, FlowNodeCollection, FlowNodeRef, FlowObjectDescription, FlowObjectSummary, FlowOffsetUnit, FlowOrchestratedStage, FlowOutlet, FlowOutline, FlowOutlineConnection, FlowOutlineNode, FlowOutputFieldAssignment, FlowOutputParameter, FlowPalettePick, FlowPastePlan, FlowPasteRename, FlowPasteResource, FlowPendingScreen, FlowProcessType, FlowRecordCreate, FlowRecordDelete, FlowRecordFilter, FlowRecordFilterOperator, FlowRecordLookup, FlowRecordRollback, FlowRecordTriggerType, FlowRecordUpdate, FlowRecordValue, FlowReference, FlowReferenceFilter, FlowReferenceKind, FlowRegionContainerType, FlowResourceCollection, FlowResourceKindEntry, FlowResourceRef, 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 };
|