@cadenza.io/core 1.7.1 → 1.7.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/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -753,7 +753,7 @@ declare class Cadenza {
|
|
|
753
753
|
static registry: GraphRegistry;
|
|
754
754
|
protected static isBootstrapped: boolean;
|
|
755
755
|
protected static mode: CadenzaMode;
|
|
756
|
-
|
|
756
|
+
static bootstrap(): void;
|
|
757
757
|
static get runStrategy(): {
|
|
758
758
|
PARALLEL: GraphAsyncRun;
|
|
759
759
|
SEQUENTIAL: GraphStandardRun;
|
|
@@ -764,7 +764,7 @@ declare class Cadenza {
|
|
|
764
764
|
* @param name The name to validate.
|
|
765
765
|
* @throws Error if invalid.
|
|
766
766
|
*/
|
|
767
|
-
|
|
767
|
+
static validateName(name: string): void;
|
|
768
768
|
/**
|
|
769
769
|
* Creates a standard Task and registers it in the GraphRegistry.
|
|
770
770
|
* @param name Unique identifier for the task.
|
|
@@ -896,4 +896,4 @@ declare class SignalTask extends Task {
|
|
|
896
896
|
constructor(signal: string, description?: string);
|
|
897
897
|
}
|
|
898
898
|
|
|
899
|
-
export { type AnyObject, DebounceTask, EphemeralTask, GraphContext, GraphRegistry, GraphRoutine, GraphRun, type SchemaConstraints, type SchemaDefinition, type SchemaType, SignalEmitter, SignalParticipant, SignalTask, Task, type TaskOptions, type TaskResult, type ThrottleTagGetter, Cadenza as default };
|
|
899
|
+
export { type AnyObject, type CadenzaMode, type DebounceOptions, DebounceTask, EphemeralTask, GraphContext, GraphRegistry, GraphRoutine, GraphRun, GraphRunner, type SchemaConstraints, type SchemaDefinition, type SchemaType, SignalBroker, SignalEmitter, SignalParticipant, SignalTask, Task, type TaskFunction, type TaskOptions, type TaskResult, type ThrottleTagGetter, Cadenza as default };
|
package/dist/index.d.ts
CHANGED
|
@@ -753,7 +753,7 @@ declare class Cadenza {
|
|
|
753
753
|
static registry: GraphRegistry;
|
|
754
754
|
protected static isBootstrapped: boolean;
|
|
755
755
|
protected static mode: CadenzaMode;
|
|
756
|
-
|
|
756
|
+
static bootstrap(): void;
|
|
757
757
|
static get runStrategy(): {
|
|
758
758
|
PARALLEL: GraphAsyncRun;
|
|
759
759
|
SEQUENTIAL: GraphStandardRun;
|
|
@@ -764,7 +764,7 @@ declare class Cadenza {
|
|
|
764
764
|
* @param name The name to validate.
|
|
765
765
|
* @throws Error if invalid.
|
|
766
766
|
*/
|
|
767
|
-
|
|
767
|
+
static validateName(name: string): void;
|
|
768
768
|
/**
|
|
769
769
|
* Creates a standard Task and registers it in the GraphRegistry.
|
|
770
770
|
* @param name Unique identifier for the task.
|
|
@@ -896,4 +896,4 @@ declare class SignalTask extends Task {
|
|
|
896
896
|
constructor(signal: string, description?: string);
|
|
897
897
|
}
|
|
898
898
|
|
|
899
|
-
export { type AnyObject, DebounceTask, EphemeralTask, GraphContext, GraphRegistry, GraphRoutine, GraphRun, type SchemaConstraints, type SchemaDefinition, type SchemaType, SignalEmitter, SignalParticipant, SignalTask, Task, type TaskOptions, type TaskResult, type ThrottleTagGetter, Cadenza as default };
|
|
899
|
+
export { type AnyObject, type CadenzaMode, type DebounceOptions, DebounceTask, EphemeralTask, GraphContext, GraphRegistry, GraphRoutine, GraphRun, GraphRunner, type SchemaConstraints, type SchemaDefinition, type SchemaType, SignalBroker, SignalEmitter, SignalParticipant, SignalTask, Task, type TaskFunction, type TaskOptions, type TaskResult, type ThrottleTagGetter, Cadenza as default };
|
package/dist/index.js
CHANGED
|
@@ -26,6 +26,8 @@ __export(index_exports, {
|
|
|
26
26
|
GraphRegistry: () => GraphRegistry,
|
|
27
27
|
GraphRoutine: () => GraphRoutine,
|
|
28
28
|
GraphRun: () => GraphRun,
|
|
29
|
+
GraphRunner: () => GraphRunner,
|
|
30
|
+
SignalBroker: () => SignalBroker,
|
|
29
31
|
SignalEmitter: () => SignalEmitter,
|
|
30
32
|
SignalParticipant: () => SignalParticipant,
|
|
31
33
|
SignalTask: () => SignalTask,
|
|
@@ -3060,6 +3062,8 @@ var index_default = Cadenza;
|
|
|
3060
3062
|
GraphRegistry,
|
|
3061
3063
|
GraphRoutine,
|
|
3062
3064
|
GraphRun,
|
|
3065
|
+
GraphRunner,
|
|
3066
|
+
SignalBroker,
|
|
3063
3067
|
SignalEmitter,
|
|
3064
3068
|
SignalParticipant,
|
|
3065
3069
|
SignalTask,
|