@acorex/platform 21.0.0-next.73 → 21.0.0-next.75

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.
@@ -2,7 +2,8 @@ import * as rxjs from 'rxjs';
2
2
  import { Observable } from 'rxjs';
3
3
  import * as i0 from '@angular/core';
4
4
  import { Type, ModuleWithProviders, Injector, InjectionToken } from '@angular/core';
5
- import { AXPProperty, AXPOptionsData, AXPMetaData, AXPEntityOp, AXPMultiLanguageString, AXPCategoryEntity, AXPExpressionEvaluatorScope } from '@acorex/platform/core';
5
+ import { AXPActivityCategory, AXPActivityDefinition, AXPWorkflowContinuationMetadata, AXPWorkflowContinuationBeforeInteractive, AXPWorkflowDefinition } from '@acorex/platform/contracts';
6
+ import { AXPExpressionEvaluatorScope, AXPCategoryEntity } from '@acorex/platform/core';
6
7
 
7
8
  declare class AXPWorkflowError extends Error {
8
9
  inner: Error | null;
@@ -145,674 +146,6 @@ declare class AXPWorkflowService {
145
146
  static ɵprov: i0.ɵɵInjectableDeclaration<AXPWorkflowService>;
146
147
  }
147
148
 
148
- interface AXPWorkflowDefinition {
149
- schemaVersion: 'acorex-platform-workflow/v1';
150
- name: string;
151
- title?: AXPMultiLanguageString | null;
152
- description?: AXPMultiLanguageString | null;
153
- variables?: AXPProperty[];
154
- inputs?: AXPProperty[];
155
- outputs?: AXPWorkflowOutputProperty[];
156
- graph: AXPWorkflowGraph;
157
- customProperties?: Record<string, any>;
158
- /** engine specific (Elsa, ...) */
159
- extensions?: AXPWorkflowExtensions;
160
- /**
161
- * Workflow bindings configuration.
162
- * Defines which entities and events should trigger this workflow.
163
- */
164
- bindings?: AXPWorkflowBinding[];
165
- }
166
- interface AXPWorkflowGraph {
167
- startActivityId: string;
168
- activities: AXPWorkflowActivityInstance[];
169
- connections: AXPConnection[];
170
- /** purely designer */
171
- designer?: {
172
- nodes?: Record<string, {
173
- x: number;
174
- y: number;
175
- nodeId?: string;
176
- width?: number;
177
- height?: number;
178
- }>;
179
- edges?: Array<{
180
- from: string;
181
- to: string;
182
- vertices?: Array<{
183
- x: number;
184
- y: number;
185
- }>;
186
- }>;
187
- /**
188
- * When true, the Activities page has applied its initial auto-arrange (or the graph already had
189
- * persisted node positions). Prevents re-running automatic layout on subsequent visits.
190
- */
191
- layoutArranged?: boolean;
192
- };
193
- }
194
- interface AXPWorkflowActivityInstance {
195
- id: string;
196
- nodeId?: string;
197
- /**
198
- * Activity name - references AXPActivityDefinition.name
199
- * Used to lookup activity definition for metadata (executionMode, title, etc.)
200
- */
201
- name: string;
202
- /**
203
- * Input values for this activity instance.
204
- * Key-value pairs where keys match {@link AXPProperty.name} from AXPActivityDefinition.inputs
205
- * Example: { "message": "Hello", "duration": 5000 }
206
- */
207
- inputs?: AXPOptionsData;
208
- title?: string;
209
- /**
210
- * Output mapping: process variable name → path in this activity's output (BPMN-style: activity → variable).
211
- * When this activity completes, each entry sets variables[variableName] = output[outputPath].
212
- * Example: { leaveRequestId: 'id' } → variables.leaveRequestId = activityOutput.id
213
- */
214
- outputToVariables?: AXPOptionsData;
215
- metadata?: AXPMetaData;
216
- /** engine-specific override */
217
- extensions?: Record<string, any>;
218
- }
219
- interface AXPConnection {
220
- source: {
221
- activtyName: string;
222
- port?: string | null;
223
- };
224
- target: {
225
- activtyName: string;
226
- port?: string | null;
227
- };
228
- vertices?: Array<{
229
- x: number;
230
- y: number;
231
- }>;
232
- }
233
- /**
234
- * Workflow output: same as {@link AXPProperty} with optional source path and engine metadata.
235
- */
236
- interface AXPWorkflowOutputProperty extends AXPProperty {
237
- /**
238
- * Optional: where this output comes from in your context/memory.
239
- * Example: "$.result.orderId" or "vars.orderId"
240
- */
241
- path?: string;
242
- metadata?: Record<string, any>;
243
- }
244
- /**
245
- * Engine-specific extension bag for a workflow.
246
- * Keep ALL engine-only fields here (Elsa, StepFunctions adapter, etc).
247
- */
248
- interface AXPWorkflowExtensions {
249
- /**
250
- * Elsa-specific extensions (optional).
251
- */
252
- elsa?: AXPElsaWorkflowExtensions;
253
- /**
254
- * Other engines (future-proof).
255
- * Example: stepFunctions, logicApps, temporal, ...
256
- */
257
- [engine: string]: any;
258
- }
259
- /**
260
- * Elsa-only fields (Optional).
261
- * Put strategy/tool/schema/raw payload here to keep Core model global.
262
- */
263
- interface AXPElsaWorkflowExtensions {
264
- /**
265
- * Elsa schema URL (if you want to round-trip exact docs).
266
- * Example: "https://elsaworkflows.io/schemas/workflow-definition/v3.0.0/schema.json"
267
- */
268
- schema?: string;
269
- toolVersion?: string;
270
- materializerName?: string;
271
- /**
272
- * Elsa strategy/options (engine-level concerns).
273
- */
274
- options?: {
275
- activationStrategyType?: string | null;
276
- incidentStrategyType?: string | null;
277
- commitStrategyName?: string | null;
278
- autoUpdateConsumingWorkflows?: boolean;
279
- usableAsActivity?: boolean | null;
280
- activityCategory?: string | null;
281
- };
282
- /**
283
- * If you want lossless Elsa round-trip, keep the raw Elsa definition here.
284
- */
285
- rawDefinition?: any;
286
- }
287
- /**
288
- * Workflow binding configuration.
289
- * Defines which entities and events should trigger a workflow.
290
- */
291
- interface AXPWorkflowBinding {
292
- /**
293
- * Entity types this workflow applies to (e.g., ['ContentManagement.Promotion', 'ContentManagement.Article'])
294
- * Empty array means applies to all entities with workflow-run plugin enabled.
295
- */
296
- entityTypes: string[];
297
- /**
298
- * Event types that trigger this workflow (e.g., ['create', 'update'])
299
- * Uses AXPEntityOp directly (create, update, delete, etc.)
300
- */
301
- eventTypes: AXPEntityOp[];
302
- /**
303
- * Whether this binding is enabled
304
- */
305
- enabled: boolean;
306
- /**
307
- * Optional conditions for when to trigger (future enhancement)
308
- */
309
- conditions?: any;
310
- }
311
-
312
- /**
313
- * Workflow status.
314
- */
315
- type AXPWorkflowStatus = 'Running' | 'Finished';
316
- /**
317
- * Workflow sub-status.
318
- */
319
- type AXPWorkflowSubStatus = 'Pending' | 'Executing' | 'Suspended' | 'Finished' | 'Cancelled' | 'Faulted';
320
- /**
321
- * Activity status.
322
- */
323
- type AXPActivityStatus = 'Running' | 'Completed' | 'Canceled' | 'Faulted';
324
- /**
325
- * Exception state.
326
- */
327
- interface AXPExceptionState {
328
- /**
329
- * Exception type name.
330
- */
331
- type: string;
332
- /**
333
- * Exception message.
334
- */
335
- message: string;
336
- /**
337
- * Stack trace (nullable).
338
- */
339
- stackTrace?: string | null;
340
- /**
341
- * Inner exception (nullable).
342
- */
343
- innerException?: AXPExceptionState | null;
344
- }
345
- /**
346
- * Activity incident.
347
- */
348
- interface AXPActivityIncident {
349
- /**
350
- * Activity ID that caused the incident.
351
- */
352
- activityId: string;
353
- /**
354
- * Activity node ID.
355
- */
356
- activityNodeId: string;
357
- /**
358
- * Activity type.
359
- */
360
- activityType: string;
361
- /**
362
- * Incident message.
363
- */
364
- message: string;
365
- /**
366
- * Exception (nullable).
367
- */
368
- exception?: AXPExceptionState | null;
369
- /**
370
- * Timestamp (ISO date-time).
371
- */
372
- timestamp: string;
373
- }
374
- /**
375
- * Workflow fault state.
376
- */
377
- interface AXPWorkflowFaultState {
378
- /**
379
- * Exception (nullable).
380
- */
381
- exception?: AXPExceptionState | null;
382
- /**
383
- * Fault message.
384
- */
385
- message: string;
386
- /**
387
- * Faulted activity ID (nullable).
388
- */
389
- faultedActivityId?: string | null;
390
- }
391
- /**
392
- * Bookmark.
393
- */
394
- interface AXPBookmark {
395
- /**
396
- * Bookmark ID.
397
- */
398
- id: string;
399
- /**
400
- * Bookmark name.
401
- */
402
- name: string;
403
- /**
404
- * Bookmark hash.
405
- */
406
- hash: string;
407
- /**
408
- * Bookmark payload (nullable).
409
- */
410
- payload?: any | null;
411
- /**
412
- * Activity node ID.
413
- */
414
- activityNodeId: string;
415
- /**
416
- * Activity instance ID.
417
- */
418
- activityInstanceId: string;
419
- /**
420
- * Auto burn flag.
421
- */
422
- autoBurn?: boolean;
423
- /**
424
- * Callback method name (nullable).
425
- */
426
- callbackMethodName?: string | null;
427
- /**
428
- * Metadata (nullable).
429
- */
430
- metadata?: Record<string, string> | null;
431
- }
432
- /**
433
- * Completion callback state.
434
- */
435
- interface AXPCompletionCallbackState {
436
- /**
437
- * Owner activity instance ID.
438
- */
439
- ownerInstanceId: string;
440
- /**
441
- * Child activity node ID.
442
- */
443
- childNodeId: string;
444
- /**
445
- * Method name (nullable).
446
- */
447
- methodName?: string | null;
448
- }
449
- /**
450
- * Variable (for activity context).
451
- */
452
- interface AXPActivityVariable {
453
- /**
454
- * Variable ID.
455
- */
456
- id: string;
457
- /**
458
- * Variable name.
459
- */
460
- name: string;
461
- /**
462
- * Type name.
463
- */
464
- typeName: string;
465
- /**
466
- * Is array flag.
467
- */
468
- isArray?: boolean;
469
- /**
470
- * Variable value (nullable).
471
- */
472
- value?: any | null;
473
- /**
474
- * Storage driver type name (nullable).
475
- */
476
- storageDriverTypeName?: string | null;
477
- }
478
- /**
479
- * Activity execution context state.
480
- */
481
- interface AXPActivityExecutionContextState {
482
- /**
483
- * Context ID (activity instance ID).
484
- */
485
- id: string;
486
- /**
487
- * Parent context ID (nullable).
488
- */
489
- parentContextId?: string | null;
490
- /**
491
- * Scheduled activity node ID.
492
- */
493
- scheduledActivityNodeId: string;
494
- /**
495
- * Owner activity node ID (nullable).
496
- */
497
- ownerActivityNodeId?: string | null;
498
- /**
499
- * Properties bag.
500
- */
501
- properties: Record<string, any>;
502
- /**
503
- * Activity state (evaluated properties) (nullable).
504
- */
505
- activityState?: Record<string, any> | null;
506
- /**
507
- * Dynamic variables.
508
- */
509
- dynamicVariables: AXPActivityVariable[];
510
- /**
511
- * Activity status.
512
- */
513
- status: AXPActivityStatus;
514
- /**
515
- * Is executing flag.
516
- */
517
- isExecuting: boolean;
518
- /**
519
- * Fault count.
520
- */
521
- faultCount: number;
522
- /**
523
- * Started at timestamp (ISO date-time).
524
- */
525
- startedAt: string;
526
- /**
527
- * Completed at timestamp (ISO date-time, nullable).
528
- */
529
- completedAt?: string | null;
530
- /**
531
- * Tag (nullable).
532
- */
533
- tag?: any | null;
534
- }
535
- /**
536
- * Workflow state (internal execution state).
537
- */
538
- interface AXPWorkflowState {
539
- /**
540
- * State ID.
541
- */
542
- id: string;
543
- /**
544
- * Workflow definition ID.
545
- */
546
- definitionId: string;
547
- /**
548
- * Workflow definition version.
549
- */
550
- definitionVersion: number;
551
- /**
552
- * Correlation ID (nullable).
553
- */
554
- correlationId?: string | null;
555
- /**
556
- * Workflow status.
557
- */
558
- status: AXPWorkflowStatus;
559
- /**
560
- * Workflow sub-status.
561
- */
562
- subStatus: AXPWorkflowSubStatus;
563
- /**
564
- * Bookmarks.
565
- */
566
- bookmarks: AXPBookmark[];
567
- /**
568
- * Incidents.
569
- */
570
- incidents: AXPActivityIncident[];
571
- /**
572
- * Fault (nullable).
573
- */
574
- fault?: AXPWorkflowFaultState | null;
575
- /**
576
- * Completion callbacks.
577
- */
578
- completionCallbacks: AXPCompletionCallbackState[];
579
- /**
580
- * Activity execution contexts.
581
- */
582
- activityExecutionContexts: AXPActivityExecutionContextState[];
583
- /**
584
- * Input data.
585
- */
586
- input: Record<string, any>;
587
- /**
588
- * Output data.
589
- */
590
- output: Record<string, any>;
591
- /**
592
- * Properties bag.
593
- */
594
- properties: Record<string, any>;
595
- /**
596
- * Created at timestamp (ISO date-time).
597
- */
598
- createdAt: string;
599
- /**
600
- * Updated at timestamp (ISO date-time).
601
- */
602
- updatedAt: string;
603
- /**
604
- * Finished at timestamp (ISO date-time, nullable).
605
- */
606
- finishedAt?: string | null;
607
- /**
608
- * Total number of activities/steps in the workflow (for progress display).
609
- */
610
- totalSteps?: number;
611
- }
612
- /**
613
- * Workflow instance (stored in database).
614
- * This matches the Elsa Workflow Instance schema for backend compatibility.
615
- */
616
- interface AXPWorkflowInstance {
617
- /**
618
- * Schema reference.
619
- */
620
- $schema?: string;
621
- /**
622
- * Unique instance ID.
623
- */
624
- id: string;
625
- /**
626
- * Workflow definition ID.
627
- */
628
- definitionId: string;
629
- /**
630
- * Workflow definition version ID.
631
- */
632
- definitionVersionId: string;
633
- /**
634
- * Workflow definition version number.
635
- */
636
- version: number;
637
- /**
638
- * Parent workflow instance ID (nullable, for child workflows).
639
- */
640
- parentWorkflowInstanceId?: string | null;
641
- /**
642
- * Workflow state (internal execution state).
643
- */
644
- workflowState: AXPWorkflowState;
645
- /**
646
- * Workflow status.
647
- */
648
- status: AXPWorkflowStatus;
649
- /**
650
- * Workflow sub-status.
651
- */
652
- subStatus: AXPWorkflowSubStatus;
653
- /**
654
- * Correlation ID (nullable).
655
- */
656
- correlationId?: string | null;
657
- /**
658
- * Instance name (nullable).
659
- */
660
- name?: string | null;
661
- /**
662
- * Incident count.
663
- */
664
- incidentCount: number;
665
- /**
666
- * Created at timestamp (ISO date-time).
667
- */
668
- createdAt: string;
669
- /**
670
- * Updated at timestamp (ISO date-time).
671
- */
672
- updatedAt: string;
673
- /**
674
- * Finished at timestamp (ISO date-time, nullable).
675
- */
676
- finishedAt?: string | null;
677
- /**
678
- * Entity reference ID (for linking workflow instances to business entities).
679
- */
680
- entityRefId?: string | null;
681
- /**
682
- * Entity reference type (e.g., 'HumanCapitalManagement.LeaveRequest').
683
- */
684
- entityRefType?: string | null;
685
- }
686
-
687
- /**
688
- * Type of task for inbox handling.
689
- * - 'human-task': Requires inbox - needs human interaction
690
- * - 'ui-activity': UI-only activity (no inbox) - immediate execution
691
- * - 'system-activity': System/backend activity (no inbox) - automated execution
692
- */
693
- type AXPTaskType = 'human-task' | 'ui-activity' | 'system-activity';
694
- /**
695
- * How the workflow engine should offer "continue to next step?" before an inline frontend activity.
696
- * Declared on {@link AXPActivityDefinition} and copied onto {@link AXPWorkflowTask} at runtime.
697
- */
698
- type AXPWorkflowContinuationBeforeInteractive = 'default'
699
- /** Skip when opened from a task-board human-task primary action (e.g. start-fill, review). */
700
- | 'skip-when-chained-from-human-task'
701
- /** Skip for the natural assignee; initiator / reassign users still get the prompt (workflow-management). */
702
- | 'skip-for-assignee';
703
- /** Optional continuation UX metadata for an activity definition. */
704
- interface AXPWorkflowContinuationMetadata {
705
- beforeInteractive?: AXPWorkflowContinuationBeforeInteractive;
706
- }
707
- /**
708
- * Activity Category - Extends AXPCategoryEntity for consistency and performance
709
- *
710
- * Inherited properties from AXPCategoryEntity:
711
- * - id: string - Unique identifier
712
- * - title: string - Display name
713
- * - description?: string - Category description
714
- * - parentId?: string - Parent category ID
715
- * - childrenCount: number - Direct child categories count (enables lazy loading)
716
- * - itemsCount?: number - Direct activities count
717
- * - totalChildrenCount?: number - Total nested categories (optional, for analytics)
718
- * - totalItemsCount?: number - Total activities in tree (optional, for analytics)
719
- */
720
- interface AXPActivityCategory extends AXPCategoryEntity {
721
- }
722
- /**
723
- * Lightweight category snapshot embedded in activity-definition records.
724
- */
725
- interface AXPActivityDefinitionCategoryRef {
726
- id: string;
727
- name: string;
728
- title: AXPMultiLanguageString;
729
- }
730
- /**
731
- * Activity Definition - Metadata for UI and tooling.
732
- * Contains all metadata needed for displaying activities in toolbox and designer.
733
- * The `name` property is used as the command key for execution.
734
- */
735
- interface AXPActivityDefinition {
736
- /**
737
- * Activity name - used as command key for execution.
738
- * This is the unique identifier for the activity.
739
- */
740
- name: string;
741
- /**
742
- * Activity type (e.g., "workflow-activity:check-permission").
743
- */
744
- type: string;
745
- /**
746
- * Display name for UI (plain or per-locale map).
747
- */
748
- title?: AXPMultiLanguageString;
749
- instanceTitle?: string;
750
- /**
751
- * Description of what the activity does (plain or per-locale map).
752
- */
753
- description?: AXPMultiLanguageString;
754
- /**
755
- * Category for grouping in toolbox.
756
- */
757
- category?: AXPActivityDefinitionCategoryRef;
758
- /**
759
- * Icon name or class.
760
- */
761
- icon?: string;
762
- /**
763
- * Where this activity should be executed.
764
- * - 'frontend': Execute in browser (UI activities, console, events)
765
- * - 'backend': Execute in backend (business logic, API calls)
766
- * - 'both': Execute in both frontend and backend (hybrid activities)
767
- *
768
- * Default: 'frontend'
769
- */
770
- executionMode?: 'frontend' | 'backend' | 'both';
771
- /**
772
- * Type of task for inbox handling.
773
- * - 'human-task': Requires inbox - needs human interaction
774
- * - 'ui-activity': UI-only activity (no inbox) - immediate execution
775
- * - 'system-activity': System/backend activity (no inbox) - automated execution
776
- *
777
- * Default: 'ui-activity' (for backward compatibility)
778
- */
779
- taskType?: AXPTaskType;
780
- /**
781
- * Input properties (form/schema for activity parameters).
782
- */
783
- inputs?: AXPProperty[];
784
- /**
785
- * Output properties (result shape + optional path/metadata).
786
- */
787
- outputs?: AXPWorkflowOutputProperty[];
788
- /**
789
- * Static outcomes (exit points).
790
- * Example: ['Done', 'Success', 'Failed']
791
- */
792
- outcomes?: string[];
793
- /**
794
- * Whether this activity is browsable in the toolbox.
795
- * Default: true
796
- */
797
- isBrowsable?: boolean;
798
- /**
799
- * Whether this activity is a container (can have children).
800
- * Default: false
801
- */
802
- isContainer?: boolean;
803
- /**
804
- * Continuation prompt behavior when this activity runs inline in the workflow manager.
805
- */
806
- workflowContinuation?: AXPWorkflowContinuationMetadata;
807
- }
808
- /**
809
- * Query result shape for activity-definition catalog endpoints.
810
- */
811
- interface AXPActivityDefinitionQueryResult {
812
- total: number;
813
- items: AXPActivityDefinition[];
814
- }
815
-
816
149
  type AXPActivityProviderToken = AXPActivityProvider | Promise<AXPActivityProvider>;
817
150
  declare const AXP_ACTIVITY_PROVIDER: InjectionToken<AXPActivityProviderToken[]>;
818
151
  interface AXPActivityProvider {
@@ -2019,4 +1352,4 @@ declare class AXPWorkflowDefinitionService {
2019
1352
  }
2020
1353
 
2021
1354
  export { AXPActivityDefinitionService, AXPWorkflowAction, AXPWorkflowContext, AXPWorkflowDefinitionService, AXPWorkflowEngineError, AXPWorkflowError, AXPWorkflowEventService, AXPWorkflowFunction, AXPWorkflowLocalEngine, AXPWorkflowManager, AXPWorkflowModule, AXPWorkflowRegistryService, AXPWorkflowService, AXP_ACTIVITY_CATEGORY_PROVIDER, AXP_ACTIVITY_PROVIDER, AXP_WORKFLOW_CATEGORY_PROVIDER, AXP_WORKFLOW_CONTINUATION_HOOK, AXP_WORKFLOW_ENGINE, AXP_WORKFLOW_ERROR_CODES, AXP_WORKFLOW_PROVIDER, AXP_WORKFLOW_SUPPRESS_CONTINUATION_INPUT_KEY, AXP_WORKFLOW_TASK_BOARD_ACTIVITY_TYPES, ActivityExecutor, WorkflowExpressionScopeService, axpIsWorkflowInlineFrontendTask, axpIsWorkflowInteractiveFrontendTask, axpIsWorkflowTaskBoardActivityType, axpResolveWorkflowContinuationBeforeInteractive, axpShouldOfferBeforeInteractiveFlow, axpShouldOfferWorkflowContinuationAfterStep, axpShouldSkipBeforeInteractiveFromMetadata, createWorkFlowEvent, getWorkflowEngineErrorCode, getWorkflowEngineErrorInfo, isWorkflowContinuationSuppressed, ofType };
2022
- export type { AXPActivityCategory, AXPActivityCategoryProvider, AXPActivityCategoryProviderToken, AXPActivityDefinition, AXPActivityDefinitionCategoryRef, AXPActivityDefinitionQueryResult, AXPActivityExecutionContextState, AXPActivityIncident, AXPActivityProvider, AXPActivityProviderToken, AXPActivityStatus, AXPActivityVariable, AXPBookmark, AXPClaimWorkflowTaskRequest, AXPClaimWorkflowTaskResponse, AXPCompletionCallbackState, AXPConnection, AXPElsaWorkflowExtensions, AXPExceptionState, AXPFrontActivityCompleteRequest, AXPFrontActivityCompleteResponse, AXPGetWorkflowStateRequest, AXPReassignWorkflowTaskToSelfRequest, AXPReassignWorkflowTaskToSelfResponse, AXPResumeWorkflowRequest, AXPResumeWorkflowResponse, AXPRevertResumeAfterDeclinedInteractiveContinuationRequest, AXPRevertResumeAfterDeclinedInteractiveContinuationResponse, AXPStartWorkflowRequest, AXPStartWorkflowResponse, AXPTaskType, AXPWorkflow, AXPWorkflowActionInput, AXPWorkflowActivityInstance, AXPWorkflowBinding, AXPWorkflowCategory, AXPWorkflowCategoryProvider, AXPWorkflowCategoryProviderToken, AXPWorkflowCondition, AXPWorkflowConditionType, AXPWorkflowContinuationBeforeInteractive, AXPWorkflowContinuationHook, AXPWorkflowContinuationMetadata, AXPWorkflowContinuationOfferResult, AXPWorkflowContinuationStepContext, AXPWorkflowDefinition, AXPWorkflowEngine, AXPWorkflowErrorCode, AXPWorkflowEvent, AXPWorkflowExtensions, AXPWorkflowFaultState, AXPWorkflowGraph, AXPWorkflowInstance, AXPWorkflowInstanceState, AXPWorkflowModuleConfigs, AXPWorkflowNextStep, AXPWorkflowOutputProperty, AXPWorkflowProvider, AXPWorkflowProviderToken, AXPWorkflowState, AXPWorkflowStatus, AXPWorkflowStep, AXPWorkflowSubStatus, AXPWorkflowTask, ActivityExecutionResult, WorkflowClaimTaskResult, WorkflowCompleteResult, WorkflowExpressionContext, WorkflowReassignTaskToSelfResult, WorkflowResumeResult, WorkflowStartResult };
1355
+ export type { AXPActivityCategoryProvider, AXPActivityCategoryProviderToken, AXPActivityProvider, AXPActivityProviderToken, AXPClaimWorkflowTaskRequest, AXPClaimWorkflowTaskResponse, AXPFrontActivityCompleteRequest, AXPFrontActivityCompleteResponse, AXPGetWorkflowStateRequest, AXPReassignWorkflowTaskToSelfRequest, AXPReassignWorkflowTaskToSelfResponse, AXPResumeWorkflowRequest, AXPResumeWorkflowResponse, AXPRevertResumeAfterDeclinedInteractiveContinuationRequest, AXPRevertResumeAfterDeclinedInteractiveContinuationResponse, AXPStartWorkflowRequest, AXPStartWorkflowResponse, AXPWorkflow, AXPWorkflowActionInput, AXPWorkflowCategory, AXPWorkflowCategoryProvider, AXPWorkflowCategoryProviderToken, AXPWorkflowCondition, AXPWorkflowConditionType, AXPWorkflowContinuationHook, AXPWorkflowContinuationOfferResult, AXPWorkflowContinuationStepContext, AXPWorkflowEngine, AXPWorkflowErrorCode, AXPWorkflowEvent, AXPWorkflowInstanceState, AXPWorkflowModuleConfigs, AXPWorkflowNextStep, AXPWorkflowProvider, AXPWorkflowProviderToken, AXPWorkflowStep, AXPWorkflowTask, ActivityExecutionResult, WorkflowClaimTaskResult, WorkflowCompleteResult, WorkflowExpressionContext, WorkflowReassignTaskToSelfResult, WorkflowResumeResult, WorkflowStartResult };