@elqnt/workflow 2.0.7 → 2.1.1
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/dist/api/index.d.mts +74 -0
- package/dist/api/index.d.ts +74 -0
- package/dist/api/index.js +36 -0
- package/dist/api/index.js.map +1 -0
- package/dist/api/index.mjs +36 -0
- package/dist/api/index.mjs.map +1 -0
- package/dist/chunk-F5G2ALFS.js +391 -0
- package/dist/chunk-F5G2ALFS.js.map +1 -0
- package/dist/chunk-H24IF5AA.js.map +1 -1
- package/dist/chunk-JES2EBNO.js +105 -0
- package/dist/chunk-JES2EBNO.js.map +1 -0
- package/dist/chunk-TZA3EPTC.mjs +391 -0
- package/dist/chunk-TZA3EPTC.mjs.map +1 -0
- package/dist/chunk-UE4ZBFLG.mjs +105 -0
- package/dist/chunk-UE4ZBFLG.mjs.map +1 -0
- package/dist/hooks/index.d.mts +63 -0
- package/dist/hooks/index.d.ts +63 -0
- package/dist/hooks/index.js +14 -0
- package/dist/hooks/index.js.map +1 -0
- package/dist/hooks/index.mjs +14 -0
- package/dist/hooks/index.mjs.map +1 -0
- package/dist/index.d.mts +9 -5
- package/dist/index.d.ts +9 -5
- package/dist/index.js +41 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +40 -0
- package/dist/index.mjs.map +1 -1
- package/dist/models/index.d.mts +56 -1
- package/dist/models/index.d.ts +56 -1
- package/dist/models/index.js.map +1 -1
- package/dist/{index-B4xiOlL7.d.mts → workflow-NznrS9yA.d.mts} +1 -54
- package/dist/{index-B4xiOlL7.d.ts → workflow-NznrS9yA.d.ts} +1 -54
- package/package.json +27 -13
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { ApiClientOptions } from '@elqnt/api-client';
|
|
2
|
+
import { W as WorkflowInstance, a as WorkflowDefinition } from '../workflow-NznrS9yA.js';
|
|
3
|
+
import { WorkflowTemplate } from '../api/index.js';
|
|
4
|
+
import '@elqnt/types';
|
|
5
|
+
|
|
6
|
+
type UseWorkflowsOptions = ApiClientOptions;
|
|
7
|
+
/**
|
|
8
|
+
* Hook for workflow definition CRUD operations
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* const { loading, error, listWorkflows, createWorkflow } = useWorkflows({
|
|
13
|
+
* baseUrl: apiGatewayUrl,
|
|
14
|
+
* orgId: selectedOrgId,
|
|
15
|
+
* });
|
|
16
|
+
*
|
|
17
|
+
* const workflows = await listWorkflows();
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
declare function useWorkflows(options: UseWorkflowsOptions): {
|
|
21
|
+
loading: boolean;
|
|
22
|
+
error: string | null;
|
|
23
|
+
listWorkflows: () => Promise<WorkflowDefinition[]>;
|
|
24
|
+
getWorkflow: (workflowId: string) => Promise<WorkflowDefinition | null>;
|
|
25
|
+
createWorkflow: (workflow: Partial<WorkflowDefinition>) => Promise<WorkflowDefinition | null>;
|
|
26
|
+
updateWorkflow: (workflowId: string, workflow: Partial<WorkflowDefinition>) => Promise<WorkflowDefinition | null>;
|
|
27
|
+
deleteWorkflow: (workflowId: string) => Promise<boolean>;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Hook for workflow instance operations
|
|
31
|
+
*/
|
|
32
|
+
declare function useWorkflowInstances(options: UseWorkflowsOptions): {
|
|
33
|
+
loading: boolean;
|
|
34
|
+
error: string | null;
|
|
35
|
+
listInstances: (definitionId: string, filters?: {
|
|
36
|
+
userId?: string;
|
|
37
|
+
status?: string;
|
|
38
|
+
}) => Promise<WorkflowInstance[]>;
|
|
39
|
+
getInstance: (instanceId: string) => Promise<WorkflowInstance | null>;
|
|
40
|
+
createInstance: (definitionId: string, data?: {
|
|
41
|
+
variables?: Record<string, unknown>;
|
|
42
|
+
autoExecute?: boolean;
|
|
43
|
+
}) => Promise<WorkflowInstance | null>;
|
|
44
|
+
updateStatus: (instanceId: string, status: string) => Promise<WorkflowInstance | null>;
|
|
45
|
+
executeNode: (instanceId: string, nodeId: string, input: Record<string, unknown>) => Promise<Record<string, unknown> | null>;
|
|
46
|
+
resumeNode: (instanceId: string, nodeId: string, result: Record<string, unknown>) => Promise<WorkflowInstance | null>;
|
|
47
|
+
retryNode: (instanceId: string, nodeId: string) => Promise<WorkflowInstance | null>;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* Hook for workflow template operations
|
|
51
|
+
*/
|
|
52
|
+
declare function useWorkflowTemplates(options: UseWorkflowsOptions): {
|
|
53
|
+
loading: boolean;
|
|
54
|
+
error: string | null;
|
|
55
|
+
listTemplates: (category?: string) => Promise<WorkflowTemplate[]>;
|
|
56
|
+
getTemplate: (templateId: string) => Promise<WorkflowTemplate | null>;
|
|
57
|
+
instantiateTemplate: (templateId: string, params: {
|
|
58
|
+
variables: Record<string, unknown>;
|
|
59
|
+
title?: string;
|
|
60
|
+
}) => Promise<WorkflowDefinition | null>;
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
export { type UseWorkflowsOptions, useWorkflowInstances, useWorkflowTemplates, useWorkflows };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});"use client";
|
|
2
|
+
"use client";
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
var _chunkF5G2ALFSjs = require('../chunk-F5G2ALFS.js');
|
|
8
|
+
require('../chunk-JES2EBNO.js');
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
exports.useWorkflowInstances = _chunkF5G2ALFSjs.useWorkflowInstances; exports.useWorkflowTemplates = _chunkF5G2ALFSjs.useWorkflowTemplates; exports.useWorkflows = _chunkF5G2ALFSjs.useWorkflows;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/eloquent/eloquent/packages/@elqnt/workflow/dist/hooks/index.js"],"names":[],"mappings":"AAAA,qFAAY;AACZ,YAAY;AACZ;AACE;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACF,iMAAC","file":"/home/runner/work/eloquent/eloquent/packages/@elqnt/workflow/dist/hooks/index.js"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use client";
|
|
3
|
+
import {
|
|
4
|
+
useWorkflowInstances,
|
|
5
|
+
useWorkflowTemplates,
|
|
6
|
+
useWorkflows
|
|
7
|
+
} from "../chunk-TZA3EPTC.mjs";
|
|
8
|
+
import "../chunk-UE4ZBFLG.mjs";
|
|
9
|
+
export {
|
|
10
|
+
useWorkflowInstances,
|
|
11
|
+
useWorkflowTemplates,
|
|
12
|
+
useWorkflows
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { JSONSchema } from '@elqnt/types';
|
|
3
|
-
import {
|
|
4
|
-
export {
|
|
5
|
-
|
|
3
|
+
import { a as WorkflowDefinition, W as WorkflowInstance } from './workflow-NznrS9yA.mjs';
|
|
4
|
+
export { A as AccountingNodeSubType, e as AccountingNodeSubTypes, f as ActionNodeSubType, g as ActionNodeSubTypes, h as AgentNodeSubType, i as AgentNodeSubTypes, C as CacheConfig, j as CreateWorkflowDefinitionRequest, k as CreateWorkflowInstanceRequest, D as DataNodeSubType, l as DataNodeSubTypes, m as DelayNodeSubType, n as DelayNodeSubTypes, o as DeleteWorkflowDefinitionRequest, E as EdgeState, p as EdgeStatus, q as EdgeStatusCompleted, r as EdgeStatusPending, s as EdgeStatusSkipped, t as EdgeType, u as EdgeTypeCompensation, v as EdgeTypeConditional, w as EdgeTypeDefault, x as EdgeTypeDefinition, y as EdgeTypeError, z as EdgeTypeLoopBack, B as EdgeTypeMerge, F as EdgeTypeNormal, G as EdgeTypeParallel, H as EdgeTypeTimeout, I as ExecutionConfig, J as ExecutionContext, K as ExecutionError, M as ExecutionPathEntry, N as ExpressionConfig, O as ExpressionType, P as ExpressionTypeDSL, Q as ExpressionTypeFilter, R as ExpressionTypeJavaScript, S as ExpressionTypeRules, T as ExpressionTypeTemplate, U as GetInstanceByStateVariableRequest, V as GetWorkflowDefinitionByTitleRequest, X as GetWorkflowDefinitionRequest, Y as GetWorkflowInstanceRequest, Z as HumanActionNodeSubType, _ as HumanActionNodeSubTypes, $ as InstanceState, a0 as InstanceStatus, a1 as InstanceStatusCompleted, a2 as InstanceStatusFailed, a3 as InstanceStatusNew, a4 as InstanceStatusPaused, a5 as InstanceStatusRunning, a6 as InstanceStatusWaiting, a7 as Intent, a8 as ListInstancesOptions, a9 as ListWorkflowDefinitionsRequest, d as ListWorkflowDefinitionsResponse, aa as ListWorkflowInstancesRequest, L as ListWorkflowInstancesResponse, ab as LogicNodeSubType, ac as LogicNodeSubTypes, ad as LogicPath, ae as LoopNodeSubType, af as LoopNodeSubTypes, ag as Metadata, ah as NodeCategory, ai as NodeConfig, aj as NodeDefinition, ak as NodeInput, al as NodeInstance, am as NodeOutput, an as NodeSettings, ao as NodeState, ap as NodeStatus, aq as NodeStatusCompleted, ar as NodeStatusFailed, as as NodeStatusPending, at as NodeStatusRunning, au as NodeStatusSkipped, av as NodeStatusWaiting, aw as NodeSubType, ax as NodeSubTypeActionApiCall, ay as NodeSubTypeActionAssignSLAPolicy, az as NodeSubTypeActionCSATSurvey, aA as NodeSubTypeActionChangeSLAStatus, aB as NodeSubTypeActionCreateEntityRecord, aC as NodeSubTypeActionDeleteEntityRecord, aD as NodeSubTypeActionDocumentExtraction, aE as NodeSubTypeActionEscalateSLA, aF as NodeSubTypeActionGenerateDocument, aG as NodeSubTypeActionMergeEntityRecords, aH as NodeSubTypeActionNatsRequest, aI as NodeSubTypeActionProcessPayment, aJ as NodeSubTypeActionQueryEntityRecords, aK as NodeSubTypeActionSendEmail, aL as NodeSubTypeActionSendSMS, aM as NodeSubTypeActionSetVariables, aN as NodeSubTypeActionUpdateEntityRecord, aO as NodeSubTypeAgentApiIntegration, aP as NodeSubTypeAgentChat, aQ as NodeSubTypeAgentClientApiCall, aR as NodeSubTypeAgentCustomResponse, aS as NodeSubTypeAgentIntentDetector, aT as NodeSubTypeAgentKnowledgeGraph, aU as NodeSubTypeAgentOpenTicket, aV as NodeSubTypeAgentStructuredOutput, aW as NodeSubTypeAgentTransferToHuman, aX as NodeSubTypeDataCalculate, aY as NodeSubTypeDataFilter, aZ as NodeSubTypeDataMap, a_ as NodeSubTypeDataValidate, a$ as NodeSubTypeDelay, b0 as NodeSubTypeHumanActionApproval, b1 as NodeSubTypeHumanActionAssignment, b2 as NodeSubTypeHumanActionDataEntry, b3 as NodeSubTypeHumanActionReview, b4 as NodeSubTypeInfo, b5 as NodeSubTypeLogicFor, b6 as NodeSubTypeLogicIf, b7 as NodeSubTypeLogicParallel, b8 as NodeSubTypeLogicSwitch, b9 as NodeSubTypeLoopData, ba as NodeSubTypeTS, bb as NodeSubTypeTimerBusinessHours, bc as NodeSubTypeTimerDelay, bd as NodeSubTypeTimerSchedule, be as NodeSubTypeTriggerEntityRecordCreated, bf as NodeSubTypeTriggerEntityRecordDeleted, bg as NodeSubTypeTriggerEntityRecordUpdated, bh as NodeSubTypeTriggerEscalation, bi as NodeSubTypeTriggerSLABreach, bj as NodeSubTypeTriggerSLAWarning, bk as NodeSubTypeTriggerStart, bl as NodeSubTypeTriggerWebhookReceived, bm as NodeType, bn as NodeTypeAccounting, bo as NodeTypeAction, bp as NodeTypeAgent, bq as NodeTypeCustom, br as NodeTypeData, bs as NodeTypeDelay, bt as NodeTypeDocumentExtraction, bu as NodeTypeHumanAction, bv as NodeTypeIntegration, bw as NodeTypeLogic, bx as NodeTypeLoop, by as NodeTypeParallel, bz as NodeTypeSubflow, bA as NodeTypeTimer, bB as NodeTypeTrigger, bC as ParallelNodeSubType, bD as ParallelNodeSubTypes, bE as PersistenceType, bF as PersistenceTypeEphemeral, bG as PersistenceTypePermanent, bH as RetryConfig, bI as RetryNodeRequest, bJ as RuleLevel, bK as RuleLevelError, bL as RuleLevelInfo, bM as RuleLevelWarning, bN as TimeoutAction, bO as TimeoutActionAlt, bP as TimeoutActionFail, bQ as TimeoutActionRetry, bR as TimeoutActionSkip, bS as TimeoutConfig, bT as TimerNodeSubType, bU as TimerNodeSubTypes, bV as TriggerNodeSubType, bW as TriggerNodeSubTypes, bX as UpdateInstanceNodeMetadataRequest, bY as UpdateInstanceStatusRequest, bZ as UpdateWorkflowDefinitionRequest, b_ as WorkflowDefinitionInfo, b as WorkflowDefinitionResponse, b$ as WorkflowEdge, c0 as WorkflowEdgeTypeOptionTS, c1 as WorkflowEdgeTypeTS, c2 as WorkflowEdgeTypes, c3 as WorkflowInstanceExecuteNodeLeanRequest, c4 as WorkflowInstanceExecuteNodeRequest, c as WorkflowInstanceResponse, c5 as WorkflowInstanceResumeNodeRequest, c6 as WorkflowMetadata, c7 as WorkflowNode, c8 as WorkflowNodeSubTypeTS, c9 as WorkflowNodeTypeOptionTS, ca as WorkflowNodeTypeTS, cb as WorkflowNodeTypes, cc as WorkflowPermissions, cd as WorkflowRule, ce as WorkflowType, cf as WorkflowTypeAgent, cg as WorkflowTypeChat, ch as WorkflowTypeDefinition, ci as WorkflowTypeDocument, cj as WorkflowTypeEntity, ck as WorkflowTypeOptionTS, cl as WorkflowTypeProductivity, cm as WorkflowTypeTS, cn as WorkflowTypes, co as WorkflowVariables, cp as nodeDefinitions, cq as nodeSchemas } from './workflow-NznrS9yA.mjs';
|
|
5
|
+
export { WorkflowDefinitionCreate, WorkflowDefinitionCreated, WorkflowDefinitionDelete, WorkflowDefinitionDeleted, WorkflowDefinitionGet, WorkflowDefinitionGetByTitle, WorkflowDefinitionGetServer, WorkflowDefinitionList, WorkflowDefinitionUpdate, WorkflowDefinitionUpdated, WorkflowExecutionCompleted, WorkflowExecutionFailed, WorkflowExecutionStarted, WorkflowInstanceCreate, WorkflowInstanceExecuteNode, WorkflowInstanceExecuteNodeLean, WorkflowInstanceExecuteNodeLeanServer, WorkflowInstanceExecuteNodeServer, WorkflowInstanceGet, WorkflowInstanceGetByStateVariable, WorkflowInstanceList, WorkflowInstanceResumeNode, WorkflowInstanceResumeNodeServer, WorkflowInstanceUpdate, WorkflowInstanceUpdateNodeMetadata, WorkflowInstanceUpdated, WorkflowScheduleCreate, WorkflowScheduleDelete, WorkflowScheduleList, WorkflowSchedulePause, WorkflowScheduleResume, WorkflowScheduleUpdate, WorkflowTemplateGet, WorkflowTemplateInstantiate, WorkflowTemplateList, WorkflowTriggerFired, WorkflowTriggerPause, WorkflowTriggerRegister, WorkflowTriggerResume, WorkflowTriggerStatus } from './models/index.mjs';
|
|
6
|
+
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
7
|
+
export { GetWorkflowTemplateResponse, ListWorkflowTemplatesResponse, WorkflowTemplate, createWorkflowApi, createWorkflowInstanceApi, deleteWorkflowApi, executeWorkflowNodeApi, getWorkflowApi, getWorkflowInstanceApi, getWorkflowTemplateApi, instantiateWorkflowTemplateApi, listWorkflowInstancesApi, listWorkflowTemplatesApi, listWorkflowsApi, resumeWorkflowNodeApi, retryWorkflowNodeApi, updateWorkflowApi, updateWorkflowInstanceStatusApi } from './api/index.mjs';
|
|
8
|
+
export { UseWorkflowsOptions, useWorkflowInstances, useWorkflowTemplates, useWorkflows } from './hooks/index.mjs';
|
|
9
|
+
import '@elqnt/api-client';
|
|
6
10
|
|
|
7
11
|
interface DynamicSchemaFormUIComponents {
|
|
8
12
|
Input: React.ComponentType<{
|
|
@@ -255,7 +259,7 @@ interface WorkflowDefinitionState {
|
|
|
255
259
|
interface WorkflowDefinitionSelector {
|
|
256
260
|
workflowDefinition: WorkflowDefinitionState;
|
|
257
261
|
}
|
|
258
|
-
declare const workflowDefinitionReducer:
|
|
262
|
+
declare const workflowDefinitionReducer: _reduxjs_toolkit.Reducer<WorkflowDefinitionState>;
|
|
259
263
|
|
|
260
264
|
interface WorkflowInstanceState {
|
|
261
265
|
instances: Record<string, WorkflowInstance>;
|
|
@@ -267,6 +271,6 @@ interface WorkflowInstanceState {
|
|
|
267
271
|
interface WorkflowInstanceSelector {
|
|
268
272
|
workflowInstance: WorkflowInstanceState;
|
|
269
273
|
}
|
|
270
|
-
declare const workflowInstanceReducer:
|
|
274
|
+
declare const workflowInstanceReducer: _reduxjs_toolkit.Reducer<WorkflowInstanceState>;
|
|
271
275
|
|
|
272
276
|
export { DynamicSchemaForm, type DynamicSchemaFormProps, type DynamicSchemaFormUIComponents, SchemaBuilder, type SchemaBuilderProps, type SchemaBuilderUIComponents, WorkflowDefinition, type WorkflowDefinitionSelector, type WorkflowDefinitionState, WorkflowInstance, type WorkflowInstanceSelector, type WorkflowInstanceState, type WorkflowVariable, workflowDefinitionReducer, workflowInstanceReducer };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { JSONSchema } from '@elqnt/types';
|
|
3
|
-
import {
|
|
4
|
-
export {
|
|
5
|
-
|
|
3
|
+
import { a as WorkflowDefinition, W as WorkflowInstance } from './workflow-NznrS9yA.js';
|
|
4
|
+
export { A as AccountingNodeSubType, e as AccountingNodeSubTypes, f as ActionNodeSubType, g as ActionNodeSubTypes, h as AgentNodeSubType, i as AgentNodeSubTypes, C as CacheConfig, j as CreateWorkflowDefinitionRequest, k as CreateWorkflowInstanceRequest, D as DataNodeSubType, l as DataNodeSubTypes, m as DelayNodeSubType, n as DelayNodeSubTypes, o as DeleteWorkflowDefinitionRequest, E as EdgeState, p as EdgeStatus, q as EdgeStatusCompleted, r as EdgeStatusPending, s as EdgeStatusSkipped, t as EdgeType, u as EdgeTypeCompensation, v as EdgeTypeConditional, w as EdgeTypeDefault, x as EdgeTypeDefinition, y as EdgeTypeError, z as EdgeTypeLoopBack, B as EdgeTypeMerge, F as EdgeTypeNormal, G as EdgeTypeParallel, H as EdgeTypeTimeout, I as ExecutionConfig, J as ExecutionContext, K as ExecutionError, M as ExecutionPathEntry, N as ExpressionConfig, O as ExpressionType, P as ExpressionTypeDSL, Q as ExpressionTypeFilter, R as ExpressionTypeJavaScript, S as ExpressionTypeRules, T as ExpressionTypeTemplate, U as GetInstanceByStateVariableRequest, V as GetWorkflowDefinitionByTitleRequest, X as GetWorkflowDefinitionRequest, Y as GetWorkflowInstanceRequest, Z as HumanActionNodeSubType, _ as HumanActionNodeSubTypes, $ as InstanceState, a0 as InstanceStatus, a1 as InstanceStatusCompleted, a2 as InstanceStatusFailed, a3 as InstanceStatusNew, a4 as InstanceStatusPaused, a5 as InstanceStatusRunning, a6 as InstanceStatusWaiting, a7 as Intent, a8 as ListInstancesOptions, a9 as ListWorkflowDefinitionsRequest, d as ListWorkflowDefinitionsResponse, aa as ListWorkflowInstancesRequest, L as ListWorkflowInstancesResponse, ab as LogicNodeSubType, ac as LogicNodeSubTypes, ad as LogicPath, ae as LoopNodeSubType, af as LoopNodeSubTypes, ag as Metadata, ah as NodeCategory, ai as NodeConfig, aj as NodeDefinition, ak as NodeInput, al as NodeInstance, am as NodeOutput, an as NodeSettings, ao as NodeState, ap as NodeStatus, aq as NodeStatusCompleted, ar as NodeStatusFailed, as as NodeStatusPending, at as NodeStatusRunning, au as NodeStatusSkipped, av as NodeStatusWaiting, aw as NodeSubType, ax as NodeSubTypeActionApiCall, ay as NodeSubTypeActionAssignSLAPolicy, az as NodeSubTypeActionCSATSurvey, aA as NodeSubTypeActionChangeSLAStatus, aB as NodeSubTypeActionCreateEntityRecord, aC as NodeSubTypeActionDeleteEntityRecord, aD as NodeSubTypeActionDocumentExtraction, aE as NodeSubTypeActionEscalateSLA, aF as NodeSubTypeActionGenerateDocument, aG as NodeSubTypeActionMergeEntityRecords, aH as NodeSubTypeActionNatsRequest, aI as NodeSubTypeActionProcessPayment, aJ as NodeSubTypeActionQueryEntityRecords, aK as NodeSubTypeActionSendEmail, aL as NodeSubTypeActionSendSMS, aM as NodeSubTypeActionSetVariables, aN as NodeSubTypeActionUpdateEntityRecord, aO as NodeSubTypeAgentApiIntegration, aP as NodeSubTypeAgentChat, aQ as NodeSubTypeAgentClientApiCall, aR as NodeSubTypeAgentCustomResponse, aS as NodeSubTypeAgentIntentDetector, aT as NodeSubTypeAgentKnowledgeGraph, aU as NodeSubTypeAgentOpenTicket, aV as NodeSubTypeAgentStructuredOutput, aW as NodeSubTypeAgentTransferToHuman, aX as NodeSubTypeDataCalculate, aY as NodeSubTypeDataFilter, aZ as NodeSubTypeDataMap, a_ as NodeSubTypeDataValidate, a$ as NodeSubTypeDelay, b0 as NodeSubTypeHumanActionApproval, b1 as NodeSubTypeHumanActionAssignment, b2 as NodeSubTypeHumanActionDataEntry, b3 as NodeSubTypeHumanActionReview, b4 as NodeSubTypeInfo, b5 as NodeSubTypeLogicFor, b6 as NodeSubTypeLogicIf, b7 as NodeSubTypeLogicParallel, b8 as NodeSubTypeLogicSwitch, b9 as NodeSubTypeLoopData, ba as NodeSubTypeTS, bb as NodeSubTypeTimerBusinessHours, bc as NodeSubTypeTimerDelay, bd as NodeSubTypeTimerSchedule, be as NodeSubTypeTriggerEntityRecordCreated, bf as NodeSubTypeTriggerEntityRecordDeleted, bg as NodeSubTypeTriggerEntityRecordUpdated, bh as NodeSubTypeTriggerEscalation, bi as NodeSubTypeTriggerSLABreach, bj as NodeSubTypeTriggerSLAWarning, bk as NodeSubTypeTriggerStart, bl as NodeSubTypeTriggerWebhookReceived, bm as NodeType, bn as NodeTypeAccounting, bo as NodeTypeAction, bp as NodeTypeAgent, bq as NodeTypeCustom, br as NodeTypeData, bs as NodeTypeDelay, bt as NodeTypeDocumentExtraction, bu as NodeTypeHumanAction, bv as NodeTypeIntegration, bw as NodeTypeLogic, bx as NodeTypeLoop, by as NodeTypeParallel, bz as NodeTypeSubflow, bA as NodeTypeTimer, bB as NodeTypeTrigger, bC as ParallelNodeSubType, bD as ParallelNodeSubTypes, bE as PersistenceType, bF as PersistenceTypeEphemeral, bG as PersistenceTypePermanent, bH as RetryConfig, bI as RetryNodeRequest, bJ as RuleLevel, bK as RuleLevelError, bL as RuleLevelInfo, bM as RuleLevelWarning, bN as TimeoutAction, bO as TimeoutActionAlt, bP as TimeoutActionFail, bQ as TimeoutActionRetry, bR as TimeoutActionSkip, bS as TimeoutConfig, bT as TimerNodeSubType, bU as TimerNodeSubTypes, bV as TriggerNodeSubType, bW as TriggerNodeSubTypes, bX as UpdateInstanceNodeMetadataRequest, bY as UpdateInstanceStatusRequest, bZ as UpdateWorkflowDefinitionRequest, b_ as WorkflowDefinitionInfo, b as WorkflowDefinitionResponse, b$ as WorkflowEdge, c0 as WorkflowEdgeTypeOptionTS, c1 as WorkflowEdgeTypeTS, c2 as WorkflowEdgeTypes, c3 as WorkflowInstanceExecuteNodeLeanRequest, c4 as WorkflowInstanceExecuteNodeRequest, c as WorkflowInstanceResponse, c5 as WorkflowInstanceResumeNodeRequest, c6 as WorkflowMetadata, c7 as WorkflowNode, c8 as WorkflowNodeSubTypeTS, c9 as WorkflowNodeTypeOptionTS, ca as WorkflowNodeTypeTS, cb as WorkflowNodeTypes, cc as WorkflowPermissions, cd as WorkflowRule, ce as WorkflowType, cf as WorkflowTypeAgent, cg as WorkflowTypeChat, ch as WorkflowTypeDefinition, ci as WorkflowTypeDocument, cj as WorkflowTypeEntity, ck as WorkflowTypeOptionTS, cl as WorkflowTypeProductivity, cm as WorkflowTypeTS, cn as WorkflowTypes, co as WorkflowVariables, cp as nodeDefinitions, cq as nodeSchemas } from './workflow-NznrS9yA.js';
|
|
5
|
+
export { WorkflowDefinitionCreate, WorkflowDefinitionCreated, WorkflowDefinitionDelete, WorkflowDefinitionDeleted, WorkflowDefinitionGet, WorkflowDefinitionGetByTitle, WorkflowDefinitionGetServer, WorkflowDefinitionList, WorkflowDefinitionUpdate, WorkflowDefinitionUpdated, WorkflowExecutionCompleted, WorkflowExecutionFailed, WorkflowExecutionStarted, WorkflowInstanceCreate, WorkflowInstanceExecuteNode, WorkflowInstanceExecuteNodeLean, WorkflowInstanceExecuteNodeLeanServer, WorkflowInstanceExecuteNodeServer, WorkflowInstanceGet, WorkflowInstanceGetByStateVariable, WorkflowInstanceList, WorkflowInstanceResumeNode, WorkflowInstanceResumeNodeServer, WorkflowInstanceUpdate, WorkflowInstanceUpdateNodeMetadata, WorkflowInstanceUpdated, WorkflowScheduleCreate, WorkflowScheduleDelete, WorkflowScheduleList, WorkflowSchedulePause, WorkflowScheduleResume, WorkflowScheduleUpdate, WorkflowTemplateGet, WorkflowTemplateInstantiate, WorkflowTemplateList, WorkflowTriggerFired, WorkflowTriggerPause, WorkflowTriggerRegister, WorkflowTriggerResume, WorkflowTriggerStatus } from './models/index.js';
|
|
6
|
+
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
7
|
+
export { GetWorkflowTemplateResponse, ListWorkflowTemplatesResponse, WorkflowTemplate, createWorkflowApi, createWorkflowInstanceApi, deleteWorkflowApi, executeWorkflowNodeApi, getWorkflowApi, getWorkflowInstanceApi, getWorkflowTemplateApi, instantiateWorkflowTemplateApi, listWorkflowInstancesApi, listWorkflowTemplatesApi, listWorkflowsApi, resumeWorkflowNodeApi, retryWorkflowNodeApi, updateWorkflowApi, updateWorkflowInstanceStatusApi } from './api/index.js';
|
|
8
|
+
export { UseWorkflowsOptions, useWorkflowInstances, useWorkflowTemplates, useWorkflows } from './hooks/index.js';
|
|
9
|
+
import '@elqnt/api-client';
|
|
6
10
|
|
|
7
11
|
interface DynamicSchemaFormUIComponents {
|
|
8
12
|
Input: React.ComponentType<{
|
|
@@ -255,7 +259,7 @@ interface WorkflowDefinitionState {
|
|
|
255
259
|
interface WorkflowDefinitionSelector {
|
|
256
260
|
workflowDefinition: WorkflowDefinitionState;
|
|
257
261
|
}
|
|
258
|
-
declare const workflowDefinitionReducer:
|
|
262
|
+
declare const workflowDefinitionReducer: _reduxjs_toolkit.Reducer<WorkflowDefinitionState>;
|
|
259
263
|
|
|
260
264
|
interface WorkflowInstanceState {
|
|
261
265
|
instances: Record<string, WorkflowInstance>;
|
|
@@ -267,6 +271,6 @@ interface WorkflowInstanceState {
|
|
|
267
271
|
interface WorkflowInstanceSelector {
|
|
268
272
|
workflowInstance: WorkflowInstanceState;
|
|
269
273
|
}
|
|
270
|
-
declare const workflowInstanceReducer:
|
|
274
|
+
declare const workflowInstanceReducer: _reduxjs_toolkit.Reducer<WorkflowInstanceState>;
|
|
271
275
|
|
|
272
276
|
export { DynamicSchemaForm, type DynamicSchemaFormProps, type DynamicSchemaFormUIComponents, SchemaBuilder, type SchemaBuilderProps, type SchemaBuilderUIComponents, WorkflowDefinition, type WorkflowDefinitionSelector, type WorkflowDefinitionState, WorkflowInstance, type WorkflowInstanceSelector, type WorkflowInstanceState, type WorkflowVariable, workflowDefinitionReducer, workflowInstanceReducer };
|
package/dist/index.js
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
var _chunkF5G2ALFSjs = require('./chunk-F5G2ALFS.js');
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
var _chunkJES2EBNOjs = require('./chunk-JES2EBNO.js');
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
|
|
7
29
|
|
|
8
30
|
|
|
@@ -4342,5 +4364,23 @@ var WorkflowTypes = {
|
|
|
4342
4364
|
|
|
4343
4365
|
|
|
4344
4366
|
|
|
4345
|
-
exports.AccountingNodeSubTypes = AccountingNodeSubTypes; exports.ActionNodeSubTypes = ActionNodeSubTypes; exports.AgentNodeSubTypes = AgentNodeSubTypes; exports.DataNodeSubTypes = DataNodeSubTypes; exports.DelayNodeSubTypes = DelayNodeSubTypes; exports.DynamicSchemaForm = DynamicSchemaForm; exports.EdgeStatusCompleted = _chunkH24IF5AAjs.EdgeStatusCompleted; exports.EdgeStatusPending = _chunkH24IF5AAjs.EdgeStatusPending; exports.EdgeStatusSkipped = _chunkH24IF5AAjs.EdgeStatusSkipped; exports.EdgeTypeCompensation = _chunkH24IF5AAjs.EdgeTypeCompensation; exports.EdgeTypeConditional = _chunkH24IF5AAjs.EdgeTypeConditional; exports.EdgeTypeDefault = _chunkH24IF5AAjs.EdgeTypeDefault; exports.EdgeTypeError = _chunkH24IF5AAjs.EdgeTypeError; exports.EdgeTypeLoopBack = _chunkH24IF5AAjs.EdgeTypeLoopBack; exports.EdgeTypeMerge = _chunkH24IF5AAjs.EdgeTypeMerge; exports.EdgeTypeNormal = _chunkH24IF5AAjs.EdgeTypeNormal; exports.EdgeTypeParallel = _chunkH24IF5AAjs.EdgeTypeParallel; exports.EdgeTypeTimeout = _chunkH24IF5AAjs.EdgeTypeTimeout; exports.ExpressionTypeDSL = _chunkH24IF5AAjs.ExpressionTypeDSL; exports.ExpressionTypeFilter = _chunkH24IF5AAjs.ExpressionTypeFilter; exports.ExpressionTypeJavaScript = _chunkH24IF5AAjs.ExpressionTypeJavaScript; exports.ExpressionTypeRules = _chunkH24IF5AAjs.ExpressionTypeRules; exports.ExpressionTypeTemplate = _chunkH24IF5AAjs.ExpressionTypeTemplate; exports.HumanActionNodeSubTypes = HumanActionNodeSubTypes; exports.InstanceStatusCompleted = _chunkH24IF5AAjs.InstanceStatusCompleted; exports.InstanceStatusFailed = _chunkH24IF5AAjs.InstanceStatusFailed; exports.InstanceStatusNew = _chunkH24IF5AAjs.InstanceStatusNew; exports.InstanceStatusPaused = _chunkH24IF5AAjs.InstanceStatusPaused; exports.InstanceStatusRunning = _chunkH24IF5AAjs.InstanceStatusRunning; exports.InstanceStatusWaiting = _chunkH24IF5AAjs.InstanceStatusWaiting; exports.LogicNodeSubTypes = LogicNodeSubTypes; exports.LoopNodeSubTypes = LoopNodeSubTypes; exports.NodeStatusCompleted = _chunkH24IF5AAjs.NodeStatusCompleted; exports.NodeStatusFailed = _chunkH24IF5AAjs.NodeStatusFailed; exports.NodeStatusPending = _chunkH24IF5AAjs.NodeStatusPending; exports.NodeStatusRunning = _chunkH24IF5AAjs.NodeStatusRunning; exports.NodeStatusSkipped = _chunkH24IF5AAjs.NodeStatusSkipped; exports.NodeStatusWaiting = _chunkH24IF5AAjs.NodeStatusWaiting; exports.NodeSubTypeActionApiCall = _chunkH24IF5AAjs.NodeSubTypeActionApiCall; exports.NodeSubTypeActionAssignSLAPolicy = _chunkH24IF5AAjs.NodeSubTypeActionAssignSLAPolicy; exports.NodeSubTypeActionCSATSurvey = _chunkH24IF5AAjs.NodeSubTypeActionCSATSurvey; exports.NodeSubTypeActionChangeSLAStatus = _chunkH24IF5AAjs.NodeSubTypeActionChangeSLAStatus; exports.NodeSubTypeActionCreateEntityRecord = _chunkH24IF5AAjs.NodeSubTypeActionCreateEntityRecord; exports.NodeSubTypeActionDeleteEntityRecord = _chunkH24IF5AAjs.NodeSubTypeActionDeleteEntityRecord; exports.NodeSubTypeActionDocumentExtraction = _chunkH24IF5AAjs.NodeSubTypeActionDocumentExtraction; exports.NodeSubTypeActionEscalateSLA = _chunkH24IF5AAjs.NodeSubTypeActionEscalateSLA; exports.NodeSubTypeActionGenerateDocument = _chunkH24IF5AAjs.NodeSubTypeActionGenerateDocument; exports.NodeSubTypeActionMergeEntityRecords = _chunkH24IF5AAjs.NodeSubTypeActionMergeEntityRecords; exports.NodeSubTypeActionNatsRequest = _chunkH24IF5AAjs.NodeSubTypeActionNatsRequest; exports.NodeSubTypeActionProcessPayment = _chunkH24IF5AAjs.NodeSubTypeActionProcessPayment; exports.NodeSubTypeActionQueryEntityRecords = _chunkH24IF5AAjs.NodeSubTypeActionQueryEntityRecords; exports.NodeSubTypeActionSendEmail = _chunkH24IF5AAjs.NodeSubTypeActionSendEmail; exports.NodeSubTypeActionSendSMS = _chunkH24IF5AAjs.NodeSubTypeActionSendSMS; exports.NodeSubTypeActionSetVariables = _chunkH24IF5AAjs.NodeSubTypeActionSetVariables; exports.NodeSubTypeActionUpdateEntityRecord = _chunkH24IF5AAjs.NodeSubTypeActionUpdateEntityRecord; exports.NodeSubTypeAgentApiIntegration = _chunkH24IF5AAjs.NodeSubTypeAgentApiIntegration; exports.NodeSubTypeAgentChat = _chunkH24IF5AAjs.NodeSubTypeAgentChat; exports.NodeSubTypeAgentClientApiCall = _chunkH24IF5AAjs.NodeSubTypeAgentClientApiCall; exports.NodeSubTypeAgentCustomResponse = _chunkH24IF5AAjs.NodeSubTypeAgentCustomResponse; exports.NodeSubTypeAgentIntentDetector = _chunkH24IF5AAjs.NodeSubTypeAgentIntentDetector; exports.NodeSubTypeAgentKnowledgeGraph = _chunkH24IF5AAjs.NodeSubTypeAgentKnowledgeGraph; exports.NodeSubTypeAgentOpenTicket = _chunkH24IF5AAjs.NodeSubTypeAgentOpenTicket; exports.NodeSubTypeAgentStructuredOutput = _chunkH24IF5AAjs.NodeSubTypeAgentStructuredOutput; exports.NodeSubTypeAgentTransferToHuman = _chunkH24IF5AAjs.NodeSubTypeAgentTransferToHuman; exports.NodeSubTypeDataCalculate = _chunkH24IF5AAjs.NodeSubTypeDataCalculate; exports.NodeSubTypeDataFilter = _chunkH24IF5AAjs.NodeSubTypeDataFilter; exports.NodeSubTypeDataMap = _chunkH24IF5AAjs.NodeSubTypeDataMap; exports.NodeSubTypeDataValidate = _chunkH24IF5AAjs.NodeSubTypeDataValidate; exports.NodeSubTypeDelay = _chunkH24IF5AAjs.NodeSubTypeDelay; exports.NodeSubTypeHumanActionApproval = _chunkH24IF5AAjs.NodeSubTypeHumanActionApproval; exports.NodeSubTypeHumanActionAssignment = _chunkH24IF5AAjs.NodeSubTypeHumanActionAssignment; exports.NodeSubTypeHumanActionDataEntry = _chunkH24IF5AAjs.NodeSubTypeHumanActionDataEntry; exports.NodeSubTypeHumanActionReview = _chunkH24IF5AAjs.NodeSubTypeHumanActionReview; exports.NodeSubTypeLogicFor = _chunkH24IF5AAjs.NodeSubTypeLogicFor; exports.NodeSubTypeLogicIf = _chunkH24IF5AAjs.NodeSubTypeLogicIf; exports.NodeSubTypeLogicParallel = _chunkH24IF5AAjs.NodeSubTypeLogicParallel; exports.NodeSubTypeLogicSwitch = _chunkH24IF5AAjs.NodeSubTypeLogicSwitch; exports.NodeSubTypeLoopData = _chunkH24IF5AAjs.NodeSubTypeLoopData; exports.NodeSubTypeTimerBusinessHours = _chunkH24IF5AAjs.NodeSubTypeTimerBusinessHours; exports.NodeSubTypeTimerDelay = _chunkH24IF5AAjs.NodeSubTypeTimerDelay; exports.NodeSubTypeTimerSchedule = _chunkH24IF5AAjs.NodeSubTypeTimerSchedule; exports.NodeSubTypeTriggerEntityRecordCreated = _chunkH24IF5AAjs.NodeSubTypeTriggerEntityRecordCreated; exports.NodeSubTypeTriggerEntityRecordDeleted = _chunkH24IF5AAjs.NodeSubTypeTriggerEntityRecordDeleted; exports.NodeSubTypeTriggerEntityRecordUpdated = _chunkH24IF5AAjs.NodeSubTypeTriggerEntityRecordUpdated; exports.NodeSubTypeTriggerEscalation = _chunkH24IF5AAjs.NodeSubTypeTriggerEscalation; exports.NodeSubTypeTriggerSLABreach = _chunkH24IF5AAjs.NodeSubTypeTriggerSLABreach; exports.NodeSubTypeTriggerSLAWarning = _chunkH24IF5AAjs.NodeSubTypeTriggerSLAWarning; exports.NodeSubTypeTriggerStart = _chunkH24IF5AAjs.NodeSubTypeTriggerStart; exports.NodeSubTypeTriggerWebhookReceived = _chunkH24IF5AAjs.NodeSubTypeTriggerWebhookReceived; exports.NodeTypeAccounting = _chunkH24IF5AAjs.NodeTypeAccounting; exports.NodeTypeAction = _chunkH24IF5AAjs.NodeTypeAction; exports.NodeTypeAgent = _chunkH24IF5AAjs.NodeTypeAgent; exports.NodeTypeCustom = _chunkH24IF5AAjs.NodeTypeCustom; exports.NodeTypeData = _chunkH24IF5AAjs.NodeTypeData; exports.NodeTypeDelay = _chunkH24IF5AAjs.NodeTypeDelay; exports.NodeTypeDocumentExtraction = _chunkH24IF5AAjs.NodeTypeDocumentExtraction; exports.NodeTypeHumanAction = _chunkH24IF5AAjs.NodeTypeHumanAction; exports.NodeTypeIntegration = _chunkH24IF5AAjs.NodeTypeIntegration; exports.NodeTypeLogic = _chunkH24IF5AAjs.NodeTypeLogic; exports.NodeTypeLoop = _chunkH24IF5AAjs.NodeTypeLoop; exports.NodeTypeParallel = _chunkH24IF5AAjs.NodeTypeParallel; exports.NodeTypeSubflow = _chunkH24IF5AAjs.NodeTypeSubflow; exports.NodeTypeTimer = _chunkH24IF5AAjs.NodeTypeTimer; exports.NodeTypeTrigger = _chunkH24IF5AAjs.NodeTypeTrigger; exports.ParallelNodeSubTypes = ParallelNodeSubTypes; exports.PersistenceTypeEphemeral = _chunkH24IF5AAjs.PersistenceTypeEphemeral; exports.PersistenceTypePermanent = _chunkH24IF5AAjs.PersistenceTypePermanent; exports.RuleLevelError = _chunkH24IF5AAjs.RuleLevelError; exports.RuleLevelInfo = _chunkH24IF5AAjs.RuleLevelInfo; exports.RuleLevelWarning = _chunkH24IF5AAjs.RuleLevelWarning; exports.SchemaBuilder = SchemaBuilder; exports.TimeoutActionAlt = _chunkH24IF5AAjs.TimeoutActionAlt; exports.TimeoutActionFail = _chunkH24IF5AAjs.TimeoutActionFail; exports.TimeoutActionRetry = _chunkH24IF5AAjs.TimeoutActionRetry; exports.TimeoutActionSkip = _chunkH24IF5AAjs.TimeoutActionSkip; exports.TimerNodeSubTypes = TimerNodeSubTypes; exports.TriggerNodeSubTypes = TriggerNodeSubTypes; exports.WorkflowDefinitionCreate = _chunkH24IF5AAjs.WorkflowDefinitionCreate; exports.WorkflowDefinitionCreated = _chunkH24IF5AAjs.WorkflowDefinitionCreated; exports.WorkflowDefinitionDelete = _chunkH24IF5AAjs.WorkflowDefinitionDelete; exports.WorkflowDefinitionDeleted = _chunkH24IF5AAjs.WorkflowDefinitionDeleted; exports.WorkflowDefinitionGet = _chunkH24IF5AAjs.WorkflowDefinitionGet; exports.WorkflowDefinitionGetByTitle = _chunkH24IF5AAjs.WorkflowDefinitionGetByTitle; exports.WorkflowDefinitionGetServer = _chunkH24IF5AAjs.WorkflowDefinitionGetServer; exports.WorkflowDefinitionList = _chunkH24IF5AAjs.WorkflowDefinitionList; exports.WorkflowDefinitionUpdate = _chunkH24IF5AAjs.WorkflowDefinitionUpdate; exports.WorkflowDefinitionUpdated = _chunkH24IF5AAjs.WorkflowDefinitionUpdated; exports.WorkflowEdgeTypes = WorkflowEdgeTypes; exports.WorkflowExecutionCompleted = _chunkH24IF5AAjs.WorkflowExecutionCompleted; exports.WorkflowExecutionFailed = _chunkH24IF5AAjs.WorkflowExecutionFailed; exports.WorkflowExecutionStarted = _chunkH24IF5AAjs.WorkflowExecutionStarted; exports.WorkflowInstanceCreate = _chunkH24IF5AAjs.WorkflowInstanceCreate; exports.WorkflowInstanceExecuteNode = _chunkH24IF5AAjs.WorkflowInstanceExecuteNode; exports.WorkflowInstanceExecuteNodeLean = _chunkH24IF5AAjs.WorkflowInstanceExecuteNodeLean; exports.WorkflowInstanceExecuteNodeLeanServer = _chunkH24IF5AAjs.WorkflowInstanceExecuteNodeLeanServer; exports.WorkflowInstanceExecuteNodeServer = _chunkH24IF5AAjs.WorkflowInstanceExecuteNodeServer; exports.WorkflowInstanceGet = _chunkH24IF5AAjs.WorkflowInstanceGet; exports.WorkflowInstanceGetByStateVariable = _chunkH24IF5AAjs.WorkflowInstanceGetByStateVariable; exports.WorkflowInstanceList = _chunkH24IF5AAjs.WorkflowInstanceList; exports.WorkflowInstanceResumeNode = _chunkH24IF5AAjs.WorkflowInstanceResumeNode; exports.WorkflowInstanceResumeNodeServer = _chunkH24IF5AAjs.WorkflowInstanceResumeNodeServer; exports.WorkflowInstanceUpdate = _chunkH24IF5AAjs.WorkflowInstanceUpdate; exports.WorkflowInstanceUpdateNodeMetadata = _chunkH24IF5AAjs.WorkflowInstanceUpdateNodeMetadata; exports.WorkflowInstanceUpdated = _chunkH24IF5AAjs.WorkflowInstanceUpdated; exports.WorkflowNodeTypes = WorkflowNodeTypes; exports.WorkflowScheduleCreate = _chunkH24IF5AAjs.WorkflowScheduleCreate; exports.WorkflowScheduleDelete = _chunkH24IF5AAjs.WorkflowScheduleDelete; exports.WorkflowScheduleList = _chunkH24IF5AAjs.WorkflowScheduleList; exports.WorkflowSchedulePause = _chunkH24IF5AAjs.WorkflowSchedulePause; exports.WorkflowScheduleResume = _chunkH24IF5AAjs.WorkflowScheduleResume; exports.WorkflowScheduleUpdate = _chunkH24IF5AAjs.WorkflowScheduleUpdate; exports.WorkflowTemplateGet = _chunkH24IF5AAjs.WorkflowTemplateGet; exports.WorkflowTemplateInstantiate = _chunkH24IF5AAjs.WorkflowTemplateInstantiate; exports.WorkflowTemplateList = _chunkH24IF5AAjs.WorkflowTemplateList; exports.WorkflowTriggerFired = _chunkH24IF5AAjs.WorkflowTriggerFired; exports.WorkflowTriggerPause = _chunkH24IF5AAjs.WorkflowTriggerPause; exports.WorkflowTriggerRegister = _chunkH24IF5AAjs.WorkflowTriggerRegister; exports.WorkflowTriggerResume = _chunkH24IF5AAjs.WorkflowTriggerResume; exports.WorkflowTriggerStatus = _chunkH24IF5AAjs.WorkflowTriggerStatus; exports.WorkflowTypeAgent = _chunkH24IF5AAjs.WorkflowTypeAgent; exports.WorkflowTypeChat = _chunkH24IF5AAjs.WorkflowTypeChat; exports.WorkflowTypeDocument = _chunkH24IF5AAjs.WorkflowTypeDocument; exports.WorkflowTypeEntity = _chunkH24IF5AAjs.WorkflowTypeEntity; exports.WorkflowTypeProductivity = _chunkH24IF5AAjs.WorkflowTypeProductivity; exports.WorkflowTypes = WorkflowTypes; exports.nodeDefinitions = nodeDefinitions; exports.nodeSchemas = nodeSchemas; exports.workflowDefinitionReducer = workflowDefinitionReducer; exports.workflowInstanceReducer = workflowInstanceReducer;
|
|
4367
|
+
|
|
4368
|
+
|
|
4369
|
+
|
|
4370
|
+
|
|
4371
|
+
|
|
4372
|
+
|
|
4373
|
+
|
|
4374
|
+
|
|
4375
|
+
|
|
4376
|
+
|
|
4377
|
+
|
|
4378
|
+
|
|
4379
|
+
|
|
4380
|
+
|
|
4381
|
+
|
|
4382
|
+
|
|
4383
|
+
|
|
4384
|
+
|
|
4385
|
+
exports.AccountingNodeSubTypes = AccountingNodeSubTypes; exports.ActionNodeSubTypes = ActionNodeSubTypes; exports.AgentNodeSubTypes = AgentNodeSubTypes; exports.DataNodeSubTypes = DataNodeSubTypes; exports.DelayNodeSubTypes = DelayNodeSubTypes; exports.DynamicSchemaForm = DynamicSchemaForm; exports.EdgeStatusCompleted = _chunkH24IF5AAjs.EdgeStatusCompleted; exports.EdgeStatusPending = _chunkH24IF5AAjs.EdgeStatusPending; exports.EdgeStatusSkipped = _chunkH24IF5AAjs.EdgeStatusSkipped; exports.EdgeTypeCompensation = _chunkH24IF5AAjs.EdgeTypeCompensation; exports.EdgeTypeConditional = _chunkH24IF5AAjs.EdgeTypeConditional; exports.EdgeTypeDefault = _chunkH24IF5AAjs.EdgeTypeDefault; exports.EdgeTypeError = _chunkH24IF5AAjs.EdgeTypeError; exports.EdgeTypeLoopBack = _chunkH24IF5AAjs.EdgeTypeLoopBack; exports.EdgeTypeMerge = _chunkH24IF5AAjs.EdgeTypeMerge; exports.EdgeTypeNormal = _chunkH24IF5AAjs.EdgeTypeNormal; exports.EdgeTypeParallel = _chunkH24IF5AAjs.EdgeTypeParallel; exports.EdgeTypeTimeout = _chunkH24IF5AAjs.EdgeTypeTimeout; exports.ExpressionTypeDSL = _chunkH24IF5AAjs.ExpressionTypeDSL; exports.ExpressionTypeFilter = _chunkH24IF5AAjs.ExpressionTypeFilter; exports.ExpressionTypeJavaScript = _chunkH24IF5AAjs.ExpressionTypeJavaScript; exports.ExpressionTypeRules = _chunkH24IF5AAjs.ExpressionTypeRules; exports.ExpressionTypeTemplate = _chunkH24IF5AAjs.ExpressionTypeTemplate; exports.HumanActionNodeSubTypes = HumanActionNodeSubTypes; exports.InstanceStatusCompleted = _chunkH24IF5AAjs.InstanceStatusCompleted; exports.InstanceStatusFailed = _chunkH24IF5AAjs.InstanceStatusFailed; exports.InstanceStatusNew = _chunkH24IF5AAjs.InstanceStatusNew; exports.InstanceStatusPaused = _chunkH24IF5AAjs.InstanceStatusPaused; exports.InstanceStatusRunning = _chunkH24IF5AAjs.InstanceStatusRunning; exports.InstanceStatusWaiting = _chunkH24IF5AAjs.InstanceStatusWaiting; exports.LogicNodeSubTypes = LogicNodeSubTypes; exports.LoopNodeSubTypes = LoopNodeSubTypes; exports.NodeStatusCompleted = _chunkH24IF5AAjs.NodeStatusCompleted; exports.NodeStatusFailed = _chunkH24IF5AAjs.NodeStatusFailed; exports.NodeStatusPending = _chunkH24IF5AAjs.NodeStatusPending; exports.NodeStatusRunning = _chunkH24IF5AAjs.NodeStatusRunning; exports.NodeStatusSkipped = _chunkH24IF5AAjs.NodeStatusSkipped; exports.NodeStatusWaiting = _chunkH24IF5AAjs.NodeStatusWaiting; exports.NodeSubTypeActionApiCall = _chunkH24IF5AAjs.NodeSubTypeActionApiCall; exports.NodeSubTypeActionAssignSLAPolicy = _chunkH24IF5AAjs.NodeSubTypeActionAssignSLAPolicy; exports.NodeSubTypeActionCSATSurvey = _chunkH24IF5AAjs.NodeSubTypeActionCSATSurvey; exports.NodeSubTypeActionChangeSLAStatus = _chunkH24IF5AAjs.NodeSubTypeActionChangeSLAStatus; exports.NodeSubTypeActionCreateEntityRecord = _chunkH24IF5AAjs.NodeSubTypeActionCreateEntityRecord; exports.NodeSubTypeActionDeleteEntityRecord = _chunkH24IF5AAjs.NodeSubTypeActionDeleteEntityRecord; exports.NodeSubTypeActionDocumentExtraction = _chunkH24IF5AAjs.NodeSubTypeActionDocumentExtraction; exports.NodeSubTypeActionEscalateSLA = _chunkH24IF5AAjs.NodeSubTypeActionEscalateSLA; exports.NodeSubTypeActionGenerateDocument = _chunkH24IF5AAjs.NodeSubTypeActionGenerateDocument; exports.NodeSubTypeActionMergeEntityRecords = _chunkH24IF5AAjs.NodeSubTypeActionMergeEntityRecords; exports.NodeSubTypeActionNatsRequest = _chunkH24IF5AAjs.NodeSubTypeActionNatsRequest; exports.NodeSubTypeActionProcessPayment = _chunkH24IF5AAjs.NodeSubTypeActionProcessPayment; exports.NodeSubTypeActionQueryEntityRecords = _chunkH24IF5AAjs.NodeSubTypeActionQueryEntityRecords; exports.NodeSubTypeActionSendEmail = _chunkH24IF5AAjs.NodeSubTypeActionSendEmail; exports.NodeSubTypeActionSendSMS = _chunkH24IF5AAjs.NodeSubTypeActionSendSMS; exports.NodeSubTypeActionSetVariables = _chunkH24IF5AAjs.NodeSubTypeActionSetVariables; exports.NodeSubTypeActionUpdateEntityRecord = _chunkH24IF5AAjs.NodeSubTypeActionUpdateEntityRecord; exports.NodeSubTypeAgentApiIntegration = _chunkH24IF5AAjs.NodeSubTypeAgentApiIntegration; exports.NodeSubTypeAgentChat = _chunkH24IF5AAjs.NodeSubTypeAgentChat; exports.NodeSubTypeAgentClientApiCall = _chunkH24IF5AAjs.NodeSubTypeAgentClientApiCall; exports.NodeSubTypeAgentCustomResponse = _chunkH24IF5AAjs.NodeSubTypeAgentCustomResponse; exports.NodeSubTypeAgentIntentDetector = _chunkH24IF5AAjs.NodeSubTypeAgentIntentDetector; exports.NodeSubTypeAgentKnowledgeGraph = _chunkH24IF5AAjs.NodeSubTypeAgentKnowledgeGraph; exports.NodeSubTypeAgentOpenTicket = _chunkH24IF5AAjs.NodeSubTypeAgentOpenTicket; exports.NodeSubTypeAgentStructuredOutput = _chunkH24IF5AAjs.NodeSubTypeAgentStructuredOutput; exports.NodeSubTypeAgentTransferToHuman = _chunkH24IF5AAjs.NodeSubTypeAgentTransferToHuman; exports.NodeSubTypeDataCalculate = _chunkH24IF5AAjs.NodeSubTypeDataCalculate; exports.NodeSubTypeDataFilter = _chunkH24IF5AAjs.NodeSubTypeDataFilter; exports.NodeSubTypeDataMap = _chunkH24IF5AAjs.NodeSubTypeDataMap; exports.NodeSubTypeDataValidate = _chunkH24IF5AAjs.NodeSubTypeDataValidate; exports.NodeSubTypeDelay = _chunkH24IF5AAjs.NodeSubTypeDelay; exports.NodeSubTypeHumanActionApproval = _chunkH24IF5AAjs.NodeSubTypeHumanActionApproval; exports.NodeSubTypeHumanActionAssignment = _chunkH24IF5AAjs.NodeSubTypeHumanActionAssignment; exports.NodeSubTypeHumanActionDataEntry = _chunkH24IF5AAjs.NodeSubTypeHumanActionDataEntry; exports.NodeSubTypeHumanActionReview = _chunkH24IF5AAjs.NodeSubTypeHumanActionReview; exports.NodeSubTypeLogicFor = _chunkH24IF5AAjs.NodeSubTypeLogicFor; exports.NodeSubTypeLogicIf = _chunkH24IF5AAjs.NodeSubTypeLogicIf; exports.NodeSubTypeLogicParallel = _chunkH24IF5AAjs.NodeSubTypeLogicParallel; exports.NodeSubTypeLogicSwitch = _chunkH24IF5AAjs.NodeSubTypeLogicSwitch; exports.NodeSubTypeLoopData = _chunkH24IF5AAjs.NodeSubTypeLoopData; exports.NodeSubTypeTimerBusinessHours = _chunkH24IF5AAjs.NodeSubTypeTimerBusinessHours; exports.NodeSubTypeTimerDelay = _chunkH24IF5AAjs.NodeSubTypeTimerDelay; exports.NodeSubTypeTimerSchedule = _chunkH24IF5AAjs.NodeSubTypeTimerSchedule; exports.NodeSubTypeTriggerEntityRecordCreated = _chunkH24IF5AAjs.NodeSubTypeTriggerEntityRecordCreated; exports.NodeSubTypeTriggerEntityRecordDeleted = _chunkH24IF5AAjs.NodeSubTypeTriggerEntityRecordDeleted; exports.NodeSubTypeTriggerEntityRecordUpdated = _chunkH24IF5AAjs.NodeSubTypeTriggerEntityRecordUpdated; exports.NodeSubTypeTriggerEscalation = _chunkH24IF5AAjs.NodeSubTypeTriggerEscalation; exports.NodeSubTypeTriggerSLABreach = _chunkH24IF5AAjs.NodeSubTypeTriggerSLABreach; exports.NodeSubTypeTriggerSLAWarning = _chunkH24IF5AAjs.NodeSubTypeTriggerSLAWarning; exports.NodeSubTypeTriggerStart = _chunkH24IF5AAjs.NodeSubTypeTriggerStart; exports.NodeSubTypeTriggerWebhookReceived = _chunkH24IF5AAjs.NodeSubTypeTriggerWebhookReceived; exports.NodeTypeAccounting = _chunkH24IF5AAjs.NodeTypeAccounting; exports.NodeTypeAction = _chunkH24IF5AAjs.NodeTypeAction; exports.NodeTypeAgent = _chunkH24IF5AAjs.NodeTypeAgent; exports.NodeTypeCustom = _chunkH24IF5AAjs.NodeTypeCustom; exports.NodeTypeData = _chunkH24IF5AAjs.NodeTypeData; exports.NodeTypeDelay = _chunkH24IF5AAjs.NodeTypeDelay; exports.NodeTypeDocumentExtraction = _chunkH24IF5AAjs.NodeTypeDocumentExtraction; exports.NodeTypeHumanAction = _chunkH24IF5AAjs.NodeTypeHumanAction; exports.NodeTypeIntegration = _chunkH24IF5AAjs.NodeTypeIntegration; exports.NodeTypeLogic = _chunkH24IF5AAjs.NodeTypeLogic; exports.NodeTypeLoop = _chunkH24IF5AAjs.NodeTypeLoop; exports.NodeTypeParallel = _chunkH24IF5AAjs.NodeTypeParallel; exports.NodeTypeSubflow = _chunkH24IF5AAjs.NodeTypeSubflow; exports.NodeTypeTimer = _chunkH24IF5AAjs.NodeTypeTimer; exports.NodeTypeTrigger = _chunkH24IF5AAjs.NodeTypeTrigger; exports.ParallelNodeSubTypes = ParallelNodeSubTypes; exports.PersistenceTypeEphemeral = _chunkH24IF5AAjs.PersistenceTypeEphemeral; exports.PersistenceTypePermanent = _chunkH24IF5AAjs.PersistenceTypePermanent; exports.RuleLevelError = _chunkH24IF5AAjs.RuleLevelError; exports.RuleLevelInfo = _chunkH24IF5AAjs.RuleLevelInfo; exports.RuleLevelWarning = _chunkH24IF5AAjs.RuleLevelWarning; exports.SchemaBuilder = SchemaBuilder; exports.TimeoutActionAlt = _chunkH24IF5AAjs.TimeoutActionAlt; exports.TimeoutActionFail = _chunkH24IF5AAjs.TimeoutActionFail; exports.TimeoutActionRetry = _chunkH24IF5AAjs.TimeoutActionRetry; exports.TimeoutActionSkip = _chunkH24IF5AAjs.TimeoutActionSkip; exports.TimerNodeSubTypes = TimerNodeSubTypes; exports.TriggerNodeSubTypes = TriggerNodeSubTypes; exports.WorkflowDefinitionCreate = _chunkH24IF5AAjs.WorkflowDefinitionCreate; exports.WorkflowDefinitionCreated = _chunkH24IF5AAjs.WorkflowDefinitionCreated; exports.WorkflowDefinitionDelete = _chunkH24IF5AAjs.WorkflowDefinitionDelete; exports.WorkflowDefinitionDeleted = _chunkH24IF5AAjs.WorkflowDefinitionDeleted; exports.WorkflowDefinitionGet = _chunkH24IF5AAjs.WorkflowDefinitionGet; exports.WorkflowDefinitionGetByTitle = _chunkH24IF5AAjs.WorkflowDefinitionGetByTitle; exports.WorkflowDefinitionGetServer = _chunkH24IF5AAjs.WorkflowDefinitionGetServer; exports.WorkflowDefinitionList = _chunkH24IF5AAjs.WorkflowDefinitionList; exports.WorkflowDefinitionUpdate = _chunkH24IF5AAjs.WorkflowDefinitionUpdate; exports.WorkflowDefinitionUpdated = _chunkH24IF5AAjs.WorkflowDefinitionUpdated; exports.WorkflowEdgeTypes = WorkflowEdgeTypes; exports.WorkflowExecutionCompleted = _chunkH24IF5AAjs.WorkflowExecutionCompleted; exports.WorkflowExecutionFailed = _chunkH24IF5AAjs.WorkflowExecutionFailed; exports.WorkflowExecutionStarted = _chunkH24IF5AAjs.WorkflowExecutionStarted; exports.WorkflowInstanceCreate = _chunkH24IF5AAjs.WorkflowInstanceCreate; exports.WorkflowInstanceExecuteNode = _chunkH24IF5AAjs.WorkflowInstanceExecuteNode; exports.WorkflowInstanceExecuteNodeLean = _chunkH24IF5AAjs.WorkflowInstanceExecuteNodeLean; exports.WorkflowInstanceExecuteNodeLeanServer = _chunkH24IF5AAjs.WorkflowInstanceExecuteNodeLeanServer; exports.WorkflowInstanceExecuteNodeServer = _chunkH24IF5AAjs.WorkflowInstanceExecuteNodeServer; exports.WorkflowInstanceGet = _chunkH24IF5AAjs.WorkflowInstanceGet; exports.WorkflowInstanceGetByStateVariable = _chunkH24IF5AAjs.WorkflowInstanceGetByStateVariable; exports.WorkflowInstanceList = _chunkH24IF5AAjs.WorkflowInstanceList; exports.WorkflowInstanceResumeNode = _chunkH24IF5AAjs.WorkflowInstanceResumeNode; exports.WorkflowInstanceResumeNodeServer = _chunkH24IF5AAjs.WorkflowInstanceResumeNodeServer; exports.WorkflowInstanceUpdate = _chunkH24IF5AAjs.WorkflowInstanceUpdate; exports.WorkflowInstanceUpdateNodeMetadata = _chunkH24IF5AAjs.WorkflowInstanceUpdateNodeMetadata; exports.WorkflowInstanceUpdated = _chunkH24IF5AAjs.WorkflowInstanceUpdated; exports.WorkflowNodeTypes = WorkflowNodeTypes; exports.WorkflowScheduleCreate = _chunkH24IF5AAjs.WorkflowScheduleCreate; exports.WorkflowScheduleDelete = _chunkH24IF5AAjs.WorkflowScheduleDelete; exports.WorkflowScheduleList = _chunkH24IF5AAjs.WorkflowScheduleList; exports.WorkflowSchedulePause = _chunkH24IF5AAjs.WorkflowSchedulePause; exports.WorkflowScheduleResume = _chunkH24IF5AAjs.WorkflowScheduleResume; exports.WorkflowScheduleUpdate = _chunkH24IF5AAjs.WorkflowScheduleUpdate; exports.WorkflowTemplateGet = _chunkH24IF5AAjs.WorkflowTemplateGet; exports.WorkflowTemplateInstantiate = _chunkH24IF5AAjs.WorkflowTemplateInstantiate; exports.WorkflowTemplateList = _chunkH24IF5AAjs.WorkflowTemplateList; exports.WorkflowTriggerFired = _chunkH24IF5AAjs.WorkflowTriggerFired; exports.WorkflowTriggerPause = _chunkH24IF5AAjs.WorkflowTriggerPause; exports.WorkflowTriggerRegister = _chunkH24IF5AAjs.WorkflowTriggerRegister; exports.WorkflowTriggerResume = _chunkH24IF5AAjs.WorkflowTriggerResume; exports.WorkflowTriggerStatus = _chunkH24IF5AAjs.WorkflowTriggerStatus; exports.WorkflowTypeAgent = _chunkH24IF5AAjs.WorkflowTypeAgent; exports.WorkflowTypeChat = _chunkH24IF5AAjs.WorkflowTypeChat; exports.WorkflowTypeDocument = _chunkH24IF5AAjs.WorkflowTypeDocument; exports.WorkflowTypeEntity = _chunkH24IF5AAjs.WorkflowTypeEntity; exports.WorkflowTypeProductivity = _chunkH24IF5AAjs.WorkflowTypeProductivity; exports.WorkflowTypes = WorkflowTypes; exports.createWorkflowApi = _chunkJES2EBNOjs.createWorkflowApi; exports.createWorkflowInstanceApi = _chunkJES2EBNOjs.createWorkflowInstanceApi; exports.deleteWorkflowApi = _chunkJES2EBNOjs.deleteWorkflowApi; exports.executeWorkflowNodeApi = _chunkJES2EBNOjs.executeWorkflowNodeApi; exports.getWorkflowApi = _chunkJES2EBNOjs.getWorkflowApi; exports.getWorkflowInstanceApi = _chunkJES2EBNOjs.getWorkflowInstanceApi; exports.getWorkflowTemplateApi = _chunkJES2EBNOjs.getWorkflowTemplateApi; exports.instantiateWorkflowTemplateApi = _chunkJES2EBNOjs.instantiateWorkflowTemplateApi; exports.listWorkflowInstancesApi = _chunkJES2EBNOjs.listWorkflowInstancesApi; exports.listWorkflowTemplatesApi = _chunkJES2EBNOjs.listWorkflowTemplatesApi; exports.listWorkflowsApi = _chunkJES2EBNOjs.listWorkflowsApi; exports.nodeDefinitions = nodeDefinitions; exports.nodeSchemas = nodeSchemas; exports.resumeWorkflowNodeApi = _chunkJES2EBNOjs.resumeWorkflowNodeApi; exports.retryWorkflowNodeApi = _chunkJES2EBNOjs.retryWorkflowNodeApi; exports.updateWorkflowApi = _chunkJES2EBNOjs.updateWorkflowApi; exports.updateWorkflowInstanceStatusApi = _chunkJES2EBNOjs.updateWorkflowInstanceStatusApi; exports.useWorkflowInstances = _chunkF5G2ALFSjs.useWorkflowInstances; exports.useWorkflowTemplates = _chunkF5G2ALFSjs.useWorkflowTemplates; exports.useWorkflows = _chunkF5G2ALFSjs.useWorkflows; exports.workflowDefinitionReducer = workflowDefinitionReducer; exports.workflowInstanceReducer = workflowInstanceReducer;
|
|
4346
4386
|
//# sourceMappingURL=index.js.map
|