@pellux/goodvibes-contracts 1.1.0 → 1.3.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/artifacts/operator-contract.json +1416 -88
- package/dist/core-verbs.d.ts.map +1 -1
- package/dist/core-verbs.js +6 -1
- package/dist/generated/foundation-client-types.d.ts +5 -0
- package/dist/generated/foundation-client-types.d.ts.map +1 -1
- package/dist/generated/foundation-metadata.d.ts +2 -2
- package/dist/generated/foundation-metadata.js +2 -2
- package/dist/generated/operator-contract.d.ts.map +1 -1
- package/dist/generated/operator-contract.js +1416 -88
- package/dist/generated/operator-method-ids.d.ts +1 -1
- package/dist/generated/operator-method-ids.d.ts.map +1 -1
- package/dist/generated/operator-method-ids.js +7 -0
- package/package.json +1 -1
package/dist/core-verbs.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"core-verbs.d.ts","sourceRoot":"","sources":["../src/core-verbs.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AAEH;;;;;GAKG;AACH,eAAO,MAAM,UAAU,2MAyBb,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC;AAEjD;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,YAAY,uCAAwC,CAAC;AAElE,MAAM,MAAM,UAAU,GAAG,OAAO,YAAY,CAAC,MAAM,CAAC,CAAC;AAErD;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"core-verbs.d.ts","sourceRoot":"","sources":["../src/core-verbs.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AAEH;;;;;GAKG;AACH,eAAO,MAAM,UAAU,2MAyBb,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC;AAEjD;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,YAAY,uCAAwC,CAAC;AAElE,MAAM,MAAM,UAAU,GAAG,OAAO,YAAY,CAAC,MAAM,CAAC,CAAC;AAErD;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CAAC,CA2FrE,CAAC;AAEX,kFAAkF;AAClF,eAAO,MAAM,YAAY,EAAE,WAAW,CAAC,MAAM,CAE5C,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAC1B;IAAE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAA;CAAE,GAClD;IAAE,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,GAC7E;IAAE,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,UAAU,CAAA;CAAE,GACtD;IAAE,QAAQ,CAAC,IAAI,EAAE,cAAc,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC;AAE7D,wBAAgB,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAGnD;AAED,wBAAgB,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,kBAAkB,CAcjE"}
|
package/dist/core-verbs.js
CHANGED
|
@@ -158,7 +158,12 @@ export const EXEMPT_VERB_CATEGORIES = {
|
|
|
158
158
|
// `update-review` (mutates ONLY a record's review signal —
|
|
159
159
|
// reviewState/confidence/reviewer/staleReason — a narrower, honesty-load-
|
|
160
160
|
// bearing operation than a generic `update` that would also touch content).
|
|
161
|
-
'
|
|
161
|
+
// `search-semantic` is the store's scored semantic-ranking read (returns
|
|
162
|
+
// distance/similarity/score), a distinct engine verb from the literal `search`
|
|
163
|
+
// (a CORE verb) it sits beside — the MemoryStore engine has always exposed
|
|
164
|
+
// searchSemantic separately, so the wire mirrors that name rather than folding
|
|
165
|
+
// it into a flag on `search` whose output shape differs.
|
|
166
|
+
'add', 'update-review', 'search-semantic',
|
|
162
167
|
],
|
|
163
168
|
'push-delivery': [
|
|
164
169
|
// Browser-push delivery action: `verify` sends a live test notification to
|
|
@@ -6093,6 +6093,11 @@ export interface OperatorMethodOutputMap {
|
|
|
6093
6093
|
strategy: string;
|
|
6094
6094
|
budgetLimit: number;
|
|
6095
6095
|
estimatedTokens: number;
|
|
6096
|
+
truncated: boolean;
|
|
6097
|
+
totalCandidates: number;
|
|
6098
|
+
droppedCount: number;
|
|
6099
|
+
droppedForBudget: number;
|
|
6100
|
+
budgetExhausted: boolean;
|
|
6096
6101
|
items: readonly (({
|
|
6097
6102
|
kind: string;
|
|
6098
6103
|
id: string;
|