@tasker-systems/tasker 0.1.1 → 0.1.3
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 +118 -0
- package/dist/events/index.d.ts +2 -2
- package/dist/ffi/index.d.ts +139 -139
- package/dist/ffi/index.js +36 -12
- package/dist/ffi/index.js.map +1 -1
- package/dist/{index-B3BcknlZ.d.ts → index-CTl8lGpU.d.ts} +1 -1
- package/dist/index.d.ts +167 -7
- package/dist/index.js +182 -14
- package/dist/index.js.map +1 -1
- package/dist/{runtime-interface-CE4viUt7.d.ts → runtime-interface-D940vUzy.d.ts} +1 -1
- package/native/libtasker_ts-darwin-arm64.dylib +0 -0
- package/native/libtasker_ts-linux-x64.so +0 -0
- package/package.json +2 -1
|
@@ -691,4 +691,4 @@ declare abstract class BaseTaskerRuntime implements TaskerRuntime {
|
|
|
691
691
|
protected toJson(value: unknown): string;
|
|
692
692
|
}
|
|
693
693
|
|
|
694
|
-
export { BaseTaskerRuntime as B, type
|
|
694
|
+
export { BaseTaskerRuntime as B, type ClientTaskResponse as C, type DependencyResult as D, type FfiDomainEvent as F, type HandlerDefinitionDto as H, type LogFields as L, type OrchestrationMetadata as O, type RetryConfiguration as R, type StepDefinition as S, type TaskerRuntime as T, type WorkerStatus as W, type ClientTaskListResponse as a, type ClientStepResponse as b, type ClientStepAuditResponse as c, type ClientHealthResponse as d, type BootstrapConfig as e, type BootstrapResult as f, type ClientPaginationInfo as g, type ClientResult as h, type ClientStepReadiness as i, type ClientTaskRequest as j, type FfiDispatchMetrics as k, type FfiStepEvent as l, type HandlerDefinition as m, type StepExecutionError as n, type StepExecutionMetadata as o, type StepExecutionResult as p, type StopResult as q, type Task as r, type WorkflowStep as s, type CheckpointYieldData as t, type FfiDomainEventMetadata as u };
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tasker-systems/tasker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "TypeScript worker for tasker-core workflow orchestration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"dist",
|
|
25
|
+
"native",
|
|
25
26
|
"README.md"
|
|
26
27
|
],
|
|
27
28
|
"scripts": {
|