@almadar/std 16.36.0 → 16.38.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/canonical-operators.json +28 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +51 -0
- 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 +51 -0
- 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 +51 -0
- 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 +51 -0
- package/dist/registry.js.map +1 -1
- package/dist/{types-CdSN5hnD.d.ts → types-CW-UCfPF.d.ts} +1 -1
- package/package.json +1 -1
|
@@ -135,7 +135,7 @@ type OperatorTypeRef = string | {
|
|
|
135
135
|
* validator, LLM skill gen, verify) can trace downstream reactions.
|
|
136
136
|
*/
|
|
137
137
|
interface OperatorEffectMeta {
|
|
138
|
-
kind: 'emit' | 'persist' | 'fetch' | 'ref' | 'render-ui' | 'navigate' | 'notify' | 'spawn' | 'despawn' | 'set' | 'call-service' | 'log' | 'custom';
|
|
138
|
+
kind: 'emit' | 'persist' | 'fetch' | 'fetch-stream' | 'ref' | 'render-ui' | 'navigate' | 'notify' | 'spawn' | 'despawn' | 'set' | 'call-service' | 'log' | 'send-server' | 'custom';
|
|
139
139
|
/** What the effect puts onto the bus / state when it resolves. */
|
|
140
140
|
produces?: OperatorTypeRef;
|
|
141
141
|
/** Effect-specific config keys and their declared types. */
|