@esfaenza/flow-builder 20.3.10 → 20.3.11
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 +16 -8
- package/fesm2022/esfaenza-flow-builder.mjs +141 -71
- package/fesm2022/esfaenza-flow-builder.mjs.map +1 -1
- package/index.d.ts +89 -28
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -880,13 +880,12 @@ interface FlowReference {
|
|
|
880
880
|
isWritable?: boolean;
|
|
881
881
|
description?: string | null;
|
|
882
882
|
}
|
|
883
|
-
/**
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
}
|
|
883
|
+
/**
|
|
884
|
+
* Non esiste un `FlowReferenceQuery`: il body di `POST /flows/references` e
|
|
885
|
+
* `POST /flows/references/writable` e' il **documento nudo**, senza involucro e senza campi di
|
|
886
|
+
* filtro (§6.4, §13.17). La risposta porta tutti i riferimenti col proprio tipo, e la
|
|
887
|
+
* compatibilita' col campo la decide l'editor con `filterReferences` (`core/reference-filter.util`).
|
|
888
|
+
*/
|
|
890
889
|
interface FlowConnectorTarget {
|
|
891
890
|
name: string;
|
|
892
891
|
label?: string | null;
|
|
@@ -1188,8 +1187,12 @@ declare abstract class FlowBuilderApi {
|
|
|
1188
1187
|
* `POST /flows/references` — i valori proponibili in un campo che accetta una risorsa.
|
|
1189
1188
|
* Include gli **output automatici** degli elementi, che non sono dichiarati in nessuna
|
|
1190
1189
|
* collection: e' il motivo per cui non va ricostruita lato client (§4.5, §13.3).
|
|
1190
|
+
*
|
|
1191
|
+
* Prende il **documento nudo** e restituisce **tutti** i riferimenti: nel body non c'e' nessun
|
|
1192
|
+
* filtro di tipo, e la compatibilita' col campo la decide l'editor (§6.4, §13.17). Cosi' la
|
|
1193
|
+
* stessa risposta serve tutte le tendine di una schermata.
|
|
1191
1194
|
*/
|
|
1192
|
-
abstract getReferences(
|
|
1195
|
+
abstract getReferences(definition: FlowDefinition): Promise<FlowReference[]>;
|
|
1193
1196
|
/**
|
|
1194
1197
|
* `POST /flows/references/writable` — le variabili **piu' le globali assegnabili**, per i
|
|
1195
1198
|
* campi di destinazione. Le globali assegnabili sono **due**, `$Flow.CurrentStage` e
|
|
@@ -1197,8 +1200,11 @@ declare abstract class FlowBuilderApi {
|
|
|
1197
1200
|
* flag per dichiararne una scrivibile (§5.2). La primitiva le comprende già, l'editor non le
|
|
1198
1201
|
* aggiunge. Restano fuori i campi di `$Record`, che dipendono dallo schema: quelli arrivano da
|
|
1199
1202
|
* `listFields(object, 'updateable')` (§6.4).
|
|
1203
|
+
*
|
|
1204
|
+
* Come `getReferences`: documento nudo nel body, nessun filtro di tipo, elenco completo in
|
|
1205
|
+
* risposta (§13.17).
|
|
1200
1206
|
*/
|
|
1201
|
-
abstract getWritableReferences(
|
|
1207
|
+
abstract getWritableReferences(definition: FlowDefinition): Promise<FlowReference[]>;
|
|
1202
1208
|
/** `POST /flows/connector-targets?excluding=` — i node a cui un arco puo' puntare. */
|
|
1203
1209
|
abstract getConnectorTargets(definition: FlowDefinition, excluding?: string): Promise<FlowConnectorTarget[]>;
|
|
1204
1210
|
/**
|
|
@@ -1339,11 +1345,23 @@ declare class HttpFlowBuilderApi extends FlowBuilderApi {
|
|
|
1339
1345
|
deactivateFlow(flowName: string): Promise<void>;
|
|
1340
1346
|
deleteVersion(flowName: string, version: number): Promise<void>;
|
|
1341
1347
|
deleteFlow(flowName: string): Promise<void>;
|
|
1348
|
+
/**
|
|
1349
|
+
* Documento nudo alla radice: le primitive che **analizzano** il documento non usano
|
|
1350
|
+
* l'involucro `{definition, flowName, …}` della §6.2, che serve solo a chi deve sapere dove
|
|
1351
|
+
* riporlo (§6.4, §13.17). Sbagliare involucro qui non produce nessun errore: si otterrebbe la
|
|
1352
|
+
* validazione di un flow vuoto, cioe' «manca lo Start».
|
|
1353
|
+
*/
|
|
1342
1354
|
validateDefinition(definition: FlowDefinition): Promise<FlowValidationResult>;
|
|
1343
1355
|
validateVersion(flowName: string, version: number): Promise<FlowValidationResult>;
|
|
1344
1356
|
getDictionaries(processType?: string): Promise<FlowDictionaries>;
|
|
1345
|
-
|
|
1346
|
-
|
|
1357
|
+
/**
|
|
1358
|
+
* Il body e' il documento **nudo**, come per validate/parse/outline/connector-targets (§6.4,
|
|
1359
|
+
* §13.17): avvolgerlo (`{definition: …}`) o aggiungergli campi di filtro non da' nessun errore
|
|
1360
|
+
* — il backend deserializza un `Flow` in cui non riconosce nessuna proprieta', risponde `200` e
|
|
1361
|
+
* l'elenco contiene le sole globali. Se le tendine sembrano vuote, si guarda qui prima di tutto.
|
|
1362
|
+
*/
|
|
1363
|
+
getReferences(definition: FlowDefinition): Promise<FlowReference[]>;
|
|
1364
|
+
getWritableReferences(definition: FlowDefinition): Promise<FlowReference[]>;
|
|
1347
1365
|
getConnectorTargets(definition: FlowDefinition, excluding?: string): Promise<FlowConnectorTarget[]>;
|
|
1348
1366
|
getOutline(definition: FlowDefinition): Promise<FlowOutline>;
|
|
1349
1367
|
listObjects(): Promise<FlowObjectSummary[]>;
|
|
@@ -2035,6 +2053,40 @@ interface PathNavigation {
|
|
|
2035
2053
|
*/
|
|
2036
2054
|
declare function navigatePath(catalog: PathCatalog, request: () => PathNavigationRequest | null): PathNavigation;
|
|
2037
2055
|
|
|
2056
|
+
/**
|
|
2057
|
+
* Filtro di compatibilita' dei riferimenti — FRONTEND.md §6.4.
|
|
2058
|
+
*
|
|
2059
|
+
* `POST /flows/references` e `POST /flows/references/writable` prendono il **documento nudo** e
|
|
2060
|
+
* restituiscono **tutti** i riferimenti, ognuno col proprio `dataType`, `isCollection` e
|
|
2061
|
+
* `isWritable`: nel body non c'e' nessun campo di filtro. Chi sceglie cosa e' compatibile col
|
|
2062
|
+
* campo che l'utente sta compilando e' quindi l'editor, ed e' deliberato — la stessa risposta
|
|
2063
|
+
* serve tutte le tendine di una schermata, quindi si chiede una volta e si filtra n volte.
|
|
2064
|
+
*
|
|
2065
|
+
* Il filtro guarda **la radice**, non il percorso: una radice scartata si porta via anche cio'
|
|
2066
|
+
* che sta sotto, e chi propone i segmenti navigati applica la stessa regola separatamente
|
|
2067
|
+
* (`reference-picker`).
|
|
2068
|
+
*/
|
|
2069
|
+
|
|
2070
|
+
/** I vincoli del campo che si sta compilando. Un campo assente e' "nessun vincolo". */
|
|
2071
|
+
interface FlowReferenceFilter {
|
|
2072
|
+
dataType?: FlowDataType;
|
|
2073
|
+
isCollection?: boolean;
|
|
2074
|
+
objectType?: string;
|
|
2075
|
+
}
|
|
2076
|
+
/**
|
|
2077
|
+
* La forma minima su cui il filtro lavora: la regola vale sia per un riferimento sia per un
|
|
2078
|
+
* segmento di percorso, che riferimento non e'.
|
|
2079
|
+
*/
|
|
2080
|
+
interface FlowTypedEntry {
|
|
2081
|
+
dataType?: FlowDataType | null;
|
|
2082
|
+
isCollection?: boolean | null;
|
|
2083
|
+
objectType?: string | null;
|
|
2084
|
+
}
|
|
2085
|
+
/** `true` se il campo non pone nessun vincolo: lì filtrare e' inutile. */
|
|
2086
|
+
declare function isEmptyReferenceFilter(filter: FlowReferenceFilter | undefined): boolean;
|
|
2087
|
+
declare function matchesReferenceFilter(entry: FlowTypedEntry, filter: FlowReferenceFilter): boolean;
|
|
2088
|
+
declare function filterReferences(references: readonly FlowReference[], filter: FlowReferenceFilter | undefined): FlowReference[];
|
|
2089
|
+
|
|
2038
2090
|
/** Un node come lo vede l'editor: il node piu' da dove viene. */
|
|
2039
2091
|
interface FlowNodeRef {
|
|
2040
2092
|
name: string;
|
|
@@ -2686,19 +2738,29 @@ declare class ReferencePickerComponent {
|
|
|
2686
2738
|
*/
|
|
2687
2739
|
readonly elementsOnly: _angular_core.InputSignal<boolean>;
|
|
2688
2740
|
readonly valueChange: _angular_core.OutputEmitterRef<string | undefined>;
|
|
2689
|
-
private readonly references;
|
|
2690
2741
|
/**
|
|
2691
|
-
* L'elenco **senza** il filtro di tipo
|
|
2742
|
+
* L'elenco come arriva dalla primitiva, **senza** il filtro di tipo.
|
|
2692
2743
|
*
|
|
2693
|
-
*
|
|
2694
|
-
*
|
|
2695
|
-
*
|
|
2696
|
-
*
|
|
2697
|
-
*
|
|
2698
|
-
*
|
|
2699
|
-
*
|
|
2744
|
+
* Serve a due cose oltre che a produrre le proposte: riconoscere le radici dei percorsi e
|
|
2745
|
+
* mostrare i contenitori come righe in cui si entra. Il filtro (§6.4) guarda il tipo della
|
|
2746
|
+
* **radice**, e una radice scartata si porta via anche cio' che sta sotto: in un parametro
|
|
2747
|
+
* `String` una variabile `Structure` non e' compatibile, ma `Richiesta.Ragione` lo e', e
|
|
2748
|
+
* `Leggi_Ordine` non e' un `String` mentre `Leggi_Ordine.Numero` lo e'. Senza questo elenco il
|
|
2749
|
+
* primo membro non si puo' proporre e il secondo viene accusato di non esistere pur essendo un
|
|
2750
|
+
* riferimento valido (§4.5).
|
|
2700
2751
|
*/
|
|
2701
2752
|
private readonly unfiltered;
|
|
2753
|
+
/**
|
|
2754
|
+
* L'insieme da cui si pesca prima del filtro di tipo: in un campo di destinazione e' la
|
|
2755
|
+
* risposta di `getWritableReferences`, altrove {@link unfiltered} stesso.
|
|
2756
|
+
*/
|
|
2757
|
+
private readonly available;
|
|
2758
|
+
/**
|
|
2759
|
+
* Le proposte compatibili col campo. Il filtro e' **locale**: la primitiva prende il documento
|
|
2760
|
+
* nudo e restituisce tutto (§6.4, §13.17), cosi' la stessa risposta serve tutte le tendine di
|
|
2761
|
+
* una schermata.
|
|
2762
|
+
*/
|
|
2763
|
+
private readonly references;
|
|
2702
2764
|
/** Tutto cio' che puo' essere la radice di un percorso, filtrato o no. */
|
|
2703
2765
|
private readonly roots;
|
|
2704
2766
|
private readonly isLoading;
|
|
@@ -2744,10 +2806,9 @@ declare class ReferencePickerComponent {
|
|
|
2744
2806
|
private readonly isReadOnlyPath;
|
|
2745
2807
|
private readonly pathReferences;
|
|
2746
2808
|
/**
|
|
2747
|
-
* Lo stesso filtro
|
|
2748
|
-
*
|
|
2749
|
-
*
|
|
2750
|
-
* al membro che combacia.
|
|
2809
|
+
* Lo stesso filtro delle radici (§6.4), applicato ai segmenti di un percorso: in un parametro
|
|
2810
|
+
* `String` non si propone un membro `Date`. Un segmento da cui si scende resta comunque proposto
|
|
2811
|
+
* anche se il suo tipo non combacia — e' la strada per arrivare al membro che combacia.
|
|
2751
2812
|
*/
|
|
2752
2813
|
private matchesTarget;
|
|
2753
2814
|
/**
|
|
@@ -3170,7 +3231,7 @@ declare class ConditionEditorComponent {
|
|
|
3170
3231
|
*/
|
|
3171
3232
|
hasTypeMismatch(condition: FlowCondition): boolean;
|
|
3172
3233
|
typeMismatchMessage(condition: FlowCondition): string;
|
|
3173
|
-
readonly logicMode: _angular_core.Signal<"and" | "or" | "
|
|
3234
|
+
readonly logicMode: _angular_core.Signal<"and" | "or" | "custom" | "formula">;
|
|
3174
3235
|
readonly customLogic: _angular_core.Signal<string>;
|
|
3175
3236
|
/** Feedback immediato sull'espressione: la verita' resta della validazione backend. */
|
|
3176
3237
|
readonly customLogicError: _angular_core.Signal<string | null>;
|
|
@@ -3252,7 +3313,7 @@ declare class RecordFilterEditorComponent {
|
|
|
3252
3313
|
* evita la ricerca di un campo che nell'elenco non c'e' e non ci sara'.
|
|
3253
3314
|
*/
|
|
3254
3315
|
readonly identifierNotFilterable: _angular_core.Signal<boolean>;
|
|
3255
|
-
readonly logicMode: _angular_core.Signal<"and" | "or" | "
|
|
3316
|
+
readonly logicMode: _angular_core.Signal<"and" | "or" | "custom" | "formula">;
|
|
3256
3317
|
readonly customLogic: _angular_core.Signal<string>;
|
|
3257
3318
|
readonly showEmptyWarning: _angular_core.Signal<boolean>;
|
|
3258
3319
|
addFilter(): void;
|
|
@@ -4006,5 +4067,5 @@ declare class SelectValueDirective implements AfterViewChecked {
|
|
|
4006
4067
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SelectValueDirective, "select[fbValue]", never, { "fbValue": { "alias": "fbValue"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4007
4068
|
}
|
|
4008
4069
|
|
|
4009
|
-
export { ConditionEditorComponent, ConnectorEditorComponent, DebugPanelComponent, ElementDialogComponent, ElementInspectorComponent, ElementPaletteComponent, FALLBACK_COLLECTION_BY_TYPE, FALLBACK_TYPE_LABEL, FLOW_BUILDER_HTTP_CONFIG, 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_RESOURCE_COLLECTIONS, FieldAssignmentEditorComponent, FieldPickerComponent, FlowApiError, FlowBuilderApi, FlowBuilderComponent, FlowCanvasComponent, FlowCatalogStore, FlowDictionaryStore, FlowDocumentStore, FlowEditorSession, FlowLayoutService, FlowValidationStore, HttpFlowBuilderApi, NamePickerComponent, NodeInspectorBase, ORCHESTRATION_CONDITION_OUTPUT, ObjectPickerComponent, OrchestratedStageInspectorComponent, ParameterEditorComponent, ProblemsPanelComponent, RecordFilterEditorComponent, ReferencePickerComponent, ResourcePanelComponent, SEVERITY_BUCKETS, SEVERITY_ICON, SEVERITY_LABEL, START_NODE_NAME, SelectValueDirective, StartInspectorComponent, StructureMemberPickerComponent, StructurePickerComponent, TYPES_WITH_AUTOMATIC_OUTPUT, TYPE_BY_COLLECTION, UNSUPPORTED_TYPES, ValueEditorComponent, VersionPanelComponent, areTypesComparable, canvasNodeId, checkConditionLogic, checkFlowName, describePathEntry, elementIcon, emptyFlowDefinition, flowNodeWidth, flowNodeWidthClass, isCustomConditionLogic, isGlobalReference, isNumericType, isTypeCheckedOperator, isValidFlowName, loadPathLevel, moveCondition, navigatePath, outletByKey, outletsOf, parseCanvasNodeId, parseInvariantNumber, parseSourceConnectorId, parseTargetConnectorId, pathAvailableNames, pathContainerLabel, pathNotVerifiableMessage, referenceRoot, remapConditionLogic, removeCondition, resolvePath, severityBucket, slugifyFlowName, sourceConnectorId, stageStepNames, stageStepOutputReferenced, stepsOf, targetConnectorId, uniqueFlowName, variantFieldOf, variantOf, variantPresetOf };
|
|
4010
|
-
export type { FieldAssignmentHolder, FilterHolder, FlowActionCall, FlowAnyNode, FlowAssignment, FlowAssignmentItem, FlowAssignmentOperator, FlowAssignmentOperatorEntry, FlowBuilderHttpConfig, FlowCanvasEdge, FlowCanvasNode, FlowCatalogEntry, FlowCatalogParameter, FlowChoice, 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, FlowEdge, FlowElementType, FlowElementTypeEntry, FlowErrorCategory, FlowExportQuery, FlowFieldDescription, FlowFieldUsage, FlowFieldValue, FlowFormula, 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, FlowPendingScreen, FlowProcessType, FlowRecordCreate, FlowRecordDelete, FlowRecordFilter, FlowRecordFilterOperator, FlowRecordLookup, FlowRecordRollback, FlowRecordTriggerType, FlowRecordUpdate, FlowRecordValue, FlowReference,
|
|
4070
|
+
export { ConditionEditorComponent, ConnectorEditorComponent, DebugPanelComponent, ElementDialogComponent, ElementInspectorComponent, ElementPaletteComponent, FALLBACK_COLLECTION_BY_TYPE, FALLBACK_TYPE_LABEL, FLOW_BUILDER_HTTP_CONFIG, 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_RESOURCE_COLLECTIONS, FieldAssignmentEditorComponent, FieldPickerComponent, FlowApiError, FlowBuilderApi, FlowBuilderComponent, FlowCanvasComponent, FlowCatalogStore, FlowDictionaryStore, FlowDocumentStore, FlowEditorSession, FlowLayoutService, FlowValidationStore, HttpFlowBuilderApi, NamePickerComponent, NodeInspectorBase, ORCHESTRATION_CONDITION_OUTPUT, ObjectPickerComponent, OrchestratedStageInspectorComponent, ParameterEditorComponent, ProblemsPanelComponent, RecordFilterEditorComponent, ReferencePickerComponent, ResourcePanelComponent, SEVERITY_BUCKETS, SEVERITY_ICON, SEVERITY_LABEL, START_NODE_NAME, SelectValueDirective, StartInspectorComponent, StructureMemberPickerComponent, StructurePickerComponent, TYPES_WITH_AUTOMATIC_OUTPUT, TYPE_BY_COLLECTION, UNSUPPORTED_TYPES, ValueEditorComponent, VersionPanelComponent, areTypesComparable, canvasNodeId, checkConditionLogic, checkFlowName, describePathEntry, elementIcon, emptyFlowDefinition, filterReferences, flowNodeWidth, flowNodeWidthClass, isCustomConditionLogic, isEmptyReferenceFilter, isGlobalReference, isNumericType, isTypeCheckedOperator, isValidFlowName, loadPathLevel, matchesReferenceFilter, moveCondition, navigatePath, outletByKey, outletsOf, parseCanvasNodeId, parseInvariantNumber, parseSourceConnectorId, parseTargetConnectorId, pathAvailableNames, pathContainerLabel, pathNotVerifiableMessage, referenceRoot, remapConditionLogic, removeCondition, resolvePath, severityBucket, slugifyFlowName, sourceConnectorId, stageStepNames, stageStepOutputReferenced, stepsOf, targetConnectorId, uniqueFlowName, variantFieldOf, variantOf, variantPresetOf };
|
|
4071
|
+
export type { FieldAssignmentHolder, FilterHolder, FlowActionCall, FlowAnyNode, FlowAssignment, FlowAssignmentItem, FlowAssignmentOperator, FlowAssignmentOperatorEntry, FlowBuilderHttpConfig, FlowCanvasEdge, FlowCanvasNode, FlowCatalogEntry, FlowCatalogParameter, FlowChoice, 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, FlowEdge, FlowElementType, FlowElementTypeEntry, FlowErrorCategory, FlowExportQuery, FlowFieldDescription, FlowFieldUsage, FlowFieldValue, FlowFormula, 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, FlowPendingScreen, FlowProcessType, FlowRecordCreate, FlowRecordDelete, FlowRecordFilter, FlowRecordFilterOperator, FlowRecordLookup, FlowRecordRollback, FlowRecordTriggerType, FlowRecordUpdate, FlowRecordValue, FlowReference, FlowReferenceFilter, FlowReferenceKind, FlowResourceCollection, FlowResourceKindEntry, FlowResourceRef, FlowResumeRequest, FlowSaveRequest, FlowSaveResult, FlowSchedule, FlowScheduledPath, FlowScreen, FlowScreenNavigation, FlowScreenResponseRequest, 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, StructureMemberUsage, ValueMode };
|