@elqnt/workflow 2.0.7 → 2.1.0
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-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 +6 -2
- package/dist/index.d.ts +6 -2
- 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/{index-B4xiOlL7.d.mts → workflow-vv0mDt57.d.mts} +1 -54
- package/dist/{index-B4xiOlL7.d.ts → workflow-vv0mDt57.d.ts} +1 -54
- package/package.json +15 -3
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,26 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
useWorkflowInstances,
|
|
4
|
+
useWorkflowTemplates,
|
|
5
|
+
useWorkflows
|
|
6
|
+
} from "./chunk-TZA3EPTC.mjs";
|
|
7
|
+
import {
|
|
8
|
+
createWorkflowApi,
|
|
9
|
+
createWorkflowInstanceApi,
|
|
10
|
+
deleteWorkflowApi,
|
|
11
|
+
executeWorkflowNodeApi,
|
|
12
|
+
getWorkflowApi,
|
|
13
|
+
getWorkflowInstanceApi,
|
|
14
|
+
getWorkflowTemplateApi,
|
|
15
|
+
instantiateWorkflowTemplateApi,
|
|
16
|
+
listWorkflowInstancesApi,
|
|
17
|
+
listWorkflowTemplatesApi,
|
|
18
|
+
listWorkflowsApi,
|
|
19
|
+
resumeWorkflowNodeApi,
|
|
20
|
+
retryWorkflowNodeApi,
|
|
21
|
+
updateWorkflowApi,
|
|
22
|
+
updateWorkflowInstanceStatusApi
|
|
23
|
+
} from "./chunk-UE4ZBFLG.mjs";
|
|
2
24
|
import {
|
|
3
25
|
EdgeStatusCompleted,
|
|
4
26
|
EdgeStatusPending,
|
|
@@ -4338,8 +4360,26 @@ export {
|
|
|
4338
4360
|
WorkflowTypeEntity,
|
|
4339
4361
|
WorkflowTypeProductivity,
|
|
4340
4362
|
WorkflowTypes,
|
|
4363
|
+
createWorkflowApi,
|
|
4364
|
+
createWorkflowInstanceApi,
|
|
4365
|
+
deleteWorkflowApi,
|
|
4366
|
+
executeWorkflowNodeApi,
|
|
4367
|
+
getWorkflowApi,
|
|
4368
|
+
getWorkflowInstanceApi,
|
|
4369
|
+
getWorkflowTemplateApi,
|
|
4370
|
+
instantiateWorkflowTemplateApi,
|
|
4371
|
+
listWorkflowInstancesApi,
|
|
4372
|
+
listWorkflowTemplatesApi,
|
|
4373
|
+
listWorkflowsApi,
|
|
4341
4374
|
nodeDefinitions,
|
|
4342
4375
|
nodeSchemas,
|
|
4376
|
+
resumeWorkflowNodeApi,
|
|
4377
|
+
retryWorkflowNodeApi,
|
|
4378
|
+
updateWorkflowApi,
|
|
4379
|
+
updateWorkflowInstanceStatusApi,
|
|
4380
|
+
useWorkflowInstances,
|
|
4381
|
+
useWorkflowTemplates,
|
|
4382
|
+
useWorkflows,
|
|
4343
4383
|
workflowDefinitionReducer,
|
|
4344
4384
|
workflowInstanceReducer
|
|
4345
4385
|
};
|