interaqt 3.0.1 → 3.0.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/agent/agentspace/knowledge/generator/api-reference.md +1 -1
- package/agent/agentspace/knowledge/usage/14-api-reference.md +1 -1
- package/agent/skill/interaqt-reference.md +1 -1
- package/dist/index.js +1019 -999
- package/dist/index.js.map +1 -1
- package/dist/runtime/Controller.d.ts.map +1 -1
- package/dist/runtime/computations/Average.d.ts.map +1 -1
- package/dist/runtime/computations/Summation.d.ts.map +1 -1
- package/dist/runtime/computations/aggregationTemplate.d.ts +8 -2
- package/dist/runtime/computations/aggregationTemplate.d.ts.map +1 -1
- package/dist/runtime/migration.d.ts.map +1 -1
- package/dist/storage/erstorage/CreationExecutor.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -839,7 +839,7 @@ Summation.create(config: SummationConfig): SummationInstance
|
|
|
839
839
|
|
|
840
840
|
**How it works**
|
|
841
841
|
|
|
842
|
-
Summation sums
|
|
842
|
+
Summation sums exactly one field path declared in `attributeQuery` (a single field like `['score']`, or a single nested path like `[['team', {attributeQuery: ['budget']}]]`). Declaring multiple sibling fields is a declaration-time error — use WeightedSummation with a callback to aggregate a value derived from multiple fields. If any value in the path is `undefined`, `null`, `NaN`, or `Infinity`, that value will be treated as 0.
|
|
843
843
|
|
|
844
844
|
**Examples**
|
|
845
845
|
```typescript
|
|
@@ -338,7 +338,7 @@ Summation.create(config: SummationConfig): KlassInstance<typeof Summation>
|
|
|
338
338
|
|
|
339
339
|
**How it works**
|
|
340
340
|
|
|
341
|
-
Summation sums
|
|
341
|
+
Summation sums exactly one field path declared in `attributeQuery` (a single field like `['score']`, or a single nested path like `[['team', {attributeQuery: ['budget']}]]`). Declaring multiple sibling fields is a declaration-time error — use WeightedSummation with a callback to aggregate a value derived from multiple fields. If any value in the path is `undefined`, `null`, `NaN`, or `Infinity`, that value will be treated as 0.
|
|
342
342
|
|
|
343
343
|
**Examples**
|
|
344
344
|
```typescript
|
|
@@ -184,7 +184,7 @@ Summation.create(args: {
|
|
|
184
184
|
}): SummationInstance
|
|
185
185
|
```
|
|
186
186
|
|
|
187
|
-
Sums
|
|
187
|
+
Sums exactly one field path declared in `attributeQuery` (a single field like `['score']`, or a single nested path like `[['team', {attributeQuery: ['budget']}]]`). Declaring multiple sibling fields is a declaration-time error — use WeightedSummation with a callback to aggregate a value derived from multiple fields. Undefined/null/NaN/Infinity values are treated as 0.
|
|
188
188
|
|
|
189
189
|
---
|
|
190
190
|
|