@falcondev-oss/workflow 0.3.0 → 0.4.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/index.d.mts +1 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -188,10 +188,12 @@ var WorkflowStep = class WorkflowStep {
|
|
|
188
188
|
//#endregion
|
|
189
189
|
//#region src/workflow.ts
|
|
190
190
|
var Workflow = class {
|
|
191
|
+
id;
|
|
191
192
|
opts;
|
|
192
193
|
queue;
|
|
193
194
|
queueEvents;
|
|
194
195
|
constructor(opts) {
|
|
196
|
+
this.id = opts.id;
|
|
195
197
|
this.opts = opts;
|
|
196
198
|
}
|
|
197
199
|
async work(opts) {
|
package/package.json
CHANGED