@esfaenza/flow-builder 20.3.11 → 20.3.12
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 +28 -0
- package/fesm2022/esfaenza-flow-builder.mjs +331 -22
- package/fesm2022/esfaenza-flow-builder.mjs.map +1 -1
- package/index.d.ts +112 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -708,6 +708,23 @@ interface FlowFieldValue {
|
|
|
708
708
|
value: string;
|
|
709
709
|
label?: string | null;
|
|
710
710
|
}
|
|
711
|
+
/**
|
|
712
|
+
* §4.6 — un valore di un tipo di enumerazione: la risposta di
|
|
713
|
+
* `GET /catalog/enum-types/{name}/values`, dove `{name}` e' l'`objectType` della risorsa.
|
|
714
|
+
*
|
|
715
|
+
* Cio' che si scrive in `enumValue` e' il **nome** (§4.2): `numericValue` e' informativo — serve a
|
|
716
|
+
* riconoscere il valore in dati legacy — e non va mai messo nel documento, perche' un numero lì
|
|
717
|
+
* verrebbe letto come un altro tipo (§13.18).
|
|
718
|
+
*
|
|
719
|
+
* `name` e' il campo del valore, non `value` come in {@link FlowFieldValue}: sono due cataloghi
|
|
720
|
+
* diversi (i valori di un campo di schema contro i valori di un tipo enum) e leggere l'uno con la
|
|
721
|
+
* forma dell'altro darebbe un elenco di `undefined` senza nessun errore.
|
|
722
|
+
*/
|
|
723
|
+
interface FlowEnumValue {
|
|
724
|
+
name: string;
|
|
725
|
+
label?: string | null;
|
|
726
|
+
numericValue?: number | null;
|
|
727
|
+
}
|
|
711
728
|
/**
|
|
712
729
|
* §4.7 — un membro di una classe utilizzabile come `Structure`.
|
|
713
730
|
*
|
|
@@ -1236,6 +1253,23 @@ declare abstract class FlowBuilderApi {
|
|
|
1236
1253
|
abstract listFormParameters(formName: string): Promise<FlowCatalogParameter[]>;
|
|
1237
1254
|
/** `GET /catalog/enum-types` — per `objectType` delle risorse `Enum`. */
|
|
1238
1255
|
abstract listEnumTypes(): Promise<FlowCatalogEntry[]>;
|
|
1256
|
+
/**
|
|
1257
|
+
* `GET /catalog/enum-types/{enumType}/values` — i valori di **un** tipo di enumerazione, cioe'
|
|
1258
|
+
* i nomi che si possono scrivere in `enumValue` (§4.2, §4.6). `enumType` e' esattamente
|
|
1259
|
+
* l'`objectType` della risorsa, del parametro o del membro.
|
|
1260
|
+
*
|
|
1261
|
+
* `listEnumTypes` e' l'altra meta' della catena e non basta: quella dice **quali tipi** esistono,
|
|
1262
|
+
* questa **quali valori** ha un tipo. Senza la seconda chiamata all'utente resta una casella di
|
|
1263
|
+
* testo su un insieme chiuso, che e' il modo piu' facile di scrivere un valore che il runtime non
|
|
1264
|
+
* riconoscera'.
|
|
1265
|
+
*
|
|
1266
|
+
* I valori sono del **tipo**, non del punto in cui compare: la risposta si tiene in cache per
|
|
1267
|
+
* nome del tipo e serve risorse, parametri di action e di form, e membri di una classe (§4.7.1).
|
|
1268
|
+
*
|
|
1269
|
+
* Opzionale come {@link listFieldValues}: un ambiente che non la espone degrada a "non lo so" —
|
|
1270
|
+
* elenco vuoto, valore digitabile a mano e nessuna segnalazione — invece di rompersi (§7).
|
|
1271
|
+
*/
|
|
1272
|
+
listEnumValues(enumType: string): Promise<FlowEnumValue[]>;
|
|
1239
1273
|
/**
|
|
1240
1274
|
* `GET /catalog/structures` — le classi utilizzabili come `objectType` di una risorsa
|
|
1241
1275
|
* `Structure` (§4.7). È un **elenco di classi** nella forma di ogni altro catalogo: i membri
|
|
@@ -1376,6 +1410,8 @@ declare class HttpFlowBuilderApi extends FlowBuilderApi {
|
|
|
1376
1410
|
listForms(): Promise<FlowCatalogEntry[]>;
|
|
1377
1411
|
listFormParameters(formName: string): Promise<FlowCatalogParameter[]>;
|
|
1378
1412
|
listEnumTypes(): Promise<FlowCatalogEntry[]>;
|
|
1413
|
+
/** §4.6 — i valori di un tipo: `enumType` e' l'`objectType`, e va nel path come segmento. */
|
|
1414
|
+
listEnumValues(enumType: string): Promise<FlowEnumValue[]>;
|
|
1379
1415
|
/** §4.7.1 — solo l'elenco delle classi: i membri **non** ci sono, si chiedono a parte. */
|
|
1380
1416
|
listStructures(): Promise<FlowCatalogEntry[]>;
|
|
1381
1417
|
/**
|
|
@@ -1431,6 +1467,18 @@ interface FlowOutlet {
|
|
|
1431
1467
|
* di un percorso: il corpo di un Loop (§3.5).
|
|
1432
1468
|
*/
|
|
1433
1469
|
isStructural?: boolean;
|
|
1470
|
+
/**
|
|
1471
|
+
* `true` → e' un ramo di **recupero da errore**, e la sua assenza non e' «il percorso
|
|
1472
|
+
* finisce qui»: se l'elemento fallisce l'interview finisce `Failed`, con `fault`
|
|
1473
|
+
* valorizzato e le modifiche già eseguite **annullate** (§3.5). Resta una scelta
|
|
1474
|
+
* legittima, e la piu' comune: la validazione la segnala con l'avviso
|
|
1475
|
+
* `FAULT_CONNECTOR_MISSING`, che e' un promemoria e non un difetto.
|
|
1476
|
+
*
|
|
1477
|
+
* Vale sui soli elementi che possono fallire (Record*, ActionCall, ScriptCall, Wait):
|
|
1478
|
+
* il `faultConnector` di un `OrchestratedStage` porta `kind: 'Fault'` ma e' il ramo
|
|
1479
|
+
* dello **step rifiutato** (§5.13), non un ramo di guasto, e la §7 non lo comprende.
|
|
1480
|
+
*/
|
|
1481
|
+
isFaultRecovery?: boolean;
|
|
1434
1482
|
read(node: FlowAnyNode): FlowConnector | undefined;
|
|
1435
1483
|
write(node: FlowAnyNode, connector: FlowConnector | undefined): void;
|
|
1436
1484
|
}
|
|
@@ -1836,6 +1884,7 @@ declare class FlowCatalogStore {
|
|
|
1836
1884
|
private readonly objectsCache;
|
|
1837
1885
|
private readonly fieldsCache;
|
|
1838
1886
|
private readonly fieldValuesCache;
|
|
1887
|
+
private readonly enumValuesCache;
|
|
1839
1888
|
private readonly entriesCache;
|
|
1840
1889
|
private readonly parametersCache;
|
|
1841
1890
|
private readonly membersCache;
|
|
@@ -1858,6 +1907,15 @@ declare class FlowCatalogStore {
|
|
|
1858
1907
|
listForms(): Promise<FlowCatalogEntry[]>;
|
|
1859
1908
|
listFormParameters(formName: string): Promise<FlowCatalogParameter[]>;
|
|
1860
1909
|
listEnumTypes(): Promise<FlowCatalogEntry[]>;
|
|
1910
|
+
/**
|
|
1911
|
+
* §4.6 — i valori di un tipo di enumerazione, cioe' i nomi scrivibili in `enumValue` (§4.2).
|
|
1912
|
+
*
|
|
1913
|
+
* La cache e' per **nome del tipo** e non per punto di uso: i valori sono del tipo, quindi la
|
|
1914
|
+
* stessa risposta serve una risorsa, un parametro di action e un membro di classe che dichiarano
|
|
1915
|
+
* lo stesso `objectType`. La primitiva e' opzionale: assente o in errore l'elenco resta vuoto,
|
|
1916
|
+
* che significa "non lo so" — valore digitabile a mano e nessuna segnalazione (§7).
|
|
1917
|
+
*/
|
|
1918
|
+
listEnumValues(enumType: string | undefined): Promise<FlowEnumValue[]>;
|
|
1861
1919
|
/**
|
|
1862
1920
|
* §4.7 — le classi utilizzabili come `objectType` di una `Structure`. La primitiva e'
|
|
1863
1921
|
* opzionale: se l'ambiente non la espone, l'errore non si memoizza e l'elenco resta vuoto —
|
|
@@ -2847,7 +2905,7 @@ declare class ReferencePickerComponent {
|
|
|
2847
2905
|
* percorso inesistente di uno scope che i percorsi li dichiara, perche' lì il backend
|
|
2848
2906
|
* risponderebbe `GLOBAL_UNKNOWN`.
|
|
2849
2907
|
*/
|
|
2850
|
-
readonly valueState: _angular_core.Signal<"empty" | "
|
|
2908
|
+
readonly valueState: _angular_core.Signal<"empty" | "member" | "unknown" | "known" | "navigated" | "host" | "containerRoot" | "memberUnknown" | "memberNotWritable" | "pathUnverified" | "globalPathUntyped" | "globalPathInvalid">;
|
|
2851
2909
|
/** Le parole cambiano con la tappa: un campo di un'entita' non e' un membro di una classe. */
|
|
2852
2910
|
private readonly tailIsObject;
|
|
2853
2911
|
private readonly tailContainer;
|
|
@@ -3124,6 +3182,31 @@ declare class StructureMemberPickerComponent {
|
|
|
3124
3182
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StructureMemberPickerComponent, "fb-structure-member-picker", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "usage": { "alias": "usage"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
3125
3183
|
}
|
|
3126
3184
|
|
|
3185
|
+
declare class EnumValuePickerComponent {
|
|
3186
|
+
private readonly catalog;
|
|
3187
|
+
readonly value: _angular_core.InputSignal<string | undefined>;
|
|
3188
|
+
/** Il tipo di enumerazione: e' esattamente l'`objectType` della destinazione (§4.6). */
|
|
3189
|
+
readonly enumType: _angular_core.InputSignal<string | undefined>;
|
|
3190
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
3191
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
3192
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
3193
|
+
readonly valueChange: _angular_core.OutputEmitterRef<string | undefined>;
|
|
3194
|
+
private readonly values;
|
|
3195
|
+
/** Cresce a ogni caricamento: scarta la risposta di un tipo che non e' piu' quello scelto. */
|
|
3196
|
+
private sequence;
|
|
3197
|
+
constructor();
|
|
3198
|
+
readonly options: _angular_core.Signal<NamePickerOption[]>;
|
|
3199
|
+
/**
|
|
3200
|
+
* Due "non lo so" diversi, e la differenza e' azionabile: senza `objectType` manca una scelta a
|
|
3201
|
+
* monte — ed e' `OBJECT_TYPE_MISSING` da qualche parte in questo form — mentre col tipo scelto e
|
|
3202
|
+
* l'elenco vuoto non c'e' niente da correggere.
|
|
3203
|
+
*/
|
|
3204
|
+
readonly emptyMessage: _angular_core.Signal<string>;
|
|
3205
|
+
readonly unknownMessage: _angular_core.Signal<string>;
|
|
3206
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EnumValuePickerComponent, never>;
|
|
3207
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EnumValuePickerComponent, "fb-enum-value-picker", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "enumType": { "alias": "enumType"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3127
3210
|
/** Le modalita' offerte: una per campo del modello. */
|
|
3128
3211
|
type ValueMode = 'reference' | 'literal' | 'formula' | 'globalConstant' | 'empty';
|
|
3129
3212
|
declare class ValueEditorComponent {
|
|
@@ -3173,6 +3256,11 @@ declare class ValueEditorComponent {
|
|
|
3173
3256
|
setMode(mode: ValueMode): void;
|
|
3174
3257
|
onReferenceChange(reference: string | undefined): void;
|
|
3175
3258
|
onLiteralChange(raw: string): void;
|
|
3259
|
+
/**
|
|
3260
|
+
* §4.2 — l'`enumValue` e' il **nome** del valore. Svuotare il picker toglie il valore invece di
|
|
3261
|
+
* scrivere una stringa vuota: un `enumValue: ''` sarebbe un campo valorizzato con niente.
|
|
3262
|
+
*/
|
|
3263
|
+
onEnumChange(name: string | undefined): void;
|
|
3176
3264
|
onBooleanChange(checked: boolean): void;
|
|
3177
3265
|
private withDateZone;
|
|
3178
3266
|
/**
|
|
@@ -3223,6 +3311,12 @@ declare class ConditionEditorComponent {
|
|
|
3223
3311
|
private typeOfReference;
|
|
3224
3312
|
/** Il tipo del lato sinistro: guida il secondo operando. */
|
|
3225
3313
|
leftDataType(condition: FlowCondition): FlowDataType | undefined;
|
|
3314
|
+
/**
|
|
3315
|
+
* Il tipo concreto del lato sinistro quando e' un `Enum`: senza di questo il valore di confronto
|
|
3316
|
+
* resterebbe una casella di testo su un insieme chiuso (§4.6). Su un percorso navigato
|
|
3317
|
+
* (`Cliente.Stato`) il riferimento non e' in elenco e resta `undefined`: si digita, come prima.
|
|
3318
|
+
*/
|
|
3319
|
+
leftObjectType(condition: FlowCondition): string | undefined;
|
|
3226
3320
|
/** Il tipo del lato destro, dedotto dal campo valorizzato o dal riferimento scelto. */
|
|
3227
3321
|
private rightDataType;
|
|
3228
3322
|
/**
|
|
@@ -3231,7 +3325,7 @@ declare class ConditionEditorComponent {
|
|
|
3231
3325
|
*/
|
|
3232
3326
|
hasTypeMismatch(condition: FlowCondition): boolean;
|
|
3233
3327
|
typeMismatchMessage(condition: FlowCondition): string;
|
|
3234
|
-
readonly logicMode: _angular_core.Signal<"
|
|
3328
|
+
readonly logicMode: _angular_core.Signal<"formula" | "and" | "or" | "custom">;
|
|
3235
3329
|
readonly customLogic: _angular_core.Signal<string>;
|
|
3236
3330
|
/** Feedback immediato sull'espressione: la verita' resta della validazione backend. */
|
|
3237
3331
|
readonly customLogicError: _angular_core.Signal<string | null>;
|
|
@@ -3313,7 +3407,7 @@ declare class RecordFilterEditorComponent {
|
|
|
3313
3407
|
* evita la ricerca di un campo che nell'elenco non c'e' e non ci sara'.
|
|
3314
3408
|
*/
|
|
3315
3409
|
readonly identifierNotFilterable: _angular_core.Signal<boolean>;
|
|
3316
|
-
readonly logicMode: _angular_core.Signal<"
|
|
3410
|
+
readonly logicMode: _angular_core.Signal<"formula" | "and" | "or" | "custom">;
|
|
3317
3411
|
readonly customLogic: _angular_core.Signal<string>;
|
|
3318
3412
|
readonly showEmptyWarning: _angular_core.Signal<boolean>;
|
|
3319
3413
|
addFilter(): void;
|
|
@@ -3332,6 +3426,12 @@ declare class RecordFilterEditorComponent {
|
|
|
3332
3426
|
* catalogo resta caricato qui, e non solo dentro il picker.
|
|
3333
3427
|
*/
|
|
3334
3428
|
fieldDataType(filter: FlowRecordFilter): string | undefined;
|
|
3429
|
+
/**
|
|
3430
|
+
* Il tipo concreto del campo: su un campo `Enum` e' cio' che permette di proporre i valori
|
|
3431
|
+
* ammessi invece di farli digitare (§4.6). Su un percorso di relazione il campo non e' in elenco
|
|
3432
|
+
* e resta `undefined`, come per il tipo.
|
|
3433
|
+
*/
|
|
3434
|
+
fieldObjectType(filter: FlowRecordFilter): string | undefined;
|
|
3335
3435
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RecordFilterEditorComponent, never>;
|
|
3336
3436
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RecordFilterEditorComponent, "fb-record-filter-editor", never, { "holder": { "alias": "holder"; "required": true; "isSignal": true; }; "object": { "alias": "object"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "usage": { "alias": "usage"; "required": false; "isSignal": true; }; "supportsLogic": { "alias": "supportsLogic"; "required": false; "isSignal": true; }; "supportsFormula": { "alias": "supportsFormula"; "required": false; "isSignal": true; }; "emptyWarning": { "alias": "emptyWarning"; "required": false; "isSignal": true; }; "emptyWarningSeverity": { "alias": "emptyWarningSeverity"; "required": false; "isSignal": true; }; }, { "changed": "changed"; }, never, never, true, never>;
|
|
3337
3437
|
}
|
|
@@ -3837,6 +3937,13 @@ declare class DebugPanelComponent {
|
|
|
3837
3937
|
private readonly membersByClass;
|
|
3838
3938
|
/** I membri **scrivibili** di una classe: gli altri li calcola il backend. */
|
|
3839
3939
|
membersOf(className: string | undefined): FlowStructureMember[];
|
|
3940
|
+
/**
|
|
3941
|
+
* §4.6 — i valori di un tipo di enumerazione, per nome del tipo. Elenco vuoto significa "non lo
|
|
3942
|
+
* so" — tipo non indicato, primitiva assente, tipo senza valori dichiarati — e allora il valore
|
|
3943
|
+
* si scrive a mano.
|
|
3944
|
+
*/
|
|
3945
|
+
private readonly valuesByEnumType;
|
|
3946
|
+
enumValuesOf(enumType: string | null | undefined): FlowEnumValue[];
|
|
3840
3947
|
isStructureVariable(variable: FlowVariable): boolean;
|
|
3841
3948
|
readonly canRun: _angular_core.Signal<boolean>;
|
|
3842
3949
|
readonly status: _angular_core.Signal<string | null>;
|
|
@@ -4067,5 +4174,5 @@ declare class SelectValueDirective implements AfterViewChecked {
|
|
|
4067
4174
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SelectValueDirective, "select[fbValue]", never, { "fbValue": { "alias": "fbValue"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4068
4175
|
}
|
|
4069
4176
|
|
|
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 };
|
|
4177
|
+
export { ConditionEditorComponent, ConnectorEditorComponent, DebugPanelComponent, ElementDialogComponent, ElementInspectorComponent, ElementPaletteComponent, EnumValuePickerComponent, 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 };
|
|
4178
|
+
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, FlowEnumValue, 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 };
|