next-workflow-builder 0.3.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/README.md +165 -0
- package/dist/chunk-3MSAF2TH.js +438 -0
- package/dist/chunk-5YYA34YV.js +96 -0
- package/dist/chunk-7MUXUHEL.js +66 -0
- package/dist/chunk-BNYDOC3I.js +169 -0
- package/dist/chunk-D44JFQYX.js +546 -0
- package/dist/chunk-DJ7ANVJ3.js +51 -0
- package/dist/chunk-O3I2INCD.js +71 -0
- package/dist/chunk-OQHML4II.js +36 -0
- package/dist/chunk-P3DTV3QS.js +105 -0
- package/dist/chunk-XJ67EFQA.js +1162 -0
- package/dist/chunk-Z3BJJYHM.js +246 -0
- package/dist/client/index.d.ts +32 -0
- package/dist/client/index.js +13700 -0
- package/dist/condition-SFT7Y5YJ.js +29 -0
- package/dist/database-query-GRWP3S3M.js +99 -0
- package/dist/http-request-2HVCXQHK.js +76 -0
- package/dist/next/index.d.ts +42 -0
- package/dist/next/index.js +66 -0
- package/dist/plugins/index.d.ts +113 -0
- package/dist/plugins/index.js +52 -0
- package/dist/server/api/index.d.ts +8 -0
- package/dist/server/api/index.js +2672 -0
- package/dist/server/index.d.ts +2911 -0
- package/dist/server/index.js +60 -0
- package/dist/style-prefixed.css +5167 -0
- package/dist/styles.css +5167 -0
- package/dist/types-BACZx2Ft.d.ts +139 -0
- package/package.json +112 -0
- package/src/scripts/nwb.ts +54 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import {
|
|
2
|
+
generateWorkflowMetadata
|
|
3
|
+
} from "../chunk-7MUXUHEL.js";
|
|
4
|
+
import {
|
|
5
|
+
discoverPlugins
|
|
6
|
+
} from "../chunk-D44JFQYX.js";
|
|
7
|
+
import {
|
|
8
|
+
auth
|
|
9
|
+
} from "../chunk-P3DTV3QS.js";
|
|
10
|
+
import {
|
|
11
|
+
getErrorMessageAsync
|
|
12
|
+
} from "../chunk-5YYA34YV.js";
|
|
13
|
+
import "../chunk-OQHML4II.js";
|
|
14
|
+
import {
|
|
15
|
+
fetchCredentials
|
|
16
|
+
} from "../chunk-DJ7ANVJ3.js";
|
|
17
|
+
import {
|
|
18
|
+
decrypt,
|
|
19
|
+
encrypt
|
|
20
|
+
} from "../chunk-BNYDOC3I.js";
|
|
21
|
+
import "../chunk-Z3BJJYHM.js";
|
|
22
|
+
import {
|
|
23
|
+
getErrorMessage
|
|
24
|
+
} from "../chunk-O3I2INCD.js";
|
|
25
|
+
import {
|
|
26
|
+
accounts,
|
|
27
|
+
apiKeys,
|
|
28
|
+
db,
|
|
29
|
+
generateId,
|
|
30
|
+
integrations,
|
|
31
|
+
sessions,
|
|
32
|
+
users,
|
|
33
|
+
verifications,
|
|
34
|
+
withStepLogging,
|
|
35
|
+
workflowExecutionLogs,
|
|
36
|
+
workflowExecutions,
|
|
37
|
+
workflowExecutionsRelations
|
|
38
|
+
} from "../chunk-3MSAF2TH.js";
|
|
39
|
+
export {
|
|
40
|
+
accounts,
|
|
41
|
+
apiKeys,
|
|
42
|
+
auth,
|
|
43
|
+
db,
|
|
44
|
+
decrypt,
|
|
45
|
+
discoverPlugins,
|
|
46
|
+
encrypt,
|
|
47
|
+
fetchCredentials,
|
|
48
|
+
generateId,
|
|
49
|
+
generateWorkflowMetadata,
|
|
50
|
+
getErrorMessage,
|
|
51
|
+
getErrorMessageAsync,
|
|
52
|
+
integrations,
|
|
53
|
+
sessions,
|
|
54
|
+
users,
|
|
55
|
+
verifications,
|
|
56
|
+
withStepLogging,
|
|
57
|
+
workflowExecutionLogs,
|
|
58
|
+
workflowExecutions,
|
|
59
|
+
workflowExecutionsRelations
|
|
60
|
+
};
|