@masterteam/workflow 0.0.35 → 0.0.36
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/assets/i18n/ar.json +12 -1
- package/assets/i18n/en.json +12 -1
- package/assets/workflow.css +1 -1
- package/fesm2022/masterteam-workflow.mjs +511 -24
- package/fesm2022/masterteam-workflow.mjs.map +1 -1
- package/package.json +5 -5
- package/types/masterteam-workflow.d.ts +149 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/workflow",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.36",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/workflow",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"tailwindcss": "^4.2.2",
|
|
20
20
|
"tailwindcss-primeui": "^0.6.1",
|
|
21
21
|
"@ngxs/store": "^20.1.0",
|
|
22
|
+
"@masterteam/structure-builder": "^0.0.51",
|
|
23
|
+
"@masterteam/components": "^0.0.162",
|
|
24
|
+
"@masterteam/notification": "^0.0.20",
|
|
22
25
|
"@masterteam/icons": "^0.0.14",
|
|
23
26
|
"@masterteam/forms": "^0.0.72",
|
|
24
|
-
"@masterteam/form-builder": "^0.0.25"
|
|
25
|
-
"@masterteam/structure-builder": "^0.0.50",
|
|
26
|
-
"@masterteam/components": "^0.0.158",
|
|
27
|
-
"@masterteam/notification": "^0.0.20"
|
|
27
|
+
"@masterteam/form-builder": "^0.0.25"
|
|
28
28
|
},
|
|
29
29
|
"sideEffects": false,
|
|
30
30
|
"exports": {
|
|
@@ -16,8 +16,12 @@ interface LoadingStateShape<L extends string = string> {
|
|
|
16
16
|
errors: Partial<Record<L, string>>;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
type WorkflowStepType = 'UserInput' | 'AppAction';
|
|
19
|
+
type WorkflowStepType = 'UserInput' | 'AppAction' | 'ApprovalCommit';
|
|
20
20
|
type WorkflowAppActionFailureBehavior = 'Stop' | 'Continue' | string;
|
|
21
|
+
type WorkflowAppActionPhase = 'BeforeCommit' | 'Commit' | 'AfterCommit' | string;
|
|
22
|
+
type WorkflowAppActionRuntimeInputSource = 'Context' | 'InternalResolver' | string;
|
|
23
|
+
type WorkflowAppActionFieldUIControl = 'select' | 'text' | 'number' | 'toggle' | 'json' | string;
|
|
24
|
+
type WorkflowAppActionSystemKind = 'ApprovalCommit' | string;
|
|
21
25
|
type WorkflowAppActionConfigPropertyType = 'string' | 'number' | 'boolean' | 'array' | 'object';
|
|
22
26
|
interface WorkflowAppAction {
|
|
23
27
|
appCode: string;
|
|
@@ -30,6 +34,42 @@ interface WorkflowAppAction {
|
|
|
30
34
|
configSchemaJson?: string | null;
|
|
31
35
|
requiredContextKeys?: string[];
|
|
32
36
|
supportedScopes?: string[];
|
|
37
|
+
configFields?: WorkflowAppActionConfigField[];
|
|
38
|
+
runtimeInputs?: WorkflowAppActionRuntimeInput[];
|
|
39
|
+
outputs?: WorkflowAppActionOutput[];
|
|
40
|
+
supportedPhases?: WorkflowAppActionPhase[];
|
|
41
|
+
}
|
|
42
|
+
interface WorkflowAppActionConfigField {
|
|
43
|
+
key: string;
|
|
44
|
+
displayName: string;
|
|
45
|
+
description?: string | null;
|
|
46
|
+
type: WorkflowAppActionConfigPropertyType;
|
|
47
|
+
required: boolean;
|
|
48
|
+
uiControl?: WorkflowAppActionFieldUIControl | null;
|
|
49
|
+
optionsProviderKey?: string | null;
|
|
50
|
+
designerVisible: boolean;
|
|
51
|
+
enumValues?: Array<string | number | boolean>;
|
|
52
|
+
defaultValue?: unknown;
|
|
53
|
+
}
|
|
54
|
+
interface WorkflowAppActionRuntimeInput {
|
|
55
|
+
key: string;
|
|
56
|
+
source: WorkflowAppActionRuntimeInputSource;
|
|
57
|
+
contextKey?: string | null;
|
|
58
|
+
resolverKey?: string | null;
|
|
59
|
+
required: boolean;
|
|
60
|
+
designerVisible: boolean;
|
|
61
|
+
}
|
|
62
|
+
interface WorkflowAppActionOutput {
|
|
63
|
+
key: string;
|
|
64
|
+
type: string;
|
|
65
|
+
persistToWorkflowContext: boolean;
|
|
66
|
+
description?: string | null;
|
|
67
|
+
}
|
|
68
|
+
interface WorkflowAppActionOption {
|
|
69
|
+
value: string | number | boolean;
|
|
70
|
+
label: string | Record<string, string>;
|
|
71
|
+
disabled?: boolean;
|
|
72
|
+
metadata?: Record<string, string | number | boolean | null>;
|
|
33
73
|
}
|
|
34
74
|
interface WorkflowAppActionDescriptor {
|
|
35
75
|
appCode: string;
|
|
@@ -39,6 +79,10 @@ interface WorkflowAppActionDescriptor {
|
|
|
39
79
|
configSchemaJson?: string | null;
|
|
40
80
|
requiredContextKeys?: string[];
|
|
41
81
|
supportedScopes?: string[];
|
|
82
|
+
configFields?: WorkflowAppActionConfigField[];
|
|
83
|
+
runtimeInputs?: WorkflowAppActionRuntimeInput[];
|
|
84
|
+
outputs?: WorkflowAppActionOutput[];
|
|
85
|
+
supportedPhases?: WorkflowAppActionPhase[];
|
|
42
86
|
}
|
|
43
87
|
interface WorkflowAppActionConfigPropertySchema {
|
|
44
88
|
key: string;
|
|
@@ -64,6 +108,9 @@ interface WorkflowStepSchema {
|
|
|
64
108
|
targetValue?: string;
|
|
65
109
|
appAction?: WorkflowAppAction | null;
|
|
66
110
|
loading?: boolean;
|
|
111
|
+
systemKind?: WorkflowAppActionSystemKind | null;
|
|
112
|
+
isSystem?: boolean;
|
|
113
|
+
isLocked?: boolean;
|
|
67
114
|
}
|
|
68
115
|
interface WorkflowConnection {
|
|
69
116
|
id: number;
|
|
@@ -165,6 +212,9 @@ interface StepSchema {
|
|
|
165
212
|
hasNotification: boolean;
|
|
166
213
|
hasForm?: boolean;
|
|
167
214
|
appAction?: WorkflowAppAction | null;
|
|
215
|
+
systemKind?: WorkflowAppActionSystemKind | null;
|
|
216
|
+
isSystem?: boolean;
|
|
217
|
+
isLocked?: boolean;
|
|
168
218
|
}
|
|
169
219
|
interface StepPropertyPayload {
|
|
170
220
|
PropertyId: number;
|
|
@@ -196,6 +246,9 @@ interface StepResponse {
|
|
|
196
246
|
targetValue?: string;
|
|
197
247
|
properties: any[];
|
|
198
248
|
appAction?: WorkflowAppAction | null;
|
|
249
|
+
systemKind?: WorkflowAppActionSystemKind | null;
|
|
250
|
+
isSystem?: boolean;
|
|
251
|
+
isLocked?: boolean;
|
|
199
252
|
}
|
|
200
253
|
interface ConnectionPayload {
|
|
201
254
|
sourceStepId: number | string;
|
|
@@ -221,7 +274,19 @@ interface PublishResponse {
|
|
|
221
274
|
isValid: boolean;
|
|
222
275
|
isPublished: boolean;
|
|
223
276
|
}
|
|
224
|
-
type WorkflowLoadingName = 'getWorkflows' | 'getWorkflow' | 'getFormulaProperties' | 'getGroups' | 'getRolesForModule' | 'getAppActions' | 'getAppActionDetail' | 'getStep' | 'validateFlow' | 'createStep' | 'updateStep' | 'createConnection' | 'updateConnection' | 'publishWorkflow' | 'deleteStep' | 'deleteConnection';
|
|
277
|
+
type WorkflowLoadingName = 'getWorkflows' | 'getWorkflow' | 'getFormulaProperties' | 'getGroups' | 'getRolesForModule' | 'getAppActions' | 'getAppActionDetail' | 'getAppActionOptions' | 'getStep' | 'validateFlow' | 'createStep' | 'updateStep' | 'createConnection' | 'updateConnection' | 'publishWorkflow' | 'deleteStep' | 'deleteConnection';
|
|
278
|
+
/**
|
|
279
|
+
* Cached option list keyed by `${actionKey}::${fieldKey}::${paramHash}`.
|
|
280
|
+
* `paramHash` is a deterministic stringification of the query params used
|
|
281
|
+
* (requestSchemaId, levelId, moduleId, ...). Empty params hash is "_".
|
|
282
|
+
*/
|
|
283
|
+
type WorkflowAppActionOptionsCacheKey = string;
|
|
284
|
+
interface WorkflowAppActionOptionsCacheEntry {
|
|
285
|
+
options: WorkflowAppActionOption[];
|
|
286
|
+
errorCode?: string | null;
|
|
287
|
+
errorMessage?: string | null;
|
|
288
|
+
loadedAt: number;
|
|
289
|
+
}
|
|
225
290
|
interface WorkflowStateModel extends LoadingStateShape<WorkflowLoadingName> {
|
|
226
291
|
workflowId: string | number | null;
|
|
227
292
|
parentModuleType?: string | null;
|
|
@@ -236,6 +301,7 @@ interface WorkflowStateModel extends LoadingStateShape<WorkflowLoadingName> {
|
|
|
236
301
|
roles: Array<RoleDefinition | RoleGroupDefinition>;
|
|
237
302
|
appActionDescriptors: WorkflowAppActionDescriptor[];
|
|
238
303
|
selectedAppActionDescriptor: WorkflowAppActionDescriptor | null;
|
|
304
|
+
appActionOptionsCache: Record<WorkflowAppActionOptionsCacheKey, WorkflowAppActionOptionsCacheEntry>;
|
|
239
305
|
selectedStep: StepSchema | null;
|
|
240
306
|
isFlowValid: boolean | null;
|
|
241
307
|
}
|
|
@@ -274,6 +340,13 @@ declare class GetAppActionDetail {
|
|
|
274
340
|
static readonly type = "[Workflow] Get App Action Detail";
|
|
275
341
|
constructor(actionKey: string);
|
|
276
342
|
}
|
|
343
|
+
declare class GetAppActionOptions {
|
|
344
|
+
readonly actionKey: string;
|
|
345
|
+
readonly fieldKey: string;
|
|
346
|
+
readonly params?: Record<string, string | number | boolean | null | undefined> | undefined;
|
|
347
|
+
static readonly type = "[Workflow] Get App Action Options";
|
|
348
|
+
constructor(actionKey: string, fieldKey: string, params?: Record<string, string | number | boolean | null | undefined> | undefined);
|
|
349
|
+
}
|
|
277
350
|
declare class GetStep {
|
|
278
351
|
readonly stepId: string | number;
|
|
279
352
|
static readonly type = "[Workflow] Get Step";
|
|
@@ -333,6 +406,7 @@ declare class WorkflowFacade {
|
|
|
333
406
|
readonly roles: _angular_core.Signal<(RoleDefinition | RoleGroupDefinition)[]>;
|
|
334
407
|
readonly appActionDescriptors: _angular_core.Signal<WorkflowAppActionDescriptor[]>;
|
|
335
408
|
readonly selectedAppActionDescriptor: _angular_core.Signal<WorkflowAppActionDescriptor | null>;
|
|
409
|
+
readonly appActionOptionsCache: _angular_core.Signal<Record<string, WorkflowAppActionOptionsCacheEntry>>;
|
|
336
410
|
readonly selectedStep: _angular_core.Signal<StepSchema | null>;
|
|
337
411
|
readonly isFlowValid: _angular_core.Signal<boolean | null>;
|
|
338
412
|
readonly steps: _angular_core.Signal<WorkflowStepSchema[]>;
|
|
@@ -348,6 +422,13 @@ declare class WorkflowFacade {
|
|
|
348
422
|
loadRolesForModule(): Observable<unknown>;
|
|
349
423
|
loadAppActions(): Observable<unknown>;
|
|
350
424
|
loadAppActionDetail(actionKey: string): Observable<unknown>;
|
|
425
|
+
loadAppActionOptions(actionKey: string, fieldKey: string, params?: Record<string, string | number | boolean | null | undefined>): Observable<unknown>;
|
|
426
|
+
/**
|
|
427
|
+
* Synchronous lookup helper: returns the cached options entry for a given
|
|
428
|
+
* (actionKey, fieldKey, params) combination, or `undefined` if the request
|
|
429
|
+
* has not been issued yet. Pair with `loadAppActionOptions` to fetch.
|
|
430
|
+
*/
|
|
431
|
+
getCachedAppActionOptions(actionKey: string, fieldKey: string, params?: Record<string, string | number | boolean | null | undefined>): WorkflowAppActionOptionsCacheEntry | undefined;
|
|
351
432
|
loadStep(stepId: string | number): Observable<unknown>;
|
|
352
433
|
validateFlow(): Observable<unknown>;
|
|
353
434
|
createStep(payload: StepPayload): Observable<unknown>;
|
|
@@ -388,6 +469,7 @@ declare class WorkflowState {
|
|
|
388
469
|
static roles(state: WorkflowStateModel): Array<RoleDefinition | RoleGroupDefinition>;
|
|
389
470
|
static appActionDescriptors(state: WorkflowStateModel): WorkflowAppActionDescriptor[];
|
|
390
471
|
static selectedAppActionDescriptor(state: WorkflowStateModel): WorkflowAppActionDescriptor | null;
|
|
472
|
+
static appActionOptionsCache(state: WorkflowStateModel): Record<string, WorkflowAppActionOptionsCacheEntry>;
|
|
391
473
|
static selectedStep(state: WorkflowStateModel): StepSchema | null;
|
|
392
474
|
static isFlowValid(state: WorkflowStateModel): boolean | null;
|
|
393
475
|
static stepsSchema(state: WorkflowStateModel): WorkflowStepSchema[];
|
|
@@ -402,6 +484,7 @@ declare class WorkflowState {
|
|
|
402
484
|
getRolesForModule(ctx: StateContext<WorkflowStateModel>, _action: GetRolesForModule): rxjs.Observable<never[] | Response<unknown[]>>;
|
|
403
485
|
getAppActions(ctx: StateContext<WorkflowStateModel>, _action: GetAppActions): rxjs.Observable<WorkflowAppActionDescriptor[]> | rxjs.Observable<never[] | Response<unknown>>;
|
|
404
486
|
getAppActionDetail(ctx: StateContext<WorkflowStateModel>, action: GetAppActionDetail): rxjs.Observable<WorkflowAppActionDescriptor> | rxjs.Observable<Response<unknown> | null>;
|
|
487
|
+
getAppActionOptions(ctx: StateContext<WorkflowStateModel>, action: GetAppActionOptions): rxjs.Observable<WorkflowAppActionOption[] | Response<unknown>>;
|
|
405
488
|
getStep(ctx: StateContext<WorkflowStateModel>, action: GetStep): rxjs.Observable<Response<StepSchema> | null>;
|
|
406
489
|
validateFlow(ctx: StateContext<WorkflowStateModel>, _action: ValidateFlow): rxjs.Observable<Response<boolean> | null>;
|
|
407
490
|
createStep(ctx: StateContext<WorkflowStateModel>, action: CreateStep): rxjs.Observable<Response<StepResponse> | null>;
|
|
@@ -414,22 +497,34 @@ declare class WorkflowState {
|
|
|
414
497
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WorkflowState, never>;
|
|
415
498
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<WorkflowState>;
|
|
416
499
|
}
|
|
500
|
+
/**
|
|
501
|
+
* Build a deterministic cache key for an options request:
|
|
502
|
+
* `{actionKey}::{fieldKey}::{paramHash}`. The param hash is a sorted
|
|
503
|
+
* `key=value&...` string of non-empty params, or `_` if none.
|
|
504
|
+
*/
|
|
505
|
+
declare function buildAppActionOptionsCacheKey(actionKey: string, fieldKey: string, params?: Record<string, string | number | boolean | null | undefined>): string;
|
|
417
506
|
|
|
418
|
-
type
|
|
419
|
-
interface
|
|
507
|
+
type WorkflowAppActionConfigEditorFieldKind = 'text' | 'number' | 'toggle' | 'select' | 'json';
|
|
508
|
+
interface WorkflowAppActionConfigEditorField {
|
|
420
509
|
key: string;
|
|
421
510
|
title: string;
|
|
422
511
|
description?: string | null;
|
|
423
512
|
type: WorkflowAppActionConfigPropertyType;
|
|
424
|
-
kind:
|
|
513
|
+
kind: WorkflowAppActionConfigEditorFieldKind;
|
|
425
514
|
required: boolean;
|
|
426
515
|
enumValues?: Array<string | number | boolean>;
|
|
427
516
|
jsonValueType?: 'array' | 'object';
|
|
517
|
+
/**
|
|
518
|
+
* When set, the select dropdown is populated dynamically by calling
|
|
519
|
+
* `GET /api/workflow-app-actions/actions/{actionKey}/options/{fieldKey}`
|
|
520
|
+
* via `WorkflowFacade.loadAppActionOptions` rather than from `enumValues`.
|
|
521
|
+
*/
|
|
522
|
+
optionsProviderKey?: string | null;
|
|
428
523
|
}
|
|
429
524
|
interface WorkflowAppActionConfigEditorDefinition {
|
|
430
525
|
mode: 'schema' | 'raw';
|
|
431
526
|
schema: WorkflowAppActionConfigSchema | null;
|
|
432
|
-
fields:
|
|
527
|
+
fields: WorkflowAppActionConfigEditorField[];
|
|
433
528
|
errors: string[];
|
|
434
529
|
}
|
|
435
530
|
|
|
@@ -471,6 +566,7 @@ declare class WorkflowBuilder {
|
|
|
471
566
|
readonly loadingAppActions: _angular_core.Signal<boolean>;
|
|
472
567
|
readonly loadingAppActionDetail: _angular_core.Signal<boolean>;
|
|
473
568
|
readonly appActionListError: _angular_core.Signal<string | null>;
|
|
569
|
+
readonly publishError: _angular_core.Signal<string | null>;
|
|
474
570
|
readonly appActionDetailError: _angular_core.Signal<string | null>;
|
|
475
571
|
readonly selectedWorkflowId: _angular_core.Signal<number | undefined>;
|
|
476
572
|
readonly connectionFormulaSchemaId: _angular_core.Signal<number | undefined>;
|
|
@@ -550,8 +646,8 @@ declare class WorkflowBuilder {
|
|
|
550
646
|
variant: string;
|
|
551
647
|
size: string;
|
|
552
648
|
tooltip: string;
|
|
649
|
+
condition: (node: WorkflowStepSchema) => boolean;
|
|
553
650
|
severity?: undefined;
|
|
554
|
-
condition?: undefined;
|
|
555
651
|
} | {
|
|
556
652
|
key: string;
|
|
557
653
|
icon: string;
|
|
@@ -583,6 +679,9 @@ declare class WorkflowBuilder {
|
|
|
583
679
|
targetValue?: string;
|
|
584
680
|
appAction?: _masterteam_workflow.WorkflowAppAction | null;
|
|
585
681
|
loading?: boolean;
|
|
682
|
+
systemKind?: _masterteam_workflow.WorkflowAppActionSystemKind | null;
|
|
683
|
+
isSystem?: boolean;
|
|
684
|
+
isLocked?: boolean;
|
|
586
685
|
}[]>;
|
|
587
686
|
readonly connections: _angular_core.Signal<{
|
|
588
687
|
from: number;
|
|
@@ -607,11 +706,51 @@ declare class WorkflowBuilder {
|
|
|
607
706
|
getStepCardTitle(step: WorkflowStepSchema): string;
|
|
608
707
|
getStepTypeLabel(type: WorkflowStepType): string;
|
|
609
708
|
getAppActionConfigControl(key: string): FormControl;
|
|
610
|
-
getAppActionEnumOptions(field:
|
|
709
|
+
getAppActionEnumOptions(field: WorkflowAppActionConfigEditorField): {
|
|
611
710
|
label: string;
|
|
612
711
|
value: string | number | boolean;
|
|
613
712
|
}[];
|
|
713
|
+
/**
|
|
714
|
+
* Lookup the cached dynamic options for a given config field. Returns
|
|
715
|
+
* an empty array on backend error so the template can render an error
|
|
716
|
+
* state, or `undefined` when no fetch has been issued yet.
|
|
717
|
+
*/
|
|
718
|
+
private getDynamicAppActionOptions;
|
|
719
|
+
hasAppActionOptionsError(fieldKey: string): string | null;
|
|
720
|
+
private buildAppActionOptionsParams;
|
|
721
|
+
/**
|
|
722
|
+
* Fire option-loading for every descriptor `select` field that uses
|
|
723
|
+
* an `optionsProviderKey`. Called whenever the editor is rebuilt or
|
|
724
|
+
* the active actionKey changes.
|
|
725
|
+
*/
|
|
726
|
+
private loadDynamicAppActionOptions;
|
|
614
727
|
getAppActionDescription(): string | null;
|
|
728
|
+
/** Runtime inputs are non-editable (resolved at runtime); the editor
|
|
729
|
+
* shows them as read-only "Resolved automatically" hints. */
|
|
730
|
+
getAppActionRuntimeInputs(): _masterteam_workflow.WorkflowAppActionRuntimeInput[];
|
|
731
|
+
/** Outputs are read-only informational hints. */
|
|
732
|
+
getAppActionOutputs(): _masterteam_workflow.WorkflowAppActionOutput[];
|
|
733
|
+
/** Phases the action supports (e.g. ['AfterCommit']). Drives the
|
|
734
|
+
* placement warning when the step is placed before the commit step. */
|
|
735
|
+
getAppActionSupportedPhases(): string[];
|
|
736
|
+
/**
|
|
737
|
+
* `true` when the current action is restricted to `AfterCommit` and
|
|
738
|
+
* therefore should be placed downstream of the `Commit Approved Form`
|
|
739
|
+
* step. Surfaces an inline guidance hint in the editor.
|
|
740
|
+
*/
|
|
741
|
+
isAppActionAfterCommitOnly(): boolean;
|
|
742
|
+
/**
|
|
743
|
+
* `true` when an actionKey is set, descriptor lookup is not in flight,
|
|
744
|
+
* and we still have no resolvable descriptor — i.e. the backend returned
|
|
745
|
+
* `data: null` for the descriptor describe-one call. The saved config
|
|
746
|
+
* is preserved per the AppActions handoff §5.3.
|
|
747
|
+
*/
|
|
748
|
+
isAppActionMissing(): boolean;
|
|
749
|
+
describeRuntimeInputSource(input: {
|
|
750
|
+
source: string;
|
|
751
|
+
contextKey?: string | null;
|
|
752
|
+
resolverKey?: string | null;
|
|
753
|
+
}): string;
|
|
615
754
|
getAppActionDisplayName(): string;
|
|
616
755
|
getAppActionKey(): string;
|
|
617
756
|
getAppActionConfigMessages(): string[];
|
|
@@ -644,5 +783,5 @@ declare const REQUEST_CONTEXT: HttpContextToken<{
|
|
|
644
783
|
useBaseUrl: boolean;
|
|
645
784
|
}>;
|
|
646
785
|
|
|
647
|
-
export { CreateConnection, CreateStep, DeleteConnection, DeleteStep, GetAppActionDetail, GetAppActions, GetFormulaProperties, GetGroups, GetRolesForModule, GetStep, GetWorkflow, GetWorkflows, PublishWorkflow, REQUEST_CONTEXT, SetModuleInfo, UpdateConnection, UpdateStep, ValidateFlow, WorkflowBuilder, WorkflowFacade, WorkflowState };
|
|
648
|
-
export type { ConnectionPayload, ConnectionResponse, FormulaProperty, GroupDefinition, PublishPayload, PublishResponse, Response, RoleDefinition, RoleGroupDefinition, StepPayload, StepPropertyItem, StepPropertyPayload, StepResponse, StepSchema, WorkflowAppAction, WorkflowAppActionConfigPropertySchema, WorkflowAppActionConfigPropertyType, WorkflowAppActionConfigSchema, WorkflowAppActionDescriptor, WorkflowAppActionFailureBehavior, WorkflowConnection, WorkflowListItem, WorkflowLoadingName, WorkflowProperty, WorkflowPropertyConfig, WorkflowSchema, WorkflowStateModel, WorkflowStepSchema, WorkflowStepType };
|
|
786
|
+
export { CreateConnection, CreateStep, DeleteConnection, DeleteStep, GetAppActionDetail, GetAppActionOptions, GetAppActions, GetFormulaProperties, GetGroups, GetRolesForModule, GetStep, GetWorkflow, GetWorkflows, PublishWorkflow, REQUEST_CONTEXT, SetModuleInfo, UpdateConnection, UpdateStep, ValidateFlow, WorkflowBuilder, WorkflowFacade, WorkflowState, buildAppActionOptionsCacheKey };
|
|
787
|
+
export type { ConnectionPayload, ConnectionResponse, FormulaProperty, GroupDefinition, PublishPayload, PublishResponse, Response, RoleDefinition, RoleGroupDefinition, StepPayload, StepPropertyItem, StepPropertyPayload, StepResponse, StepSchema, WorkflowAppAction, WorkflowAppActionConfigField, WorkflowAppActionConfigPropertySchema, WorkflowAppActionConfigPropertyType, WorkflowAppActionConfigSchema, WorkflowAppActionDescriptor, WorkflowAppActionFailureBehavior, WorkflowAppActionFieldUIControl, WorkflowAppActionOption, WorkflowAppActionOptionsCacheEntry, WorkflowAppActionOptionsCacheKey, WorkflowAppActionOutput, WorkflowAppActionPhase, WorkflowAppActionRuntimeInput, WorkflowAppActionRuntimeInputSource, WorkflowAppActionSystemKind, WorkflowConnection, WorkflowListItem, WorkflowLoadingName, WorkflowProperty, WorkflowPropertyConfig, WorkflowSchema, WorkflowStateModel, WorkflowStepSchema, WorkflowStepType };
|