@masterteam/flowplus-workflow 0.0.9 → 0.0.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/flowplus-workflow",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
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,8 +25,8 @@
|
|
|
25
25
|
"tailwindcss-primeui": "^0.6.1",
|
|
26
26
|
"dagre": "^0.8.5",
|
|
27
27
|
"@ngxs/store": "^20.1.0",
|
|
28
|
-
"@masterteam/components": "^0.0.
|
|
29
|
-
"@masterteam/forms": "^0.0.
|
|
28
|
+
"@masterteam/components": "^0.0.182",
|
|
29
|
+
"@masterteam/forms": "^0.0.83",
|
|
30
30
|
"@masterteam/icons": "^0.0.15"
|
|
31
31
|
},
|
|
32
32
|
"sideEffects": false,
|
|
@@ -51,4 +51,4 @@
|
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"tslib": "^2.8.1"
|
|
53
53
|
}
|
|
54
|
-
}
|
|
54
|
+
}
|
|
@@ -1773,6 +1773,256 @@ interface DataTransformActionCatalogItem {
|
|
|
1773
1773
|
helperMetadata?: Record<string, unknown> | null;
|
|
1774
1774
|
[key: string]: unknown;
|
|
1775
1775
|
}
|
|
1776
|
+
/**
|
|
1777
|
+
* Backend-authored UI hints that drive the generic node Configure renderer
|
|
1778
|
+
* (`fp-config-form`). Additive and optional: when absent, the renderer infers
|
|
1779
|
+
* fields from `configSchema`. The backend owns labels, help, ordering,
|
|
1780
|
+
* sectioning, conditional visibility, and which widget renders each field.
|
|
1781
|
+
*/
|
|
1782
|
+
type ConfigFieldWidget = 'text' | 'textarea' | 'number' | 'toggle' | 'date' | 'select' | 'multiselect' | 'radio-cards' | 'expression' | 'key-value-map' | 'code-json' | 'chips' | 'list' | 'group' | 'assignment-picker' | 'decision-list' | 'case-list' | 'branch-list' | 'response-options' | 'module-mapping' | 'business-action' | 'convert-to-file' | 'schedule' | 'array-source' | 'credential' | 'webhook-setup' | 'read-only-schema' | `capability:${string}` | (string & {});
|
|
1783
|
+
interface ConfigUiVisibilityRule {
|
|
1784
|
+
field: string;
|
|
1785
|
+
equals?: string | number | boolean | null;
|
|
1786
|
+
notEquals?: string | number | boolean | null;
|
|
1787
|
+
in?: Array<string | number | boolean>;
|
|
1788
|
+
truthy?: boolean;
|
|
1789
|
+
}
|
|
1790
|
+
/**
|
|
1791
|
+
* Declarative dynamic option source for a `select`/`multiselect`/`radio-cards`
|
|
1792
|
+
* field. The renderer issues a gateway request (the host interceptor prepends
|
|
1793
|
+
* the gateway base/auth/tenant) and maps the response items to `{ value, label }`.
|
|
1794
|
+
* Reloads automatically when any `dependsOn` field in the same scope changes.
|
|
1795
|
+
*/
|
|
1796
|
+
interface ConfigUiOptionsSource {
|
|
1797
|
+
/** Bare relative gateway path, e.g. `control-panel/automation-engine/builder/credentials`. */
|
|
1798
|
+
endpoint: string;
|
|
1799
|
+
method?: 'GET' | 'POST' | null;
|
|
1800
|
+
/** Sibling field keys whose change triggers an options reload. */
|
|
1801
|
+
dependsOn?: string[] | null;
|
|
1802
|
+
/**
|
|
1803
|
+
* Query params (GET) or request body (POST). String values may interpolate
|
|
1804
|
+
* `{fieldKey}` (sibling config value), `{automationId}` and `{nodeKey}`.
|
|
1805
|
+
*/
|
|
1806
|
+
params?: Record<string, string | number | boolean | null> | null;
|
|
1807
|
+
/** Dotted path to the items array in the response (e.g. `items`, `apps`). */
|
|
1808
|
+
itemsPath?: string | null;
|
|
1809
|
+
/** Item property used for the option value (default tries value/key/id). */
|
|
1810
|
+
valueKey?: string | null;
|
|
1811
|
+
/** Item property used for the option label (default tries label/displayName/name). */
|
|
1812
|
+
labelKey?: string | null;
|
|
1813
|
+
}
|
|
1814
|
+
/** Per-row schema for a repeatable `list` field. Each row renders recursively. */
|
|
1815
|
+
interface ConfigUiListItemSchema {
|
|
1816
|
+
/** Ordered child field keys rendered in each row. */
|
|
1817
|
+
order?: string[] | null;
|
|
1818
|
+
/** Child field hints (same shape as top-level fields). */
|
|
1819
|
+
fields: Record<string, ConfigUiFieldHint>;
|
|
1820
|
+
addLabel?: TranslatableText | string | null;
|
|
1821
|
+
removeLabel?: TranslatableText | string | null;
|
|
1822
|
+
itemNoun?: TranslatableText | string | null;
|
|
1823
|
+
/** Default object for a newly added row. */
|
|
1824
|
+
itemDefault?: Record<string, unknown> | null;
|
|
1825
|
+
/** Allow drag-to-reorder rows. */
|
|
1826
|
+
reorderable?: boolean | null;
|
|
1827
|
+
/** Minimum number of rows (remove is blocked below this). */
|
|
1828
|
+
minItems?: number | null;
|
|
1829
|
+
}
|
|
1830
|
+
/** Nested object schema for a `group` field. Writes to `config[groupKey]`. */
|
|
1831
|
+
interface ConfigUiGroupSchema {
|
|
1832
|
+
/** Config key the group object is written to (defaults to the field key). */
|
|
1833
|
+
groupKey?: string | null;
|
|
1834
|
+
/** Ordered child field keys. */
|
|
1835
|
+
order?: string[] | null;
|
|
1836
|
+
/** Child field hints. */
|
|
1837
|
+
fields: Record<string, ConfigUiFieldHint>;
|
|
1838
|
+
}
|
|
1839
|
+
/** Derive a field value from another field in the same scope. */
|
|
1840
|
+
interface ConfigUiComputedRule {
|
|
1841
|
+
/** Source sibling field key. */
|
|
1842
|
+
from: string;
|
|
1843
|
+
/** Optional value→value mapping; without it the source value is mirrored. */
|
|
1844
|
+
map?: Record<string, string> | null;
|
|
1845
|
+
}
|
|
1846
|
+
/**
|
|
1847
|
+
* When a select option is chosen, write a companion config key from the chosen
|
|
1848
|
+
* option's backing data (the raw `optionsSource` item). Models legacy widgets
|
|
1849
|
+
* that persist a derived key alongside the id — e.g. CallAutomation writes
|
|
1850
|
+
* `targetAutomationKey` next to `targetAutomationId`.
|
|
1851
|
+
*/
|
|
1852
|
+
interface ConfigUiCompanionWrite {
|
|
1853
|
+
/** Config key to write. */
|
|
1854
|
+
target: string;
|
|
1855
|
+
/** Option-data keys to read, first non-empty wins. */
|
|
1856
|
+
sources?: string[] | null;
|
|
1857
|
+
/** When no source resolves, fall back to the selected option value. */
|
|
1858
|
+
fallbackToValue?: boolean | null;
|
|
1859
|
+
}
|
|
1860
|
+
interface ConfigUiFieldHint {
|
|
1861
|
+
label?: TranslatableText | string | null;
|
|
1862
|
+
help?: TranslatableText | string | null;
|
|
1863
|
+
placeholder?: TranslatableText | string | null;
|
|
1864
|
+
widget?: ConfigFieldWidget | null;
|
|
1865
|
+
order?: number | null;
|
|
1866
|
+
required?: boolean | null;
|
|
1867
|
+
hidden?: boolean | null;
|
|
1868
|
+
/** Value shown when the config has no value yet (display-only; not persisted). */
|
|
1869
|
+
default?: unknown;
|
|
1870
|
+
options?: Array<{
|
|
1871
|
+
value: string;
|
|
1872
|
+
label: TranslatableText | string;
|
|
1873
|
+
/** Backing data for companion writes (e.g. a derived sibling value). */
|
|
1874
|
+
data?: Record<string, unknown>;
|
|
1875
|
+
}> | null;
|
|
1876
|
+
/** Static endpoint key (legacy) or a declarative dynamic option source. */
|
|
1877
|
+
optionsSource?: string | ConfigUiOptionsSource | null;
|
|
1878
|
+
enumLabels?: Record<string, TranslatableText | string> | null;
|
|
1879
|
+
visibleWhen?: ConfigUiVisibilityRule | ConfigUiVisibilityRule[] | null;
|
|
1880
|
+
/** Toggles `required` based on sibling values (same rule grammar as visibleWhen). */
|
|
1881
|
+
requiredWhen?: ConfigUiVisibilityRule | ConfigUiVisibilityRule[] | null;
|
|
1882
|
+
/** Toggles `disabled` based on sibling values. */
|
|
1883
|
+
disabledWhen?: ConfigUiVisibilityRule | ConfigUiVisibilityRule[] | null;
|
|
1884
|
+
/** When this field changes, reset/delete these sibling field keys. */
|
|
1885
|
+
clears?: string[] | null;
|
|
1886
|
+
/**
|
|
1887
|
+
* Gate for `clears`: only clear the listed siblings when this rule matches the
|
|
1888
|
+
* post-change values (e.g. HTTP clears the body only when `method` is `GET`).
|
|
1889
|
+
* When omitted, `clears` always fires.
|
|
1890
|
+
*/
|
|
1891
|
+
clearWhen?: ConfigUiVisibilityRule | ConfigUiVisibilityRule[] | null;
|
|
1892
|
+
/**
|
|
1893
|
+
* Multiple independent conditional clear sets — each fires when its own
|
|
1894
|
+
* `clearWhen` matches the post-change values. Models mode-exclusive nodes that
|
|
1895
|
+
* clear several different key groups depending on the chosen mode (e.g. Wait
|
|
1896
|
+
* clears duration / until / manual key groups based on `mode`).
|
|
1897
|
+
*/
|
|
1898
|
+
clearGroups?: Array<{
|
|
1899
|
+
clearWhen?: ConfigUiVisibilityRule | ConfigUiVisibilityRule[] | null;
|
|
1900
|
+
clears: string[];
|
|
1901
|
+
}> | null;
|
|
1902
|
+
/** Select-only: companion keys written from the chosen option's data. */
|
|
1903
|
+
companions?: ConfigUiCompanionWrite[] | null;
|
|
1904
|
+
/** Derive this field's value from a sibling field. */
|
|
1905
|
+
computed?: ConfigUiComputedRule | null;
|
|
1906
|
+
/**
|
|
1907
|
+
* When inside a `group`, persist this field's `default` automatically once any
|
|
1908
|
+
* other (non-seed) field in the same group has a value — and re-seed it if it
|
|
1909
|
+
* is cleared while siblings remain. Models the legacy "operator defaults to
|
|
1910
|
+
* equals when a side is filled" behavior so the persisted object is identical.
|
|
1911
|
+
*/
|
|
1912
|
+
seedDefault?: boolean | null;
|
|
1913
|
+
/**
|
|
1914
|
+
* Apply value coercion on write (numeric→number, "true"/"false"→boolean,
|
|
1915
|
+
* JSON-looking→parsed) to match the legacy composite widgets byte-for-byte.
|
|
1916
|
+
*/
|
|
1917
|
+
coerce?: boolean | null;
|
|
1918
|
+
/** Wrap the input with the data-pill expression affordance. */
|
|
1919
|
+
expression?: boolean | null;
|
|
1920
|
+
/** Repeatable-row schema when `widget` is `list`. */
|
|
1921
|
+
itemSchema?: ConfigUiListItemSchema | null;
|
|
1922
|
+
/** Nested-object schema when `widget` is `group`. */
|
|
1923
|
+
group?: ConfigUiGroupSchema | null;
|
|
1924
|
+
widgetOptions?: Record<string, unknown> | null;
|
|
1925
|
+
validation?: {
|
|
1926
|
+
min?: number | null;
|
|
1927
|
+
max?: number | null;
|
|
1928
|
+
minLength?: number | null;
|
|
1929
|
+
maxLength?: number | null;
|
|
1930
|
+
pattern?: string | null;
|
|
1931
|
+
messages?: Record<string, string> | null;
|
|
1932
|
+
} | null;
|
|
1933
|
+
}
|
|
1934
|
+
interface ConfigUiSection {
|
|
1935
|
+
key: string;
|
|
1936
|
+
title?: TranslatableText | string | null;
|
|
1937
|
+
description?: TranslatableText | string | null;
|
|
1938
|
+
order?: number | null;
|
|
1939
|
+
collapsible?: boolean | null;
|
|
1940
|
+
collapsed?: boolean | null;
|
|
1941
|
+
visibleWhen?: ConfigUiVisibilityRule | ConfigUiVisibilityRule[] | null;
|
|
1942
|
+
fields: string[];
|
|
1943
|
+
}
|
|
1944
|
+
interface ConfigUiAction {
|
|
1945
|
+
key: string;
|
|
1946
|
+
label: TranslatableText | string;
|
|
1947
|
+
help?: TranslatableText | string | null;
|
|
1948
|
+
/** FE capability handler key (e.g. `capability:test-run`); rare escape hatch. */
|
|
1949
|
+
capability?: string | null;
|
|
1950
|
+
style?: 'primary' | 'secondary' | 'outlined' | null;
|
|
1951
|
+
/** Declarative form — call a gateway endpoint and render the result. */
|
|
1952
|
+
endpoint?: string | null;
|
|
1953
|
+
method?: 'GET' | 'POST' | null;
|
|
1954
|
+
/** Config field keys whose values are sent in the request body. */
|
|
1955
|
+
sends?: string[] | null;
|
|
1956
|
+
/** Static params/body merged into the request. */
|
|
1957
|
+
params?: Record<string, unknown> | null;
|
|
1958
|
+
/** How the action result is surfaced. */
|
|
1959
|
+
rendersResult?: 'issues' | 'json' | 'preview' | 'toast' | null;
|
|
1960
|
+
/** Optional section key to anchor the action under a specific section. */
|
|
1961
|
+
section?: string | null;
|
|
1962
|
+
}
|
|
1963
|
+
interface NodeConfigUiSchema {
|
|
1964
|
+
version?: number;
|
|
1965
|
+
sections?: ConfigUiSection[];
|
|
1966
|
+
fields?: Record<string, ConfigUiFieldHint>;
|
|
1967
|
+
actions?: ConfigUiAction[];
|
|
1968
|
+
}
|
|
1969
|
+
/** A single editable field in the inline form designer. */
|
|
1970
|
+
interface InlineFormFieldDraft {
|
|
1971
|
+
key: string;
|
|
1972
|
+
label: string;
|
|
1973
|
+
/** Form control component (text/number/select/date/textarea/toggle/…). */
|
|
1974
|
+
component: string;
|
|
1975
|
+
required?: boolean;
|
|
1976
|
+
options?: Array<{
|
|
1977
|
+
value: string;
|
|
1978
|
+
label: string;
|
|
1979
|
+
}>;
|
|
1980
|
+
}
|
|
1981
|
+
interface InlineFormCreateRequest {
|
|
1982
|
+
triggerKey?: string | null;
|
|
1983
|
+
nodeKey?: string | null;
|
|
1984
|
+
key: string;
|
|
1985
|
+
displayName: string;
|
|
1986
|
+
moduleDefinitionId?: number | null;
|
|
1987
|
+
purpose?: string | null;
|
|
1988
|
+
schemaSnapshotJson: string;
|
|
1989
|
+
layoutSnapshotJson: string;
|
|
1990
|
+
fieldBindingSnapshotJson: string;
|
|
1991
|
+
validationRulesSnapshotJson?: string;
|
|
1992
|
+
visibilityRulesSnapshotJson?: string;
|
|
1993
|
+
}
|
|
1994
|
+
interface InlineFormDraftUpdateRequest {
|
|
1995
|
+
/** Optimistic-concurrency guard — the hash last returned for this draft. */
|
|
1996
|
+
expectedRevisionHash: string;
|
|
1997
|
+
schemaSnapshotJson: string;
|
|
1998
|
+
layoutSnapshotJson: string;
|
|
1999
|
+
fieldBindingSnapshotJson: string;
|
|
2000
|
+
validationRulesSnapshotJson?: string;
|
|
2001
|
+
visibilityRulesSnapshotJson?: string;
|
|
2002
|
+
}
|
|
2003
|
+
interface InlineFormDraftResult {
|
|
2004
|
+
formDefinitionId: number | string;
|
|
2005
|
+
draftRevisionId: number | string;
|
|
2006
|
+
revisionHash?: string | null;
|
|
2007
|
+
formSource?: string | null;
|
|
2008
|
+
moduleDefinitionId?: number | null;
|
|
2009
|
+
createdFromTriggerKey?: string | null;
|
|
2010
|
+
[key: string]: unknown;
|
|
2011
|
+
}
|
|
2012
|
+
interface InlineFormDraftValidationIssue {
|
|
2013
|
+
code?: string | null;
|
|
2014
|
+
severity?: string | null;
|
|
2015
|
+
message?: string | null;
|
|
2016
|
+
targetKind?: string | null;
|
|
2017
|
+
formDefinitionId?: number | null;
|
|
2018
|
+
formRevisionId?: number | null;
|
|
2019
|
+
formFieldPath?: string | null;
|
|
2020
|
+
}
|
|
2021
|
+
interface InlineFormDraftValidationResult {
|
|
2022
|
+
isValid?: boolean;
|
|
2023
|
+
revisionHash?: string | null;
|
|
2024
|
+
issues?: InlineFormDraftValidationIssue[];
|
|
2025
|
+
}
|
|
1776
2026
|
interface NodeTypeCatalogItem {
|
|
1777
2027
|
type?: AutomationNodeType;
|
|
1778
2028
|
nodeType?: AutomationNodeType;
|
|
@@ -1785,6 +2035,7 @@ interface NodeTypeCatalogItem {
|
|
|
1785
2035
|
colorToken?: string | null;
|
|
1786
2036
|
routeOutputKeys?: string[];
|
|
1787
2037
|
configSchema?: unknown;
|
|
2038
|
+
configUiSchema?: NodeConfigUiSchema | null;
|
|
1788
2039
|
inputSchema?: unknown;
|
|
1789
2040
|
outputSchema?: unknown;
|
|
1790
2041
|
credentialRequirements?: unknown[];
|
|
@@ -1838,6 +2089,7 @@ interface TriggerTypeCatalogItem {
|
|
|
1838
2089
|
icon?: string | null;
|
|
1839
2090
|
iconKey?: string | null;
|
|
1840
2091
|
configSchema?: unknown;
|
|
2092
|
+
configUiSchema?: NodeConfigUiSchema | null;
|
|
1841
2093
|
authPolicySchema?: unknown;
|
|
1842
2094
|
payloadSchema?: unknown;
|
|
1843
2095
|
supportsTest?: boolean;
|
|
@@ -2040,6 +2292,12 @@ interface CanonicalModuleDefinitionDetail extends CanonicalModuleDefinitionSumma
|
|
|
2040
2292
|
concurrencyPolicyJson?: string | null;
|
|
2041
2293
|
fields?: CanonicalModuleField[];
|
|
2042
2294
|
}
|
|
2295
|
+
interface CreateCanonicalModuleDefinitionRequest {
|
|
2296
|
+
key: string;
|
|
2297
|
+
displayName: string;
|
|
2298
|
+
description?: string | null;
|
|
2299
|
+
status?: ModuleDefinitionStatus | null;
|
|
2300
|
+
}
|
|
2043
2301
|
interface CanonicalModuleSchema {
|
|
2044
2302
|
moduleDefinitionId: number;
|
|
2045
2303
|
tenantId?: string | null;
|
|
@@ -3294,6 +3552,10 @@ declare class EndpointBuilder {
|
|
|
3294
3552
|
automationRoute(automationId: number | string, routeId?: number | string | null): string;
|
|
3295
3553
|
automationFormBinding(automationId: number | string, formBindingId?: number | string | null): string;
|
|
3296
3554
|
automationBuilderCatalog(): string;
|
|
3555
|
+
automationInlineForms(automationId: number | string): string;
|
|
3556
|
+
automationInlineFormDraft(automationId: number | string, formDefinitionId: number | string, revisionId: number | string): string;
|
|
3557
|
+
automationInlineFormDraftValidate(automationId: number | string, formDefinitionId: number | string, revisionId: number | string): string;
|
|
3558
|
+
automationContextSchema(automationId: number | string): string;
|
|
3297
3559
|
automationNodeTypes(): string;
|
|
3298
3560
|
automationBuilderConnectors(): string;
|
|
3299
3561
|
automationBusinessActionsRoot(): string;
|
|
@@ -3635,6 +3897,14 @@ declare class AutomationDesignApiService {
|
|
|
3635
3897
|
deleteRoute(automationId: number | string, routeId: number | string): Observable<unknown>;
|
|
3636
3898
|
upsertFormBinding(automationId: number | string, request: FormBindingDefinitionRequest, formBindingId?: number | string | null): Observable<unknown>;
|
|
3637
3899
|
deleteFormBinding(automationId: number | string, formBindingId: number | string): Observable<unknown>;
|
|
3900
|
+
/** Creates a design-time inline draft form bound to a node/trigger. */
|
|
3901
|
+
createInlineForm(automationId: number | string, request: InlineFormCreateRequest): Observable<InlineFormDraftResult>;
|
|
3902
|
+
/** Updates an inline draft (optimistic concurrency via `expectedRevisionHash`). */
|
|
3903
|
+
updateInlineFormDraft(automationId: number | string, formDefinitionId: number | string, revisionId: number | string, request: InlineFormDraftUpdateRequest): Observable<InlineFormDraftResult>;
|
|
3904
|
+
/** Validates an inline draft; issues carry `formFieldPath` for inline highlighting. */
|
|
3905
|
+
validateInlineFormDraft(automationId: number | string, formDefinitionId: number | string, revisionId: number | string): Observable<InlineFormDraftValidationResult>;
|
|
3906
|
+
/** Refreshes the automation context schema (data-picker source) after form edits. */
|
|
3907
|
+
refreshContextSchema(automationId: number | string): Observable<unknown>;
|
|
3638
3908
|
validate(automationId: number | string): Observable<AutomationValidationReport>;
|
|
3639
3909
|
publish(automationId: number | string, request?: PublishAutomationRequest): Observable<PublishAutomationResult>;
|
|
3640
3910
|
activate(automationId: number | string, request: ActivateAutomationRequest): Observable<ActivationResult>;
|
|
@@ -3681,6 +3951,7 @@ declare class AutomationBuilderCatalogApiService {
|
|
|
3681
3951
|
flowplusOperations(): Observable<string[]>;
|
|
3682
3952
|
validateFlowplusCommitMapping(request: FlowPlusCommitMappingValidationRequest): Observable<ExpressionValidationResult>;
|
|
3683
3953
|
canonicalModuleDefinitions(params?: CanonicalModuleDefinitionListParams): Observable<CanonicalModuleDefinitionSummary[]>;
|
|
3954
|
+
createCanonicalModuleDefinition(request: CreateCanonicalModuleDefinitionRequest): Observable<CanonicalModuleDefinitionDetail>;
|
|
3684
3955
|
canonicalModuleDefinition(moduleDefinitionId: number | string): Observable<CanonicalModuleDefinitionDetail>;
|
|
3685
3956
|
canonicalModuleSchema(moduleDefinitionId: number | string): Observable<CanonicalModuleSchema>;
|
|
3686
3957
|
canonicalModuleFields(moduleDefinitionId: number | string): Observable<CanonicalModuleField[]>;
|
|
@@ -4789,7 +5060,7 @@ declare class FlowplusWorkflowFacade {
|
|
|
4789
5060
|
readonly studio: _angular_core.Signal<_masterteam_flowplus_workflow.FlowplusStudioSlice>;
|
|
4790
5061
|
readonly studioWorkflows: _angular_core.Signal<_masterteam_flowplus_workflow.WorkflowDefinitionSummaryDto[]>;
|
|
4791
5062
|
readonly studioSearch: _angular_core.Signal<string>;
|
|
4792
|
-
readonly studioStatusFilter: _angular_core.Signal<"
|
|
5063
|
+
readonly studioStatusFilter: _angular_core.Signal<"published" | "all" | "draft" | "invalid" | "archived">;
|
|
4793
5064
|
readonly builder: _angular_core.Signal<FlowplusBuilderSlice>;
|
|
4794
5065
|
readonly workflow: _angular_core.Signal<_masterteam_flowplus_workflow.WorkflowDefinitionDto | null>;
|
|
4795
5066
|
readonly steps: _angular_core.Signal<WorkflowStepDto[]>;
|
|
@@ -6600,6 +6871,7 @@ declare class WorkflowBuilderPageComponent implements OnDestroy {
|
|
|
6600
6871
|
private readonly layoutEngine;
|
|
6601
6872
|
private readonly shortcuts;
|
|
6602
6873
|
private readonly confirmation;
|
|
6874
|
+
private readonly toast;
|
|
6603
6875
|
private readonly transloco;
|
|
6604
6876
|
private readonly route;
|
|
6605
6877
|
private readonly destroyRef;
|
|
@@ -6787,6 +7059,8 @@ declare class WorkflowBuilderPageComponent implements OnDestroy {
|
|
|
6787
7059
|
}): void;
|
|
6788
7060
|
private setTriggerStart;
|
|
6789
7061
|
onValidate(): void;
|
|
7062
|
+
/** Surfaces the validation outcome as a PrimeNG toast (issues tab is removed). */
|
|
7063
|
+
private notifyValidation;
|
|
6790
7064
|
onOpenTestRun(): void;
|
|
6791
7065
|
onOpenSettings(): void;
|
|
6792
7066
|
onTogglePalette(): void;
|
|
@@ -6822,6 +7096,7 @@ declare class WorkflowBuilderPageComponent implements OnDestroy {
|
|
|
6822
7096
|
onPublish(): void;
|
|
6823
7097
|
onUnpublish(): void;
|
|
6824
7098
|
private confirmPublish;
|
|
7099
|
+
private notifyPublish;
|
|
6825
7100
|
autoLayout(): void;
|
|
6826
7101
|
private canvasNoteAutoLayoutMembers;
|
|
6827
7102
|
private canvasNoteAutoLayoutPositions;
|
|
@@ -7400,7 +7675,7 @@ interface InspectorTab {
|
|
|
7400
7675
|
declare class InspectorShellComponent {
|
|
7401
7676
|
readonly store: FlowplusWorkflowFacade;
|
|
7402
7677
|
private readonly transloco;
|
|
7403
|
-
readonly mode: _angular_core.InputSignal<"
|
|
7678
|
+
readonly mode: _angular_core.InputSignal<"drawer" | "modal">;
|
|
7404
7679
|
stepChange: EventEmitter<{
|
|
7405
7680
|
step: WorkflowStepDto;
|
|
7406
7681
|
patch: Partial<WorkflowStepDto>;
|
|
@@ -7418,7 +7693,8 @@ declare class InspectorShellComponent {
|
|
|
7418
7693
|
readonly selectedConnection: _angular_core.Signal<WorkflowConnectionDto | null>;
|
|
7419
7694
|
readonly selectedStepIssues: _angular_core.Signal<WorkflowValidationIssueDto[]>;
|
|
7420
7695
|
readonly selectedStepIssueTone: _angular_core.Signal<"error" | "warning" | "info">;
|
|
7421
|
-
|
|
7696
|
+
/** True when the selected step's Configure tab is rendered by `fp-config-form`. */
|
|
7697
|
+
readonly selectedStepUsesConfigEngine: _angular_core.Signal<boolean>;
|
|
7422
7698
|
readonly activeTab: _angular_core.Signal<string>;
|
|
7423
7699
|
readonly containerClass: _angular_core.Signal<"flex flex-1 flex-col min-h-0 overflow-hidden border-s border-(--p-content-border-color) bg-(--p-content-background)" | "flex flex-1 flex-col min-h-0 overflow-hidden bg-transparent">;
|
|
7424
7700
|
readonly contentClass: _angular_core.Signal<"flex-1 overflow-y-auto px-5 pt-4 pb-8" | "flex-1 overflow-y-auto px-6 py-5">;
|
|
@@ -8519,4 +8795,4 @@ declare class DagreFlowLayoutEngine implements FlowLayoutEngine {
|
|
|
8519
8795
|
}
|
|
8520
8796
|
|
|
8521
8797
|
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, LoadContextCatalog, LoadContextCatalogForStep, LoadCurrentInteractions, LoadIntegrationsCatalog, LoadIntegrationsConnections, LoadIntegrationsOverview, LoadInteractionDetail, LoadInteractionHistory, LoadLatestAutomationExecution, LoadLayout, 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 };
|
|
8522
|
-
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, ClientAutomationQuery, ClientAutomationStateModel, ClientInteraction, ClientInteractionDetail, ClientManualTrigger, ClientRequestLifecycle, ClientRequestLifecycleEvent, ClientRequestLifecycleStep, ClientRequestSummary, ClientStartCatalog, ClientStartForm, ConnectionTestRequest, ConnectionTestResult, ConnectorActionCatalogItem, ConnectorCatalog, ConnectorProviderCatalogItem, ConvertToFileActionCatalogItem, ConvertToFileCatalog, CreateCanonicalFormDefinitionRequest, CreateCanonicalFormRevisionRequest, 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, IntegrationAuthType, IntegrationConnectionSummary, IntegrationConnectionsResponse, IntegrationProviderCatalogItem, IntegrationProviderCategory, IntegrationSection, IntegrationSectionKey, IntegrationsOverview, IntegrationsStateModel, InteractionAction, InteractionActionRequest, InteractionAllowedAction, JsonSchemaLite, LocalOpenAiCompatibleConnectionRequest, LocalProviderRequestMode, ManualConnectionRequest, ManualCredentialCreateRequest, ModuleDefinitionStatus, ModuleFieldDataType, ModuleFieldStorageType, NavigationTarget, 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 };
|
|
8798
|
+
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, ClientAutomationQuery, ClientAutomationStateModel, ClientInteraction, ClientInteractionDetail, 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 };
|