@memnexus-ai/sdk 1.64.4 → 1.65.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/dist/index.d.cts CHANGED
@@ -670,6 +670,8 @@ interface SearchRequest {
670
670
  servingFormat?: 'raw' | 'claims_replace';
671
671
  /** EXPERIMENTAL — dev-measurement only. Per-request override of the defensive claim-serving kill-switch (env CLAIM_DEFENSIVE_SERVING), used by the eval harness to run control/treatment arms in one pass. Honored ONLY when the server has CLAIM_DEFENSIVE_SERVING_PARAM_ENABLED=true (dev); otherwise silently ignored (no error). true forces the defensive path (stale-bullet suppression on clear conflict + clear date order); false forces the legacy annotate-only path. Absent → server default. Not for production use. */
672
672
  defensiveServing?: boolean;
673
+ /** EXPERIMENTAL — dev-measurement only. Per-request override of the v2.74 Phase B assistant-claims serving flag (env ASSISTANT_CLAIMS_SERVING), used by the eval harness to run treatment (conditional serving) vs control (Phase A exclusion) arms in one pass. Honored ONLY when the server has ASSISTANT_CLAIMS_SERVING_PARAM_ENABLED=true (dev); otherwise silently ignored (no error). true enables Phase B conditional serving (the F20 trigger still decides per-query whether assistant-origin claims surface); false forces Phase A exclusion. Absent → server default. Not for production use. */
674
+ assistantClaimsServing?: boolean;
673
675
  }
674
676
  interface Entity {
675
677
  /** Entity name */
@@ -2711,6 +2713,7 @@ declare class Memories {
2711
2713
  includeFacets?: boolean;
2712
2714
  servingFormat?: 'raw' | 'claims_replace';
2713
2715
  defensiveServing?: boolean;
2716
+ assistantClaimsServing?: boolean;
2714
2717
  }): Promise<HttpResponse<{
2715
2718
  data: SearchResult[];
2716
2719
  meta: SearchMeta;
package/dist/index.d.ts CHANGED
@@ -670,6 +670,8 @@ interface SearchRequest {
670
670
  servingFormat?: 'raw' | 'claims_replace';
671
671
  /** EXPERIMENTAL — dev-measurement only. Per-request override of the defensive claim-serving kill-switch (env CLAIM_DEFENSIVE_SERVING), used by the eval harness to run control/treatment arms in one pass. Honored ONLY when the server has CLAIM_DEFENSIVE_SERVING_PARAM_ENABLED=true (dev); otherwise silently ignored (no error). true forces the defensive path (stale-bullet suppression on clear conflict + clear date order); false forces the legacy annotate-only path. Absent → server default. Not for production use. */
672
672
  defensiveServing?: boolean;
673
+ /** EXPERIMENTAL — dev-measurement only. Per-request override of the v2.74 Phase B assistant-claims serving flag (env ASSISTANT_CLAIMS_SERVING), used by the eval harness to run treatment (conditional serving) vs control (Phase A exclusion) arms in one pass. Honored ONLY when the server has ASSISTANT_CLAIMS_SERVING_PARAM_ENABLED=true (dev); otherwise silently ignored (no error). true enables Phase B conditional serving (the F20 trigger still decides per-query whether assistant-origin claims surface); false forces Phase A exclusion. Absent → server default. Not for production use. */
674
+ assistantClaimsServing?: boolean;
673
675
  }
674
676
  interface Entity {
675
677
  /** Entity name */
@@ -2711,6 +2713,7 @@ declare class Memories {
2711
2713
  includeFacets?: boolean;
2712
2714
  servingFormat?: 'raw' | 'claims_replace';
2713
2715
  defensiveServing?: boolean;
2716
+ assistantClaimsServing?: boolean;
2714
2717
  }): Promise<HttpResponse<{
2715
2718
  data: SearchResult[];
2716
2719
  meta: SearchMeta;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memnexus-ai/sdk",
3
- "version": "1.64.4",
3
+ "version": "1.65.0",
4
4
  "description": "Official Node.js SDK for the MemNexus API",
5
5
  "license": "Proprietary",
6
6
  "type": "module",