@almadar/std 6.5.0 → 6.5.2
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.ts +2 -2
- package/dist/index.js +123 -2
- package/dist/index.js.map +1 -1
- package/dist/modules/agent.d.ts +1 -1
- package/dist/modules/array.d.ts +1 -1
- package/dist/modules/async.d.ts +1 -1
- package/dist/modules/composition.d.ts +1 -1
- package/dist/modules/contract.d.ts +1 -1
- package/dist/modules/core.d.ts +1 -1
- package/dist/modules/core.js +123 -2
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/data.d.ts +1 -1
- package/dist/modules/format.d.ts +1 -1
- package/dist/modules/graph.d.ts +1 -1
- package/dist/modules/index.d.ts +1 -1
- package/dist/modules/index.js +123 -2
- package/dist/modules/index.js.map +1 -1
- package/dist/modules/math.d.ts +1 -1
- package/dist/modules/nn.d.ts +1 -1
- package/dist/modules/object.d.ts +1 -1
- package/dist/modules/os.d.ts +1 -1
- package/dist/modules/prob.d.ts +1 -1
- package/dist/modules/str.d.ts +1 -1
- package/dist/modules/tensor.d.ts +1 -1
- package/dist/modules/time.d.ts +1 -1
- package/dist/modules/train.d.ts +1 -1
- package/dist/modules/validate.d.ts +1 -1
- package/dist/registry.d.ts +1 -1
- package/dist/registry.js +123 -2
- package/dist/registry.js.map +1 -1
- package/dist/{types-DUr71Cgy.d.ts → types-D7dG8fBF.d.ts} +1 -1
- package/package.json +1 -1
|
@@ -92,7 +92,7 @@ type OperatorTypeRef = string | {
|
|
|
92
92
|
* validator, LLM skill gen, verify) can trace downstream reactions.
|
|
93
93
|
*/
|
|
94
94
|
interface OperatorEffectMeta {
|
|
95
|
-
kind: 'emit' | 'persist' | 'fetch' | 'render-ui' | 'navigate' | 'notify' | 'spawn' | 'despawn' | 'set' | 'call-service' | 'log' | 'custom';
|
|
95
|
+
kind: 'emit' | 'persist' | 'fetch' | 'ref' | 'render-ui' | 'navigate' | 'notify' | 'spawn' | 'despawn' | 'set' | 'call-service' | 'log' | 'custom';
|
|
96
96
|
/** What the effect puts onto the bus / state when it resolves. */
|
|
97
97
|
produces?: OperatorTypeRef;
|
|
98
98
|
/** Effect-specific config keys and their declared types. */
|