@meshflow/core 0.4.3 → 0.4.4
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/index.d.mts +7 -6
- package/index.d.ts +7 -6
- package/metafile-cjs.json +1 -1
- package/metafile-esm.json +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -240,10 +240,11 @@ interface StandardUITrigger<T> {
|
|
|
240
240
|
}
|
|
241
241
|
interface logicApi<TKeys extends MeshPath> {
|
|
242
242
|
slot: {
|
|
243
|
-
triggerTargets: Array<Record<TKeys, any>>;
|
|
243
|
+
triggerTargets: Array<Record<TKeys | InternalKeys, any>>;
|
|
244
244
|
affectedTatget: any;
|
|
245
245
|
};
|
|
246
246
|
}
|
|
247
|
+
type InternalKeys = 'path' | 'uid' | 'type' | 'meta' | 'state';
|
|
247
248
|
interface SetRuleOptions<NM, TKeys extends KeysOfUnion<NM>> {
|
|
248
249
|
value?: any;
|
|
249
250
|
priority?: number;
|
|
@@ -252,7 +253,7 @@ interface SetRuleOptions<NM, TKeys extends KeysOfUnion<NM>> {
|
|
|
252
253
|
effect?: (args: any) => any;
|
|
253
254
|
effectArgs?: Array<KeysOfUnion<NM>>;
|
|
254
255
|
cacheStrategy?: "none" | "shallow";
|
|
255
|
-
triggerKeys?: Array<TKeys>;
|
|
256
|
+
triggerKeys?: Array<TKeys | 'path' | 'uid'>;
|
|
256
257
|
}
|
|
257
258
|
type EntangleOp = "add" | "intersect" | "union" | "merge" | "remove";
|
|
258
259
|
interface GhostProposalApi<T> {
|
|
@@ -317,7 +318,7 @@ declare function useEngineInstance<T, P extends MeshPath, S = any, M extends Rec
|
|
|
317
318
|
} & M;
|
|
318
319
|
plugins: {};
|
|
319
320
|
}): {
|
|
320
|
-
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: KeysOfUnion<NM
|
|
321
|
+
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: KeysOfUnion<NM> | (string & {}), options: SetRuleOptions<NM, TKeys>) => void;
|
|
321
322
|
SetRules: <TKeys extends KeysOfUnion<NM>>(outDegreePaths: P[], inDegreePath: P, key: KeysOfUnion<NM> | (string & {}), options: SetRuleOptions<NM, TKeys>) => void;
|
|
322
323
|
SetStrategy: (path: P, key: KeysOfUnion<NM>, strategy: DefaultStrategy) => void;
|
|
323
324
|
useEntangle: (config: EntangleArgType<P>) => void;
|
|
@@ -366,7 +367,7 @@ declare function useEngineInstance<T, P extends MeshPath, S = any, M extends Rec
|
|
|
366
367
|
notifyAll: () => Promise<void>;
|
|
367
368
|
batchNotify: (updates: {
|
|
368
369
|
path: P;
|
|
369
|
-
key:
|
|
370
|
+
key: (string & {}) | KeysOfUnion<NM>;
|
|
370
371
|
value: any;
|
|
371
372
|
}[]) => void;
|
|
372
373
|
useEntangle: (config: EntangleArgType<P>) => void;
|
|
@@ -511,7 +512,7 @@ M extends Record<string, any>, NM extends Record<string, any> = InferLeafType<S>
|
|
|
511
512
|
signalTrigger: (signal: T) => void;
|
|
512
513
|
};
|
|
513
514
|
}) => Engine<{
|
|
514
|
-
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
515
|
+
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: (string & {}) | KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
515
516
|
SetRules: <TKeys extends KeysOfUnion<NM>>(outDegreePaths: P[], inDegreePath: P, key: (string & {}) | KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
516
517
|
SetStrategy: (path: P, key: KeysOfUnion<NM>, strategy: DefaultStrategy) => void;
|
|
517
518
|
useEntangle: (config: EntangleArgType<P>) => void;
|
|
@@ -602,7 +603,7 @@ declare const useMeshFlow: <const S extends Record<string, any> | any[], T, M ex
|
|
|
602
603
|
signalTrigger: (signal: T) => void;
|
|
603
604
|
};
|
|
604
605
|
}) => Engine<{
|
|
605
|
-
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
606
|
+
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: (string & {}) | KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
606
607
|
SetRules: <TKeys extends KeysOfUnion<NM>>(outDegreePaths: P[], inDegreePath: P, key: (string & {}) | KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
607
608
|
SetStrategy: (path: P, key: KeysOfUnion<NM>, strategy: DefaultStrategy) => void;
|
|
608
609
|
useEntangle: (config: EntangleArgType<P>) => void;
|
package/index.d.ts
CHANGED
|
@@ -240,10 +240,11 @@ interface StandardUITrigger<T> {
|
|
|
240
240
|
}
|
|
241
241
|
interface logicApi<TKeys extends MeshPath> {
|
|
242
242
|
slot: {
|
|
243
|
-
triggerTargets: Array<Record<TKeys, any>>;
|
|
243
|
+
triggerTargets: Array<Record<TKeys | InternalKeys, any>>;
|
|
244
244
|
affectedTatget: any;
|
|
245
245
|
};
|
|
246
246
|
}
|
|
247
|
+
type InternalKeys = 'path' | 'uid' | 'type' | 'meta' | 'state';
|
|
247
248
|
interface SetRuleOptions<NM, TKeys extends KeysOfUnion<NM>> {
|
|
248
249
|
value?: any;
|
|
249
250
|
priority?: number;
|
|
@@ -252,7 +253,7 @@ interface SetRuleOptions<NM, TKeys extends KeysOfUnion<NM>> {
|
|
|
252
253
|
effect?: (args: any) => any;
|
|
253
254
|
effectArgs?: Array<KeysOfUnion<NM>>;
|
|
254
255
|
cacheStrategy?: "none" | "shallow";
|
|
255
|
-
triggerKeys?: Array<TKeys>;
|
|
256
|
+
triggerKeys?: Array<TKeys | 'path' | 'uid'>;
|
|
256
257
|
}
|
|
257
258
|
type EntangleOp = "add" | "intersect" | "union" | "merge" | "remove";
|
|
258
259
|
interface GhostProposalApi<T> {
|
|
@@ -317,7 +318,7 @@ declare function useEngineInstance<T, P extends MeshPath, S = any, M extends Rec
|
|
|
317
318
|
} & M;
|
|
318
319
|
plugins: {};
|
|
319
320
|
}): {
|
|
320
|
-
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: KeysOfUnion<NM
|
|
321
|
+
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: KeysOfUnion<NM> | (string & {}), options: SetRuleOptions<NM, TKeys>) => void;
|
|
321
322
|
SetRules: <TKeys extends KeysOfUnion<NM>>(outDegreePaths: P[], inDegreePath: P, key: KeysOfUnion<NM> | (string & {}), options: SetRuleOptions<NM, TKeys>) => void;
|
|
322
323
|
SetStrategy: (path: P, key: KeysOfUnion<NM>, strategy: DefaultStrategy) => void;
|
|
323
324
|
useEntangle: (config: EntangleArgType<P>) => void;
|
|
@@ -366,7 +367,7 @@ declare function useEngineInstance<T, P extends MeshPath, S = any, M extends Rec
|
|
|
366
367
|
notifyAll: () => Promise<void>;
|
|
367
368
|
batchNotify: (updates: {
|
|
368
369
|
path: P;
|
|
369
|
-
key:
|
|
370
|
+
key: (string & {}) | KeysOfUnion<NM>;
|
|
370
371
|
value: any;
|
|
371
372
|
}[]) => void;
|
|
372
373
|
useEntangle: (config: EntangleArgType<P>) => void;
|
|
@@ -511,7 +512,7 @@ M extends Record<string, any>, NM extends Record<string, any> = InferLeafType<S>
|
|
|
511
512
|
signalTrigger: (signal: T) => void;
|
|
512
513
|
};
|
|
513
514
|
}) => Engine<{
|
|
514
|
-
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
515
|
+
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: (string & {}) | KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
515
516
|
SetRules: <TKeys extends KeysOfUnion<NM>>(outDegreePaths: P[], inDegreePath: P, key: (string & {}) | KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
516
517
|
SetStrategy: (path: P, key: KeysOfUnion<NM>, strategy: DefaultStrategy) => void;
|
|
517
518
|
useEntangle: (config: EntangleArgType<P>) => void;
|
|
@@ -602,7 +603,7 @@ declare const useMeshFlow: <const S extends Record<string, any> | any[], T, M ex
|
|
|
602
603
|
signalTrigger: (signal: T) => void;
|
|
603
604
|
};
|
|
604
605
|
}) => Engine<{
|
|
605
|
-
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
606
|
+
SetRule: <TKeys extends KeysOfUnion<NM>>(outDegreePath: P, inDegreePath: P, key: (string & {}) | KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
606
607
|
SetRules: <TKeys extends KeysOfUnion<NM>>(outDegreePaths: P[], inDegreePath: P, key: (string & {}) | KeysOfUnion<NM>, options: SetRuleOptions<NM, TKeys>) => void;
|
|
607
608
|
SetStrategy: (path: P, key: KeysOfUnion<NM>, strategy: DefaultStrategy) => void;
|
|
608
609
|
useEntangle: (config: EntangleArgType<P>) => void;
|
package/metafile-cjs.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"utils/core/types/types.ts":{"bytes":
|
|
1
|
+
{"inputs":{"utils/core/types/types.ts":{"bytes":7400,"imports":[{"path":"../utils/util","kind":"import-statement","external":true}],"format":"esm"},"utils/core/engine/bucket.ts":{"bytes":20458,"imports":[],"format":"esm"},"utils/core/dependency/useSetRule.ts":{"bytes":9719,"imports":[{"path":"utils/core/engine/bucket.ts","kind":"import-statement","original":"../engine/bucket"},{"path":"../types/types","kind":"import-statement","external":true},{"path":"../utils/util","kind":"import-statement","external":true}],"format":"esm"},"utils/core/dependency/useStrategy.ts":{"bytes":557,"imports":[{"path":"../engine/bucket","kind":"import-statement","external":true},{"path":"../utils/util","kind":"import-statement","external":true}],"format":"esm"},"utils/core/plugins/useExecutionTrace.ts":{"bytes":3887,"imports":[{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"}],"format":"esm"},"utils/core/dependency/useDepenency.ts":{"bytes":6586,"imports":[{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"}],"format":"esm"},"utils/core/hooks/useCreateHook.ts":{"bytes":436,"imports":[],"format":"esm"},"utils/core/hooks/useOnError.ts":{"bytes":481,"imports":[{"path":"utils/core/hooks/useCreateHook.ts","kind":"import-statement","original":"./useCreateHook"},{"path":"../types/types","kind":"import-statement","external":true}],"format":"esm"},"utils/core/hooks/useOnSuccess.ts":{"bytes":216,"imports":[{"path":"utils/core/hooks/useCreateHook.ts","kind":"import-statement","original":"./useCreateHook"}],"format":"esm"},"utils/core/plugins/usePlugin.ts":{"bytes":2971,"imports":[{"path":"../types/types","kind":"import-statement","external":true}],"format":"esm"},"utils/core/hooks/useOnStart.ts":{"bytes":210,"imports":[{"path":"utils/core/hooks/useCreateHook.ts","kind":"import-statement","original":"./useCreateHook"}],"format":"esm"},"utils/core/utils/util.ts":{"bytes":6875,"imports":[],"format":"esm"},"utils/core/engine/useMeshTask.ts":{"bytes":82718,"imports":[{"path":"utils/core/utils/util.ts","kind":"import-statement","original":"../utils/util"},{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"},{"path":"./bucket","kind":"import-statement","external":true}],"format":"esm"},"utils/core/engine/useMeshNode.ts":{"bytes":4009,"imports":[{"path":"../types/types","kind":"import-statement","external":true}],"format":"esm"},"utils/core/dependency/useSetEntangle.ts":{"bytes":13440,"imports":[{"path":"../types/types","kind":"import-statement","external":true},{"path":"../utils/util","kind":"import-statement","external":true}],"format":"esm"},"utils/core/engine/useScheduler.ts":{"bytes":13453,"imports":[{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"},{"path":"utils/core/engine/useMeshTask.ts","kind":"import-statement","original":"./useMeshTask"},{"path":"utils/core/engine/useMeshNode.ts","kind":"import-statement","original":"./useMeshNode"},{"path":"utils/core/utils/util.ts","kind":"import-statement","original":"../utils/util"},{"path":"utils/core/dependency/useSetEntangle.ts","kind":"import-statement","original":"../dependency/useSetEntangle"},{"path":"./bucket","kind":"import-statement","external":true}],"format":"esm"},"utils/core/engine/useEngineInstance.ts":{"bytes":13128,"imports":[{"path":"utils/core/dependency/useSetRule.ts","kind":"import-statement","original":"../dependency/useSetRule"},{"path":"utils/core/dependency/useStrategy.ts","kind":"import-statement","original":"../dependency/useStrategy"},{"path":"utils/core/plugins/useExecutionTrace.ts","kind":"import-statement","original":"../plugins/useExecutionTrace"},{"path":"utils/core/dependency/useDepenency.ts","kind":"import-statement","original":"../dependency/useDepenency"},{"path":"utils/core/hooks/useOnError.ts","kind":"import-statement","original":"../hooks/useOnError"},{"path":"utils/core/hooks/useOnSuccess.ts","kind":"import-statement","original":"../hooks/useOnSuccess"},{"path":"utils/core/plugins/usePlugin.ts","kind":"import-statement","original":"../plugins/usePlugin"},{"path":"utils/core/hooks/useOnStart.ts","kind":"import-statement","original":"../hooks/useOnStart"},{"path":"../types/types","kind":"import-statement","external":true},{"path":"utils/core/engine/useScheduler.ts","kind":"import-statement","original":"./useScheduler"},{"path":"../utils/util","kind":"import-statement","external":true}],"format":"esm"},"utils/core/engine/useEngineManager.ts":{"bytes":11068,"imports":[{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"},{"path":"../utils/util","kind":"import-statement","external":true},{"path":"utils/core/engine/useEngineInstance.ts","kind":"import-statement","original":"./useEngineInstance"},{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"},{"path":"utils/core/engine/bucket.ts","kind":"import-statement","original":"../engine/bucket"},{"path":"utils/core/engine/useScheduler.ts","kind":"import-statement","original":"../engine/useScheduler"}],"format":"esm"}},"outputs":{"lib-dist/index.js":{"imports":[],"exports":["DefaultStrategy","MeshFlowEventsName","TriggerCause","deleteEngine","useEngine","useEngineManager","useMeshFlow","useMeshFlowDefiner","useScheduler"],"entryPoint":"utils/core/engine/useEngineManager.ts","inputs":{"utils/core/types/types.ts":{"bytesInOutput":735},"utils/core/engine/bucket.ts":{"bytesInOutput":4991},"utils/core/dependency/useSetRule.ts":{"bytesInOutput":2105},"utils/core/dependency/useStrategy.ts":{"bytesInOutput":128},"utils/core/plugins/useExecutionTrace.ts":{"bytesInOutput":663},"utils/core/dependency/useDepenency.ts":{"bytesInOutput":1034},"utils/core/hooks/useCreateHook.ts":{"bytesInOutput":122},"utils/core/hooks/useOnError.ts":{"bytesInOutput":68},"utils/core/hooks/useOnSuccess.ts":{"bytesInOutput":72},"utils/core/plugins/usePlugin.ts":{"bytesInOutput":424},"utils/core/hooks/useOnStart.ts":{"bytesInOutput":68},"utils/core/utils/util.ts":{"bytesInOutput":462},"utils/core/engine/useMeshTask.ts":{"bytesInOutput":8773},"utils/core/engine/useMeshNode.ts":{"bytesInOutput":891},"utils/core/dependency/useSetEntangle.ts":{"bytesInOutput":4029},"utils/core/engine/useScheduler.ts":{"bytesInOutput":2887},"utils/core/engine/useEngineInstance.ts":{"bytesInOutput":2501},"utils/core/engine/useEngineManager.ts":{"bytesInOutput":1853}},"bytes":32001}}}
|
package/metafile-esm.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"utils/core/types/types.ts":{"bytes":
|
|
1
|
+
{"inputs":{"utils/core/types/types.ts":{"bytes":7400,"imports":[{"path":"../utils/util","kind":"import-statement","external":true}],"format":"esm"},"utils/core/engine/bucket.ts":{"bytes":20458,"imports":[],"format":"esm"},"utils/core/dependency/useSetRule.ts":{"bytes":9719,"imports":[{"path":"utils/core/engine/bucket.ts","kind":"import-statement","original":"../engine/bucket"},{"path":"../types/types","kind":"import-statement","external":true},{"path":"../utils/util","kind":"import-statement","external":true}],"format":"esm"},"utils/core/dependency/useStrategy.ts":{"bytes":557,"imports":[{"path":"../engine/bucket","kind":"import-statement","external":true},{"path":"../utils/util","kind":"import-statement","external":true}],"format":"esm"},"utils/core/plugins/useExecutionTrace.ts":{"bytes":3887,"imports":[{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"}],"format":"esm"},"utils/core/dependency/useDepenency.ts":{"bytes":6586,"imports":[{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"}],"format":"esm"},"utils/core/hooks/useCreateHook.ts":{"bytes":436,"imports":[],"format":"esm"},"utils/core/hooks/useOnError.ts":{"bytes":481,"imports":[{"path":"utils/core/hooks/useCreateHook.ts","kind":"import-statement","original":"./useCreateHook"},{"path":"../types/types","kind":"import-statement","external":true}],"format":"esm"},"utils/core/hooks/useOnSuccess.ts":{"bytes":216,"imports":[{"path":"utils/core/hooks/useCreateHook.ts","kind":"import-statement","original":"./useCreateHook"}],"format":"esm"},"utils/core/plugins/usePlugin.ts":{"bytes":2971,"imports":[{"path":"../types/types","kind":"import-statement","external":true}],"format":"esm"},"utils/core/hooks/useOnStart.ts":{"bytes":210,"imports":[{"path":"utils/core/hooks/useCreateHook.ts","kind":"import-statement","original":"./useCreateHook"}],"format":"esm"},"utils/core/utils/util.ts":{"bytes":6875,"imports":[],"format":"esm"},"utils/core/engine/useMeshTask.ts":{"bytes":82718,"imports":[{"path":"utils/core/utils/util.ts","kind":"import-statement","original":"../utils/util"},{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"},{"path":"./bucket","kind":"import-statement","external":true}],"format":"esm"},"utils/core/engine/useMeshNode.ts":{"bytes":4009,"imports":[{"path":"../types/types","kind":"import-statement","external":true}],"format":"esm"},"utils/core/dependency/useSetEntangle.ts":{"bytes":13440,"imports":[{"path":"../types/types","kind":"import-statement","external":true},{"path":"../utils/util","kind":"import-statement","external":true}],"format":"esm"},"utils/core/engine/useScheduler.ts":{"bytes":13453,"imports":[{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"},{"path":"utils/core/engine/useMeshTask.ts","kind":"import-statement","original":"./useMeshTask"},{"path":"utils/core/engine/useMeshNode.ts","kind":"import-statement","original":"./useMeshNode"},{"path":"utils/core/utils/util.ts","kind":"import-statement","original":"../utils/util"},{"path":"utils/core/dependency/useSetEntangle.ts","kind":"import-statement","original":"../dependency/useSetEntangle"},{"path":"./bucket","kind":"import-statement","external":true}],"format":"esm"},"utils/core/engine/useEngineInstance.ts":{"bytes":13128,"imports":[{"path":"utils/core/dependency/useSetRule.ts","kind":"import-statement","original":"../dependency/useSetRule"},{"path":"utils/core/dependency/useStrategy.ts","kind":"import-statement","original":"../dependency/useStrategy"},{"path":"utils/core/plugins/useExecutionTrace.ts","kind":"import-statement","original":"../plugins/useExecutionTrace"},{"path":"utils/core/dependency/useDepenency.ts","kind":"import-statement","original":"../dependency/useDepenency"},{"path":"utils/core/hooks/useOnError.ts","kind":"import-statement","original":"../hooks/useOnError"},{"path":"utils/core/hooks/useOnSuccess.ts","kind":"import-statement","original":"../hooks/useOnSuccess"},{"path":"utils/core/plugins/usePlugin.ts","kind":"import-statement","original":"../plugins/usePlugin"},{"path":"utils/core/hooks/useOnStart.ts","kind":"import-statement","original":"../hooks/useOnStart"},{"path":"../types/types","kind":"import-statement","external":true},{"path":"utils/core/engine/useScheduler.ts","kind":"import-statement","original":"./useScheduler"},{"path":"../utils/util","kind":"import-statement","external":true}],"format":"esm"},"utils/core/engine/useEngineManager.ts":{"bytes":11068,"imports":[{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"},{"path":"../utils/util","kind":"import-statement","external":true},{"path":"utils/core/engine/useEngineInstance.ts","kind":"import-statement","original":"./useEngineInstance"},{"path":"utils/core/types/types.ts","kind":"import-statement","original":"../types/types"},{"path":"utils/core/engine/bucket.ts","kind":"import-statement","original":"../engine/bucket"},{"path":"utils/core/engine/useScheduler.ts","kind":"import-statement","original":"../engine/useScheduler"}],"format":"esm"}},"outputs":{"lib-dist/index.mjs":{"imports":[],"exports":["DefaultStrategy","MeshFlowEventsName","TriggerCause","deleteEngine","useEngine","useEngineManager","useMeshFlow","useMeshFlowDefiner","useScheduler"],"entryPoint":"utils/core/engine/useEngineManager.ts","inputs":{"utils/core/types/types.ts":{"bytesInOutput":735},"utils/core/engine/bucket.ts":{"bytesInOutput":4991},"utils/core/dependency/useSetRule.ts":{"bytesInOutput":2105},"utils/core/dependency/useStrategy.ts":{"bytesInOutput":128},"utils/core/plugins/useExecutionTrace.ts":{"bytesInOutput":663},"utils/core/dependency/useDepenency.ts":{"bytesInOutput":1034},"utils/core/hooks/useCreateHook.ts":{"bytesInOutput":122},"utils/core/hooks/useOnError.ts":{"bytesInOutput":68},"utils/core/hooks/useOnSuccess.ts":{"bytesInOutput":72},"utils/core/plugins/usePlugin.ts":{"bytesInOutput":424},"utils/core/hooks/useOnStart.ts":{"bytesInOutput":68},"utils/core/utils/util.ts":{"bytesInOutput":462},"utils/core/engine/useMeshTask.ts":{"bytesInOutput":8773},"utils/core/engine/useMeshNode.ts":{"bytesInOutput":891},"utils/core/dependency/useSetEntangle.ts":{"bytesInOutput":4029},"utils/core/engine/useScheduler.ts":{"bytesInOutput":2887},"utils/core/engine/useEngineInstance.ts":{"bytesInOutput":2501},"utils/core/engine/useEngineManager.ts":{"bytesInOutput":1853}},"bytes":32001}}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshflow/core",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "A logic orchestration engine utilizing topological scheduling and watermark control to resolve asynchronous race conditions in complex dependency linkages.”",
|
|
5
5
|
"main": "./index.cjs",
|
|
6
6
|
"module": "./index.js",
|