@venturialstd/workflow 0.1.177 → 0.1.178
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 +94 -54
- package/dist/constants/submodules-catalog.constant.d.ts +31 -0
- package/dist/constants/submodules-catalog.constant.d.ts.map +1 -0
- package/dist/constants/submodules-catalog.constant.js +81 -0
- package/dist/constants/submodules-catalog.constant.js.map +1 -0
- package/dist/index.d.ts +1 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -7
- package/dist/index.js.map +1 -1
- package/dist/modules/index.d.ts +0 -22
- package/dist/modules/index.d.ts.map +1 -1
- package/dist/modules/index.js +0 -172
- package/dist/modules/index.js.map +1 -1
- package/dist/modules/types.d.ts +1 -0
- package/dist/modules/types.d.ts.map +1 -1
- package/dist/modules/types.js +3 -0
- package/dist/modules/types.js.map +1 -1
- package/dist/services/workflow-module.service.d.ts +0 -1
- package/dist/services/workflow-module.service.d.ts.map +1 -1
- package/dist/services/workflow-module.service.js +4 -1
- package/dist/services/workflow-module.service.js.map +1 -1
- package/dist/workflow-submodule-loaders.d.ts +8 -0
- package/dist/workflow-submodule-loaders.d.ts.map +1 -0
- package/dist/workflow-submodule-loaders.js +89 -0
- package/dist/workflow-submodule-loaders.js.map +1 -0
- package/dist/workflow-submodules.catalog.d.ts +10 -0
- package/dist/workflow-submodules.catalog.d.ts.map +1 -0
- package/dist/workflow-submodules.catalog.js +60 -0
- package/dist/workflow-submodules.catalog.js.map +1 -0
- package/dist/workflow.module.d.ts +9 -1
- package/dist/workflow.module.d.ts.map +1 -1
- package/dist/workflow.module.js +18 -78
- package/dist/workflow.module.js.map +1 -1
- package/package.json +45 -1
package/README.md
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
# Workflow Module
|
|
2
2
|
|
|
3
|
-
A comprehensive workflow management module for Venturial that handles workflow creation, execution, and session management.
|
|
3
|
+
A comprehensive workflow management module for Venturial that handles workflow creation, execution, and session management. Integrations (Slack, KYC, Jira, etc.) are loaded **only when you opt in** via `WorkflowModule.forRoot`, so hosts can install matching `@venturialstd/*` peers without pulling every integration at runtime.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- **Workflow
|
|
8
|
-
- **
|
|
9
|
-
- **
|
|
10
|
-
- **
|
|
11
|
-
- **
|
|
7
|
+
- **Workflow management**: Create, update, and manage workflows with nodes and edges
|
|
8
|
+
- **Pluggable submodules**: AI, Chatbot, Conditional, Transform, Slack, Jira, KYC, webhooks, schedule/cron (with Redis), and more—enabled per host via `WorkflowSubmoduleKey`
|
|
9
|
+
- **Lazy loading**: Optional integration peers are resolved with `require()` only for selected submodules (see `workflow-submodule-loaders.ts`)
|
|
10
|
+
- **Execution tracking**: Workflow executions with status and data
|
|
11
|
+
- **Session management**: Persistent sessions for multi-step workflows (uses `@venturialstd/core` cache where applicable)
|
|
12
|
+
- **Execution modes**: Single-run and persistent session workflows
|
|
13
|
+
- **Module registry**: `workflowModuleRegistry` lists definitions for the enabled submodule set only (filled when `forRoot` runs)
|
|
12
14
|
|
|
13
15
|
## Installation
|
|
14
16
|
|
|
@@ -16,6 +18,71 @@ A comprehensive workflow management module for Venturial that handles workflow c
|
|
|
16
18
|
npm install @venturialstd/workflow
|
|
17
19
|
```
|
|
18
20
|
|
|
21
|
+
### Peer dependencies
|
|
22
|
+
|
|
23
|
+
- **Always required**: NestJS stack, `@dataui/crud*`, `typeorm`, `rxjs`, `@venturialstd/core`, etc. (see `package.json` → `peerDependencies`).
|
|
24
|
+
- **Optional integrations**: `@venturialstd/capa`, `@venturialstd/slack`, `@venturialstd/kyc`, … are declared as **optional** in `peerDependenciesMeta`. Install only the packages that match submodules you pass to `forRoot`; missing packages for **disabled** submodules are not loaded at runtime.
|
|
25
|
+
|
|
26
|
+
## Host application setup
|
|
27
|
+
|
|
28
|
+
### 1. Register `WorkflowModule` with `forRoot` (required)
|
|
29
|
+
|
|
30
|
+
The package exports a **dynamic** module. You must call `forRoot` (or pass options); importing `WorkflowModule` as a plain `@Module({ imports: [WorkflowModule] })` is not supported.
|
|
31
|
+
|
|
32
|
+
```typescript
|
|
33
|
+
import { WorkflowModule, WorkflowSubmoduleKey } from '@venturialstd/workflow';
|
|
34
|
+
|
|
35
|
+
@Module({
|
|
36
|
+
imports: [
|
|
37
|
+
WorkflowModule.forRoot({
|
|
38
|
+
// Omit or use 'all' → defaults to all known submodule keys (see WORKFLOW_DEFAULT_SUBMODULE_KEYS)
|
|
39
|
+
submodules: [
|
|
40
|
+
WorkflowSubmoduleKey.Transform,
|
|
41
|
+
WorkflowSubmoduleKey.Conditional,
|
|
42
|
+
WorkflowSubmoduleKey.Webhook,
|
|
43
|
+
// ...
|
|
44
|
+
],
|
|
45
|
+
// Only when `WorkflowSubmoduleKey.Schedule` is included and you want cron triggers:
|
|
46
|
+
// jobs: { connection: { host: 'localhost', port: 6379 } },
|
|
47
|
+
}),
|
|
48
|
+
],
|
|
49
|
+
})
|
|
50
|
+
export class AppModule {}
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
- **`submodules`**: `undefined` or `'all'` → same as the default list in [`constants/submodules-catalog.constant.ts`](src/constants/submodules-catalog.constant.ts) (`WORKFLOW_DEFAULT_SUBMODULE_KEYS`).
|
|
54
|
+
- **`jobs`**: Required **only** if you enable **`Schedule`** and want `ScheduleNestModule` (Redis/BullMQ). If `Schedule` is in the list but `jobs` is omitted, the schedule **definition** is still registered (for the builder/UI), but cron execution is not wired—same idea as before optional Redis.
|
|
55
|
+
|
|
56
|
+
### 2. TypeORM
|
|
57
|
+
|
|
58
|
+
Register workflow entities in your `DataSource` / `TypeOrmModule` (glob or explicit imports), e.g.:
|
|
59
|
+
|
|
60
|
+
```typescript
|
|
61
|
+
path.join(dirname(require.resolve('@venturialstd/workflow/package.json')), 'dist/**/*.entity.{ts,js}')
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
In the host module that wraps workflow, use `TypeOrmModule.forFeature([...])` with the entities you use (see package exports under `entities/`).
|
|
65
|
+
|
|
66
|
+
### 3. Registry and barrel imports
|
|
67
|
+
|
|
68
|
+
- `workflowModuleRegistry` is **cleared and repopulated** inside `forRoot` for the selected keys.
|
|
69
|
+
- The barrel [`src/modules/index.ts`](src/modules/index.ts) exports **types and `workflowModuleRegistry` only**. It does **not** re-export `aiModule`, `slackModule`, etc., so importing `@venturialstd/workflow` does not eagerly load every integration. Use `WorkflowSubmoduleKey` + `forRoot`, or import a submodule file directly if you have a special case.
|
|
70
|
+
|
|
71
|
+
### 4. Database sync helpers
|
|
72
|
+
|
|
73
|
+
`activateAllModulesFromFolders` in `WorkflowModuleService` only processes directories whose names match keys **currently present in `workflowModuleRegistry`** (i.e. enabled submodules). Folders such as `jobs` (infrastructure, not a workflow submodule key) are skipped.
|
|
74
|
+
|
|
75
|
+
## Architecture (package layout)
|
|
76
|
+
|
|
77
|
+
| Piece | Role |
|
|
78
|
+
|--------|------|
|
|
79
|
+
| [`constants/submodules-catalog.constant.ts`](src/constants/submodules-catalog.constant.ts) | `WorkflowSubmoduleKey` enum, `WORKFLOW_ALL_SUBMODULE_KEYS`, `WORKFLOW_NEST_IMPORT_ORDER`, etc. |
|
|
80
|
+
| [`workflow-submodule-loaders.ts`](src/workflow-submodule-loaders.ts) | Lazy `require()` loaders for each submodule definition and `*NestModule` |
|
|
81
|
+
| [`workflow-submodules.catalog.ts`](src/workflow-submodules.catalog.ts) | Resolves selection, registers definitions, builds Nest `imports` for `forRoot` |
|
|
82
|
+
| [`workflow.module.ts`](src/workflow.module.ts) | `WorkflowModule.forRoot` / exports |
|
|
83
|
+
|
|
84
|
+
Submodule definitions for authors are documented in [`src/modules/README.md`](src/modules/README.md) (add new submodules via the catalog + loaders, not via re-exports in `modules/index.ts`).
|
|
85
|
+
|
|
19
86
|
## Entities
|
|
20
87
|
|
|
21
88
|
### Workflow
|
|
@@ -27,12 +94,12 @@ Main workflow entity containing:
|
|
|
27
94
|
- Relationships to nodes, edges, executions, and sessions
|
|
28
95
|
|
|
29
96
|
### WorkflowNode
|
|
30
|
-
|
|
97
|
+
|
|
31
98
|
- `nodeId`: ReactFlow node identifier
|
|
32
|
-
- `
|
|
99
|
+
- `moduleKey`: Submodule key (e.g. `conditional`, `transform`, `slack`)
|
|
33
100
|
- `actionType`: Specific trigger or action identifier
|
|
34
101
|
- `properties`: Node-specific properties (JSONB)
|
|
35
|
-
- `position`:
|
|
102
|
+
- `position`: `{ x, y }` on canvas
|
|
36
103
|
|
|
37
104
|
### WorkflowEdge
|
|
38
105
|
Represents connections between nodes:
|
|
@@ -67,7 +134,7 @@ Stores credentials for workflow modules:
|
|
|
67
134
|
|
|
68
135
|
## Services
|
|
69
136
|
|
|
70
|
-
|
|
137
|
+
Core services extend `TypeOrmCrudService` and integrate with `@dataui/crud`. See source under `src/services/` for the full API (workflow, node, edge, execution, session, module credentials, bulk credentials, graph delta, etc.).
|
|
71
138
|
|
|
72
139
|
### WorkflowService
|
|
73
140
|
- `getWorkflowsByOrganization(organizationId)`
|
|
@@ -119,25 +186,29 @@ All services extend `TypeOrmCrudService` and provide CRUD operations via `@datau
|
|
|
119
186
|
### Import the Module
|
|
120
187
|
|
|
121
188
|
```typescript
|
|
122
|
-
import { WorkflowModule } from '@venturialstd/workflow';
|
|
189
|
+
import { WorkflowModule, WorkflowSubmoduleKey } from '@venturialstd/workflow';
|
|
123
190
|
|
|
124
191
|
@Module({
|
|
125
|
-
imports: [
|
|
192
|
+
imports: [
|
|
193
|
+
WorkflowModule.forRoot({
|
|
194
|
+
submodules: [WorkflowSubmoduleKey.Transform, WorkflowSubmoduleKey.Conditional],
|
|
195
|
+
}),
|
|
196
|
+
],
|
|
126
197
|
})
|
|
127
198
|
export class AppModule {}
|
|
128
199
|
```
|
|
129
200
|
|
|
130
|
-
###
|
|
201
|
+
### Injecting services
|
|
131
202
|
|
|
132
203
|
```typescript
|
|
133
204
|
import { WorkflowService } from '@venturialstd/workflow';
|
|
134
205
|
|
|
135
206
|
@Injectable()
|
|
136
207
|
export class MyService {
|
|
137
|
-
constructor(private workflowService: WorkflowService) {}
|
|
208
|
+
constructor(private readonly workflowService: WorkflowService) {}
|
|
138
209
|
|
|
139
210
|
async createWorkflow(data: CreateWorkflowDto) {
|
|
140
|
-
return this.workflowService.
|
|
211
|
+
return this.workflowService.createOne(data);
|
|
141
212
|
}
|
|
142
213
|
}
|
|
143
214
|
```
|
|
@@ -190,48 +261,17 @@ The module uses PostgreSQL with JSONB columns for flexible data storage:
|
|
|
190
261
|
- Session context and history as JSONB
|
|
191
262
|
- Module credentials stored as JSONB (should be encrypted at application level)
|
|
192
263
|
|
|
193
|
-
##
|
|
194
|
-
|
|
195
|
-
Each module can define required credential fields. Users can create multiple credential sets per module:
|
|
196
|
-
|
|
197
|
-
### Defining Credential Fields in Modules
|
|
198
|
-
|
|
199
|
-
Modules can define `credentialFields` in their module definition:
|
|
264
|
+
## Migrating from older versions
|
|
200
265
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
id: 'apiKey',
|
|
205
|
-
name: 'API Key',
|
|
206
|
-
description: 'API key for the service',
|
|
207
|
-
type: FIELD_TYPE.STRING,
|
|
208
|
-
validation: { required: true },
|
|
209
|
-
sensitive: true, // Will be encrypted/masked
|
|
210
|
-
required: true,
|
|
211
|
-
},
|
|
212
|
-
]
|
|
213
|
-
```
|
|
266
|
+
- Replace `imports: [WorkflowModule]` with **`WorkflowModule.forRoot(...)`**.
|
|
267
|
+
- Do not rely on **`import { slackModule } from '@venturialstd/workflow'`** from the main barrel; use `WorkflowSubmoduleKey` and `forRoot`, or deep imports if you maintain tooling that needs a specific definition.
|
|
268
|
+
- Ensure **`peerDependencies`** for integrations you enable are installed; optional peers can be omitted for disabled submodules.
|
|
214
269
|
|
|
215
|
-
|
|
270
|
+
## Development & tests (this repo)
|
|
216
271
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
moduleId: 'twilio',
|
|
221
|
-
name: 'Production Twilio',
|
|
222
|
-
credentials: {
|
|
223
|
-
accountSid: 'AC...',
|
|
224
|
-
authToken: '...',
|
|
225
|
-
},
|
|
226
|
-
organizationId: 'org-123',
|
|
227
|
-
});
|
|
228
|
-
|
|
229
|
-
// Get all credentials for a module
|
|
230
|
-
const credentials = await credentialService.getCredentialsByModule(
|
|
231
|
-
'twilio',
|
|
232
|
-
'org-123'
|
|
233
|
-
);
|
|
234
|
-
```
|
|
272
|
+
- **`npm run build`**: compile `src/` → `dist/`.
|
|
273
|
+
- **`npm run test:dev`**: sample Nest app using [`test/test-app.module.ts`](test/test-app.module.ts) with `WorkflowModule.forRoot()`.
|
|
274
|
+
- Migrations in `test/` target the test `DataSource` when working on schema changes.
|
|
235
275
|
|
|
236
276
|
## License
|
|
237
277
|
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare enum WorkflowSubmoduleKey {
|
|
2
|
+
Ai = "ai",
|
|
3
|
+
Capa = "capa",
|
|
4
|
+
Chatbot = "chatbot",
|
|
5
|
+
ChatGpt = "chatgpt",
|
|
6
|
+
Circle = "circle",
|
|
7
|
+
Conditional = "conditional",
|
|
8
|
+
Email = "email",
|
|
9
|
+
Events = "events",
|
|
10
|
+
Fintech = "fintech",
|
|
11
|
+
Inbestgo = "inbestgo",
|
|
12
|
+
Jira = "jira",
|
|
13
|
+
Kira = "kira",
|
|
14
|
+
Kyc = "kyc",
|
|
15
|
+
Schedule = "schedule",
|
|
16
|
+
Session = "session",
|
|
17
|
+
Slack = "slack",
|
|
18
|
+
Toolbox = "toolbox",
|
|
19
|
+
Transform = "transform",
|
|
20
|
+
Twilio = "twilio",
|
|
21
|
+
User = "user",
|
|
22
|
+
Validation = "validation",
|
|
23
|
+
VCard = "vcard",
|
|
24
|
+
Webhook = "webhook"
|
|
25
|
+
}
|
|
26
|
+
export type WorkflowSubmoduleNestKey = Exclude<WorkflowSubmoduleKey, WorkflowSubmoduleKey.Schedule>;
|
|
27
|
+
export declare const WORKFLOW_ALL_SUBMODULE_KEYS: readonly WorkflowSubmoduleKey[];
|
|
28
|
+
export declare const WORKFLOW_DEFAULT_SUBMODULE_KEYS: readonly WorkflowSubmoduleKey[];
|
|
29
|
+
export declare const WORKFLOW_NEST_IMPORT_ORDER: readonly WorkflowSubmoduleNestKey[];
|
|
30
|
+
export declare const WORKFLOW_SUBMODULE_KEYS_SET: Set<string>;
|
|
31
|
+
//# sourceMappingURL=submodules-catalog.constant.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"submodules-catalog.constant.d.ts","sourceRoot":"","sources":["../../src/constants/submodules-catalog.constant.ts"],"names":[],"mappings":"AAIA,oBAAY,oBAAoB;IAC9B,EAAE,OAAO;IACT,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,WAAW,gBAAgB;IAC3B,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,UAAU,eAAe;IACzB,KAAK,UAAU;IACf,OAAO,YAAY;CACpB;AAED,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAC5C,oBAAoB,EACpB,oBAAoB,CAAC,QAAQ,CAC9B,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,SAAS,oBAAoB,EAwBtE,CAAC;AAMF,eAAO,MAAM,+BAA+B,EAAE,SAAS,oBAAoB,EAC9C,CAAC;AAE9B,eAAO,MAAM,0BAA0B,EAAE,SAAS,wBAAwB,EAuBzE,CAAC;AAEF,eAAO,MAAM,2BAA2B,aAA+C,CAAC"}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WORKFLOW_SUBMODULE_KEYS_SET = exports.WORKFLOW_NEST_IMPORT_ORDER = exports.WORKFLOW_DEFAULT_SUBMODULE_KEYS = exports.WORKFLOW_ALL_SUBMODULE_KEYS = exports.WorkflowSubmoduleKey = void 0;
|
|
4
|
+
var WorkflowSubmoduleKey;
|
|
5
|
+
(function (WorkflowSubmoduleKey) {
|
|
6
|
+
WorkflowSubmoduleKey["Ai"] = "ai";
|
|
7
|
+
WorkflowSubmoduleKey["Capa"] = "capa";
|
|
8
|
+
WorkflowSubmoduleKey["Chatbot"] = "chatbot";
|
|
9
|
+
WorkflowSubmoduleKey["ChatGpt"] = "chatgpt";
|
|
10
|
+
WorkflowSubmoduleKey["Circle"] = "circle";
|
|
11
|
+
WorkflowSubmoduleKey["Conditional"] = "conditional";
|
|
12
|
+
WorkflowSubmoduleKey["Email"] = "email";
|
|
13
|
+
WorkflowSubmoduleKey["Events"] = "events";
|
|
14
|
+
WorkflowSubmoduleKey["Fintech"] = "fintech";
|
|
15
|
+
WorkflowSubmoduleKey["Inbestgo"] = "inbestgo";
|
|
16
|
+
WorkflowSubmoduleKey["Jira"] = "jira";
|
|
17
|
+
WorkflowSubmoduleKey["Kira"] = "kira";
|
|
18
|
+
WorkflowSubmoduleKey["Kyc"] = "kyc";
|
|
19
|
+
WorkflowSubmoduleKey["Schedule"] = "schedule";
|
|
20
|
+
WorkflowSubmoduleKey["Session"] = "session";
|
|
21
|
+
WorkflowSubmoduleKey["Slack"] = "slack";
|
|
22
|
+
WorkflowSubmoduleKey["Toolbox"] = "toolbox";
|
|
23
|
+
WorkflowSubmoduleKey["Transform"] = "transform";
|
|
24
|
+
WorkflowSubmoduleKey["Twilio"] = "twilio";
|
|
25
|
+
WorkflowSubmoduleKey["User"] = "user";
|
|
26
|
+
WorkflowSubmoduleKey["Validation"] = "validation";
|
|
27
|
+
WorkflowSubmoduleKey["VCard"] = "vcard";
|
|
28
|
+
WorkflowSubmoduleKey["Webhook"] = "webhook";
|
|
29
|
+
})(WorkflowSubmoduleKey || (exports.WorkflowSubmoduleKey = WorkflowSubmoduleKey = {}));
|
|
30
|
+
exports.WORKFLOW_ALL_SUBMODULE_KEYS = [
|
|
31
|
+
WorkflowSubmoduleKey.Ai,
|
|
32
|
+
WorkflowSubmoduleKey.Capa,
|
|
33
|
+
WorkflowSubmoduleKey.Chatbot,
|
|
34
|
+
WorkflowSubmoduleKey.ChatGpt,
|
|
35
|
+
WorkflowSubmoduleKey.Circle,
|
|
36
|
+
WorkflowSubmoduleKey.Conditional,
|
|
37
|
+
WorkflowSubmoduleKey.Email,
|
|
38
|
+
WorkflowSubmoduleKey.Events,
|
|
39
|
+
WorkflowSubmoduleKey.Fintech,
|
|
40
|
+
WorkflowSubmoduleKey.Inbestgo,
|
|
41
|
+
WorkflowSubmoduleKey.Jira,
|
|
42
|
+
WorkflowSubmoduleKey.Kira,
|
|
43
|
+
WorkflowSubmoduleKey.Kyc,
|
|
44
|
+
WorkflowSubmoduleKey.Schedule,
|
|
45
|
+
WorkflowSubmoduleKey.Session,
|
|
46
|
+
WorkflowSubmoduleKey.Slack,
|
|
47
|
+
WorkflowSubmoduleKey.Toolbox,
|
|
48
|
+
WorkflowSubmoduleKey.Transform,
|
|
49
|
+
WorkflowSubmoduleKey.Twilio,
|
|
50
|
+
WorkflowSubmoduleKey.User,
|
|
51
|
+
WorkflowSubmoduleKey.Validation,
|
|
52
|
+
WorkflowSubmoduleKey.VCard,
|
|
53
|
+
WorkflowSubmoduleKey.Webhook,
|
|
54
|
+
];
|
|
55
|
+
exports.WORKFLOW_DEFAULT_SUBMODULE_KEYS = exports.WORKFLOW_ALL_SUBMODULE_KEYS;
|
|
56
|
+
exports.WORKFLOW_NEST_IMPORT_ORDER = [
|
|
57
|
+
WorkflowSubmoduleKey.Ai,
|
|
58
|
+
WorkflowSubmoduleKey.Capa,
|
|
59
|
+
WorkflowSubmoduleKey.Chatbot,
|
|
60
|
+
WorkflowSubmoduleKey.ChatGpt,
|
|
61
|
+
WorkflowSubmoduleKey.Circle,
|
|
62
|
+
WorkflowSubmoduleKey.Conditional,
|
|
63
|
+
WorkflowSubmoduleKey.Email,
|
|
64
|
+
WorkflowSubmoduleKey.Events,
|
|
65
|
+
WorkflowSubmoduleKey.Fintech,
|
|
66
|
+
WorkflowSubmoduleKey.Inbestgo,
|
|
67
|
+
WorkflowSubmoduleKey.Jira,
|
|
68
|
+
WorkflowSubmoduleKey.Kira,
|
|
69
|
+
WorkflowSubmoduleKey.Kyc,
|
|
70
|
+
WorkflowSubmoduleKey.Session,
|
|
71
|
+
WorkflowSubmoduleKey.Slack,
|
|
72
|
+
WorkflowSubmoduleKey.Toolbox,
|
|
73
|
+
WorkflowSubmoduleKey.Transform,
|
|
74
|
+
WorkflowSubmoduleKey.Twilio,
|
|
75
|
+
WorkflowSubmoduleKey.User,
|
|
76
|
+
WorkflowSubmoduleKey.Validation,
|
|
77
|
+
WorkflowSubmoduleKey.VCard,
|
|
78
|
+
WorkflowSubmoduleKey.Webhook,
|
|
79
|
+
];
|
|
80
|
+
exports.WORKFLOW_SUBMODULE_KEYS_SET = new Set(exports.WORKFLOW_ALL_SUBMODULE_KEYS);
|
|
81
|
+
//# sourceMappingURL=submodules-catalog.constant.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"submodules-catalog.constant.js","sourceRoot":"","sources":["../../src/constants/submodules-catalog.constant.ts"],"names":[],"mappings":";;;AAIA,IAAY,oBAwBX;AAxBD,WAAY,oBAAoB;IAC9B,iCAAS,CAAA;IACT,qCAAa,CAAA;IACb,2CAAmB,CAAA;IACnB,2CAAmB,CAAA;IACnB,yCAAiB,CAAA;IACjB,mDAA2B,CAAA;IAC3B,uCAAe,CAAA;IACf,yCAAiB,CAAA;IACjB,2CAAmB,CAAA;IACnB,6CAAqB,CAAA;IACrB,qCAAa,CAAA;IACb,qCAAa,CAAA;IACb,mCAAW,CAAA;IACX,6CAAqB,CAAA;IACrB,2CAAmB,CAAA;IACnB,uCAAe,CAAA;IACf,2CAAmB,CAAA;IACnB,+CAAuB,CAAA;IACvB,yCAAiB,CAAA;IACjB,qCAAa,CAAA;IACb,iDAAyB,CAAA;IACzB,uCAAe,CAAA;IACf,2CAAmB,CAAA;AACrB,CAAC,EAxBW,oBAAoB,oCAApB,oBAAoB,QAwB/B;AAOY,QAAA,2BAA2B,GAAoC;IAC1E,oBAAoB,CAAC,EAAE;IACvB,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,OAAO;IAC5B,oBAAoB,CAAC,OAAO;IAC5B,oBAAoB,CAAC,MAAM;IAC3B,oBAAoB,CAAC,WAAW;IAChC,oBAAoB,CAAC,KAAK;IAC1B,oBAAoB,CAAC,MAAM;IAC3B,oBAAoB,CAAC,OAAO;IAC5B,oBAAoB,CAAC,QAAQ;IAC7B,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,GAAG;IACxB,oBAAoB,CAAC,QAAQ;IAC7B,oBAAoB,CAAC,OAAO;IAC5B,oBAAoB,CAAC,KAAK;IAC1B,oBAAoB,CAAC,OAAO;IAC5B,oBAAoB,CAAC,SAAS;IAC9B,oBAAoB,CAAC,MAAM;IAC3B,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,UAAU;IAC/B,oBAAoB,CAAC,KAAK;IAC1B,oBAAoB,CAAC,OAAO;CAC7B,CAAC;AAMW,QAAA,+BAA+B,GAC1C,mCAA2B,CAAC;AAEjB,QAAA,0BAA0B,GAAwC;IAC7E,oBAAoB,CAAC,EAAE;IACvB,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,OAAO;IAC5B,oBAAoB,CAAC,OAAO;IAC5B,oBAAoB,CAAC,MAAM;IAC3B,oBAAoB,CAAC,WAAW;IAChC,oBAAoB,CAAC,KAAK;IAC1B,oBAAoB,CAAC,MAAM;IAC3B,oBAAoB,CAAC,OAAO;IAC5B,oBAAoB,CAAC,QAAQ;IAC7B,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,GAAG;IACxB,oBAAoB,CAAC,OAAO;IAC5B,oBAAoB,CAAC,KAAK;IAC1B,oBAAoB,CAAC,OAAO;IAC5B,oBAAoB,CAAC,SAAS;IAC9B,oBAAoB,CAAC,MAAM;IAC3B,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,UAAU;IAC/B,oBAAoB,CAAC,KAAK;IAC1B,oBAAoB,CAAC,OAAO;CAC7B,CAAC;AAEW,QAAA,2BAA2B,GAAG,IAAI,GAAG,CAAS,mCAA2B,CAAC,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -30,13 +30,7 @@ export * from './services/workflow-user.service';
|
|
|
30
30
|
export * from './services/workflow-webhook.service';
|
|
31
31
|
export * from './realtime';
|
|
32
32
|
export * from './modules';
|
|
33
|
-
export * from './
|
|
34
|
-
export * from './modules/schedule/schedule-nest.module';
|
|
35
|
-
export * from './modules/jobs/jobs-nest.module';
|
|
36
|
-
export * from './modules/chatbot/chatbot-nest.module';
|
|
37
|
-
export * from './modules/conditional/conditional-nest.module';
|
|
38
|
-
export * from './modules/twilio/twilio-nest.module';
|
|
39
|
-
export * from './modules/webhook/webhook-nest.module';
|
|
33
|
+
export * from './workflow-submodules.catalog';
|
|
40
34
|
export * from './workflow.module';
|
|
41
35
|
export * from './workflow-core.module';
|
|
42
36
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,+BAA+B,CAAC;AAG9C,cAAc,QAAQ,CAAC;AAGvB,cAAc,4BAA4B,CAAC;AAC3C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,iCAAiC,CAAC;AAChD,cAAc,sCAAsC,CAAC;AACrD,cAAc,gCAAgC,CAAC;AAC/C,OAAO,EAAE,cAAc,IAAI,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAC3F,cAAc,8CAA8C,CAAC;AAC7D,cAAc,iCAAiC,CAAC;AAChD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,oCAAoC,CAAC;AACnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,oCAAoC,CAAC;AAGnD,cAAc,qDAAqD,CAAC;AACpE,cAAc,wCAAwC,CAAC;AACvD,cAAc,kDAAkD,CAAC;AAGjE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,6BAA6B,CAAC;AAC5C,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kCAAkC,CAAC;AACjD,cAAc,uCAAuC,CAAC;AACtD,cAAc,oCAAoC,CAAC;AACnD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,kCAAkC,CAAC;AACjD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,qCAAqC,CAAC;AACpD,cAAc,yCAAyC,CAAC;AACxD,cAAc,kCAAkC,CAAC;AACjD,cAAc,qCAAqC,CAAC;AAGpD,cAAc,YAAY,CAAC;AAG3B,cAAc,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,+BAA+B,CAAC;AAG9C,cAAc,QAAQ,CAAC;AAGvB,cAAc,4BAA4B,CAAC;AAC3C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,iCAAiC,CAAC;AAChD,cAAc,sCAAsC,CAAC;AACrD,cAAc,gCAAgC,CAAC;AAC/C,OAAO,EAAE,cAAc,IAAI,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAC3F,cAAc,8CAA8C,CAAC;AAC7D,cAAc,iCAAiC,CAAC;AAChD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,oCAAoC,CAAC;AACnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,oCAAoC,CAAC;AAGnD,cAAc,qDAAqD,CAAC;AACpE,cAAc,wCAAwC,CAAC;AACvD,cAAc,kDAAkD,CAAC;AAGjE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,6BAA6B,CAAC;AAC5C,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kCAAkC,CAAC;AACjD,cAAc,uCAAuC,CAAC;AACtD,cAAc,oCAAoC,CAAC;AACnD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,kCAAkC,CAAC;AACjD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,qCAAqC,CAAC;AACpD,cAAc,yCAAyC,CAAC;AACxD,cAAc,kCAAkC,CAAC;AACjD,cAAc,qCAAqC,CAAC;AAGpD,cAAc,YAAY,CAAC;AAG3B,cAAc,WAAW,CAAC;AAE1B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -48,13 +48,7 @@ __exportStar(require("./services/workflow-user.service"), exports);
|
|
|
48
48
|
__exportStar(require("./services/workflow-webhook.service"), exports);
|
|
49
49
|
__exportStar(require("./realtime"), exports);
|
|
50
50
|
__exportStar(require("./modules"), exports);
|
|
51
|
-
__exportStar(require("./
|
|
52
|
-
__exportStar(require("./modules/schedule/schedule-nest.module"), exports);
|
|
53
|
-
__exportStar(require("./modules/jobs/jobs-nest.module"), exports);
|
|
54
|
-
__exportStar(require("./modules/chatbot/chatbot-nest.module"), exports);
|
|
55
|
-
__exportStar(require("./modules/conditional/conditional-nest.module"), exports);
|
|
56
|
-
__exportStar(require("./modules/twilio/twilio-nest.module"), exports);
|
|
57
|
-
__exportStar(require("./modules/webhook/webhook-nest.module"), exports);
|
|
51
|
+
__exportStar(require("./workflow-submodules.catalog"), exports);
|
|
58
52
|
__exportStar(require("./workflow.module"), exports);
|
|
59
53
|
__exportStar(require("./workflow-core.module"), exports);
|
|
60
54
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AACA,gEAA8C;AAG9C,yCAAuB;AAGvB,6DAA2C;AAC3C,4EAA0D;AAC1D,kEAAgD;AAChD,uEAAqD;AACrD,iEAA+C;AAC/C,4EAA2F;AAAlF,8HAAA,cAAc,OAAwB;AAC/C,+EAA6D;AAC7D,kEAAgD;AAChD,4EAA0D;AAC1D,qEAAmD;AACnD,kEAAgD;AAChD,qEAAmD;AAGnD,sFAAoE;AACpE,yEAAuD;AACvD,mFAAiE;AAGjE,8EAA4D;AAC5D,8DAA4C;AAC5C,6EAA2D;AAC3D,mEAAiD;AACjD,wEAAsD;AACtD,qEAAmD;AACnD,gFAA8D;AAC9D,mEAAiD;AACjD,6EAA2D;AAC3D,sEAAoD;AACpD,0EAAwD;AACxD,mEAAiD;AACjD,sEAAoD;AAGpD,6CAA2B;AAG3B,4CAA0B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AACA,gEAA8C;AAG9C,yCAAuB;AAGvB,6DAA2C;AAC3C,4EAA0D;AAC1D,kEAAgD;AAChD,uEAAqD;AACrD,iEAA+C;AAC/C,4EAA2F;AAAlF,8HAAA,cAAc,OAAwB;AAC/C,+EAA6D;AAC7D,kEAAgD;AAChD,4EAA0D;AAC1D,qEAAmD;AACnD,kEAAgD;AAChD,qEAAmD;AAGnD,sFAAoE;AACpE,yEAAuD;AACvD,mFAAiE;AAGjE,8EAA4D;AAC5D,8DAA4C;AAC5C,6EAA2D;AAC3D,mEAAiD;AACjD,wEAAsD;AACtD,qEAAmD;AACnD,gFAA8D;AAC9D,mEAAiD;AACjD,6EAA2D;AAC3D,sEAAoD;AACpD,0EAAwD;AACxD,mEAAiD;AACjD,sEAAoD;AAGpD,6CAA2B;AAG3B,4CAA0B;AAE1B,gEAA8C;AAC9C,oDAAkC;AAClC,yDAAuC"}
|
package/dist/modules/index.d.ts
CHANGED
|
@@ -1,24 +1,2 @@
|
|
|
1
1
|
export * from './types';
|
|
2
|
-
export { aiModule } from './ai/ai.module';
|
|
3
|
-
export { capaModule } from './capa/capa.module';
|
|
4
|
-
export { chatbotModule } from './chatbot/chatbot.module';
|
|
5
|
-
export { chatgptModule } from './chatgpt/chatgpt.module';
|
|
6
|
-
export { circleModule } from './circle/circle.module';
|
|
7
|
-
export { conditionalModule } from './conditional/conditional.module';
|
|
8
|
-
export { emailModule } from './email/email.module';
|
|
9
|
-
export { eventsModule } from './events/events.module';
|
|
10
|
-
export { fintechModule } from './fintech/fintech.module';
|
|
11
|
-
export { inbestgoModule } from './inbestgo/inbestgo.module';
|
|
12
|
-
export { kiraModule } from './kira/kira.module';
|
|
13
|
-
export { kycModule } from './kyc/kyc.module';
|
|
14
|
-
export { scheduleModule } from './schedule/schedule.module';
|
|
15
|
-
export { sessionModule } from './session/session.module';
|
|
16
|
-
export { slackModule } from './slack/slack.module';
|
|
17
|
-
export { toolboxModule } from './toolbox/toolbox.module';
|
|
18
|
-
export { transformModule } from './transform/transform.module';
|
|
19
|
-
export { twilioModule } from './twilio/twilio.module';
|
|
20
|
-
export { userModule } from './user/user.module';
|
|
21
|
-
export { validationModule } from './validation/validation.module';
|
|
22
|
-
export { vcardModule } from './vcard/vcard.module';
|
|
23
|
-
export { webhookModule } from './webhook/webhook.module';
|
|
24
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/modules/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/modules/index.ts"],"names":[],"mappings":"AACA,cAAc,SAAS,CAAC"}
|
package/dist/modules/index.js
CHANGED
|
@@ -10,181 +10,9 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
10
10
|
if (k2 === undefined) k2 = k;
|
|
11
11
|
o[k2] = m[k];
|
|
12
12
|
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
-
var ownKeys = function(o) {
|
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
-
var ar = [];
|
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
-
return ar;
|
|
24
|
-
};
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
35
13
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
36
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
37
15
|
};
|
|
38
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.webhookModule = exports.vcardModule = exports.validationModule = exports.userModule = exports.twilioModule = exports.transformModule = exports.toolboxModule = exports.slackModule = exports.sessionModule = exports.scheduleModule = exports.kycModule = exports.kiraModule = exports.inbestgoModule = exports.fintechModule = exports.eventsModule = exports.emailModule = exports.conditionalModule = exports.circleModule = exports.chatgptModule = exports.chatbotModule = exports.capaModule = exports.aiModule = void 0;
|
|
40
|
-
const fs = __importStar(require("fs"));
|
|
41
|
-
const path = __importStar(require("path"));
|
|
42
|
-
const types_1 = require("./types");
|
|
43
|
-
async function registerModules() {
|
|
44
|
-
const modulesDir = __dirname;
|
|
45
|
-
if (!fs.existsSync(modulesDir)) {
|
|
46
|
-
console.warn(`Modules directory not found: ${modulesDir}`);
|
|
47
|
-
return;
|
|
48
|
-
}
|
|
49
|
-
const entries = fs.readdirSync(modulesDir, { withFileTypes: true });
|
|
50
|
-
for (const entry of entries) {
|
|
51
|
-
if (!entry.isDirectory() ||
|
|
52
|
-
entry.name === 'node_modules' ||
|
|
53
|
-
entry.name.startsWith('.') ||
|
|
54
|
-
entry.name === 'index.ts' ||
|
|
55
|
-
entry.name === 'index.js' ||
|
|
56
|
-
entry.name === 'types.ts' ||
|
|
57
|
-
entry.name === 'types.js' ||
|
|
58
|
-
entry.name === 'README.md') {
|
|
59
|
-
continue;
|
|
60
|
-
}
|
|
61
|
-
const moduleDir = path.join(modulesDir, entry.name);
|
|
62
|
-
const moduleName = entry.name;
|
|
63
|
-
const moduleFileTs = path.join(moduleDir, `${moduleName}.module.ts`);
|
|
64
|
-
const moduleFileJs = path.join(moduleDir, `${moduleName}.module.js`);
|
|
65
|
-
let moduleFile = null;
|
|
66
|
-
if (fs.existsSync(moduleFileTs)) {
|
|
67
|
-
moduleFile = moduleFileTs;
|
|
68
|
-
}
|
|
69
|
-
else if (fs.existsSync(moduleFileJs)) {
|
|
70
|
-
moduleFile = moduleFileJs;
|
|
71
|
-
}
|
|
72
|
-
else {
|
|
73
|
-
continue;
|
|
74
|
-
}
|
|
75
|
-
try {
|
|
76
|
-
const relativePath = path.relative(__dirname, moduleFile).replace(/\\/g, '/');
|
|
77
|
-
const modulePath = relativePath.startsWith('.') ? relativePath : `./${relativePath}`;
|
|
78
|
-
const moduleExport = await Promise.resolve(`${modulePath}`).then(s => __importStar(require(s)));
|
|
79
|
-
const moduleExportName = `${moduleName.charAt(0).toUpperCase() + moduleName.slice(1)}Module`;
|
|
80
|
-
const module = moduleExport[`${moduleName}Module`] ||
|
|
81
|
-
moduleExport[moduleExportName] ||
|
|
82
|
-
moduleExport.default;
|
|
83
|
-
if (module && typeof module === 'object' && 'key' in module) {
|
|
84
|
-
const workflowModule = module;
|
|
85
|
-
types_1.workflowModuleRegistry.register(workflowModule);
|
|
86
|
-
console.log(`✓ Registered workflow module: ${workflowModule.name} (${workflowModule.key})`);
|
|
87
|
-
}
|
|
88
|
-
else {
|
|
89
|
-
console.warn(`⚠ Module file found but no valid module definition exported: ${moduleFile}`);
|
|
90
|
-
console.warn(` Expected export: ${moduleName}Module or ${moduleExportName}`);
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
catch (error) {
|
|
94
|
-
console.error(`✗ Error loading module from ${moduleFile}:`, error);
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
registerModules().catch((error) => {
|
|
99
|
-
console.error('Failed to register workflow modules:', error);
|
|
100
|
-
});
|
|
101
17
|
__exportStar(require("./types"), exports);
|
|
102
|
-
const ai_module_1 = require("./ai/ai.module");
|
|
103
|
-
const capa_module_1 = require("./capa/capa.module");
|
|
104
|
-
const chatbot_module_1 = require("./chatbot/chatbot.module");
|
|
105
|
-
const chatgpt_module_1 = require("./chatgpt/chatgpt.module");
|
|
106
|
-
const circle_module_1 = require("./circle/circle.module");
|
|
107
|
-
const conditional_module_1 = require("./conditional/conditional.module");
|
|
108
|
-
const email_module_1 = require("./email/email.module");
|
|
109
|
-
const events_module_1 = require("./events/events.module");
|
|
110
|
-
const fintech_module_1 = require("./fintech/fintech.module");
|
|
111
|
-
const inbestgo_module_1 = require("./inbestgo/inbestgo.module");
|
|
112
|
-
const kira_module_1 = require("./kira/kira.module");
|
|
113
|
-
const kyc_module_1 = require("./kyc/kyc.module");
|
|
114
|
-
const schedule_module_1 = require("./schedule/schedule.module");
|
|
115
|
-
const session_module_1 = require("./session/session.module");
|
|
116
|
-
const slack_module_1 = require("./slack/slack.module");
|
|
117
|
-
const toolbox_module_1 = require("./toolbox/toolbox.module");
|
|
118
|
-
const transform_module_1 = require("./transform/transform.module");
|
|
119
|
-
const twilio_module_1 = require("./twilio/twilio.module");
|
|
120
|
-
const user_module_1 = require("./user/user.module");
|
|
121
|
-
const validation_module_1 = require("./validation/validation.module");
|
|
122
|
-
const vcard_module_1 = require("./vcard/vcard.module");
|
|
123
|
-
const webhook_module_1 = require("./webhook/webhook.module");
|
|
124
|
-
types_1.workflowModuleRegistry.register(ai_module_1.aiModule);
|
|
125
|
-
types_1.workflowModuleRegistry.register(capa_module_1.capaModule);
|
|
126
|
-
types_1.workflowModuleRegistry.register(chatbot_module_1.chatbotModule);
|
|
127
|
-
types_1.workflowModuleRegistry.register(chatgpt_module_1.chatgptModule);
|
|
128
|
-
types_1.workflowModuleRegistry.register(circle_module_1.circleModule);
|
|
129
|
-
types_1.workflowModuleRegistry.register(conditional_module_1.conditionalModule);
|
|
130
|
-
types_1.workflowModuleRegistry.register(email_module_1.emailModule);
|
|
131
|
-
types_1.workflowModuleRegistry.register(events_module_1.eventsModule);
|
|
132
|
-
types_1.workflowModuleRegistry.register(fintech_module_1.fintechModule);
|
|
133
|
-
types_1.workflowModuleRegistry.register(inbestgo_module_1.inbestgoModule);
|
|
134
|
-
types_1.workflowModuleRegistry.register(kira_module_1.kiraModule);
|
|
135
|
-
types_1.workflowModuleRegistry.register(kyc_module_1.kycModule);
|
|
136
|
-
types_1.workflowModuleRegistry.register(schedule_module_1.scheduleModule);
|
|
137
|
-
types_1.workflowModuleRegistry.register(session_module_1.sessionModule);
|
|
138
|
-
types_1.workflowModuleRegistry.register(slack_module_1.slackModule);
|
|
139
|
-
types_1.workflowModuleRegistry.register(toolbox_module_1.toolboxModule);
|
|
140
|
-
types_1.workflowModuleRegistry.register(transform_module_1.transformModule);
|
|
141
|
-
types_1.workflowModuleRegistry.register(twilio_module_1.twilioModule);
|
|
142
|
-
types_1.workflowModuleRegistry.register(user_module_1.userModule);
|
|
143
|
-
types_1.workflowModuleRegistry.register(validation_module_1.validationModule);
|
|
144
|
-
types_1.workflowModuleRegistry.register(vcard_module_1.vcardModule);
|
|
145
|
-
types_1.workflowModuleRegistry.register(webhook_module_1.webhookModule);
|
|
146
|
-
var ai_module_2 = require("./ai/ai.module");
|
|
147
|
-
Object.defineProperty(exports, "aiModule", { enumerable: true, get: function () { return ai_module_2.aiModule; } });
|
|
148
|
-
var capa_module_2 = require("./capa/capa.module");
|
|
149
|
-
Object.defineProperty(exports, "capaModule", { enumerable: true, get: function () { return capa_module_2.capaModule; } });
|
|
150
|
-
var chatbot_module_2 = require("./chatbot/chatbot.module");
|
|
151
|
-
Object.defineProperty(exports, "chatbotModule", { enumerable: true, get: function () { return chatbot_module_2.chatbotModule; } });
|
|
152
|
-
var chatgpt_module_2 = require("./chatgpt/chatgpt.module");
|
|
153
|
-
Object.defineProperty(exports, "chatgptModule", { enumerable: true, get: function () { return chatgpt_module_2.chatgptModule; } });
|
|
154
|
-
var circle_module_2 = require("./circle/circle.module");
|
|
155
|
-
Object.defineProperty(exports, "circleModule", { enumerable: true, get: function () { return circle_module_2.circleModule; } });
|
|
156
|
-
var conditional_module_2 = require("./conditional/conditional.module");
|
|
157
|
-
Object.defineProperty(exports, "conditionalModule", { enumerable: true, get: function () { return conditional_module_2.conditionalModule; } });
|
|
158
|
-
var email_module_2 = require("./email/email.module");
|
|
159
|
-
Object.defineProperty(exports, "emailModule", { enumerable: true, get: function () { return email_module_2.emailModule; } });
|
|
160
|
-
var events_module_2 = require("./events/events.module");
|
|
161
|
-
Object.defineProperty(exports, "eventsModule", { enumerable: true, get: function () { return events_module_2.eventsModule; } });
|
|
162
|
-
var fintech_module_2 = require("./fintech/fintech.module");
|
|
163
|
-
Object.defineProperty(exports, "fintechModule", { enumerable: true, get: function () { return fintech_module_2.fintechModule; } });
|
|
164
|
-
var inbestgo_module_2 = require("./inbestgo/inbestgo.module");
|
|
165
|
-
Object.defineProperty(exports, "inbestgoModule", { enumerable: true, get: function () { return inbestgo_module_2.inbestgoModule; } });
|
|
166
|
-
var kira_module_2 = require("./kira/kira.module");
|
|
167
|
-
Object.defineProperty(exports, "kiraModule", { enumerable: true, get: function () { return kira_module_2.kiraModule; } });
|
|
168
|
-
var kyc_module_2 = require("./kyc/kyc.module");
|
|
169
|
-
Object.defineProperty(exports, "kycModule", { enumerable: true, get: function () { return kyc_module_2.kycModule; } });
|
|
170
|
-
var schedule_module_2 = require("./schedule/schedule.module");
|
|
171
|
-
Object.defineProperty(exports, "scheduleModule", { enumerable: true, get: function () { return schedule_module_2.scheduleModule; } });
|
|
172
|
-
var session_module_2 = require("./session/session.module");
|
|
173
|
-
Object.defineProperty(exports, "sessionModule", { enumerable: true, get: function () { return session_module_2.sessionModule; } });
|
|
174
|
-
var slack_module_2 = require("./slack/slack.module");
|
|
175
|
-
Object.defineProperty(exports, "slackModule", { enumerable: true, get: function () { return slack_module_2.slackModule; } });
|
|
176
|
-
var toolbox_module_2 = require("./toolbox/toolbox.module");
|
|
177
|
-
Object.defineProperty(exports, "toolboxModule", { enumerable: true, get: function () { return toolbox_module_2.toolboxModule; } });
|
|
178
|
-
var transform_module_2 = require("./transform/transform.module");
|
|
179
|
-
Object.defineProperty(exports, "transformModule", { enumerable: true, get: function () { return transform_module_2.transformModule; } });
|
|
180
|
-
var twilio_module_2 = require("./twilio/twilio.module");
|
|
181
|
-
Object.defineProperty(exports, "twilioModule", { enumerable: true, get: function () { return twilio_module_2.twilioModule; } });
|
|
182
|
-
var user_module_2 = require("./user/user.module");
|
|
183
|
-
Object.defineProperty(exports, "userModule", { enumerable: true, get: function () { return user_module_2.userModule; } });
|
|
184
|
-
var validation_module_2 = require("./validation/validation.module");
|
|
185
|
-
Object.defineProperty(exports, "validationModule", { enumerable: true, get: function () { return validation_module_2.validationModule; } });
|
|
186
|
-
var vcard_module_2 = require("./vcard/vcard.module");
|
|
187
|
-
Object.defineProperty(exports, "vcardModule", { enumerable: true, get: function () { return vcard_module_2.vcardModule; } });
|
|
188
|
-
var webhook_module_2 = require("./webhook/webhook.module");
|
|
189
|
-
Object.defineProperty(exports, "webhookModule", { enumerable: true, get: function () { return webhook_module_2.webhookModule; } });
|
|
190
18
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/modules/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/modules/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AACA,0CAAwB"}
|
package/dist/modules/types.d.ts
CHANGED
|
@@ -101,6 +101,7 @@ export interface WorkflowModuleDefinition {
|
|
|
101
101
|
export declare class WorkflowModuleRegistry {
|
|
102
102
|
private modules;
|
|
103
103
|
register(module: WorkflowModuleDefinition): void;
|
|
104
|
+
clear(): void;
|
|
104
105
|
get(moduleKey: string): WorkflowModuleDefinition | undefined;
|
|
105
106
|
getAll(): WorkflowModuleDefinition[];
|
|
106
107
|
getActions(moduleKey: string): WorkflowActionTrigger[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/modules/types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/modules/types.ts"],"names":[],"mappings":"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"}
|