bitfab-cli 0.2.342 → 0.2.343

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.
Files changed (2) hide show
  1. package/dist/index.js +8 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -23510,6 +23510,10 @@ var searchTraces = {
23510
23510
  drillDown: external_exports.preprocess(parseJsonString, external_exports.boolean()).optional().describe("If true, merge with previous search filters to narrow results"),
23511
23511
  traceIds: external_exports.preprocess(parseJsonString, external_exports.array(external_exports.uuid())).optional().describe("Specific trace IDs to fetch"),
23512
23512
  environment: external_exports.string().optional().describe("Filter by environment (e.g., production, staging, development, preview). Omit to search across all environments."),
23513
+ callerMetadata: external_exports.record(external_exports.string().regex(/^[A-Za-z0-9_.:-]{1,40}$/), external_exports.string().max(500)).refine((value) => Object.keys(value).length <= 10).transform((value) => Object.fromEntries(Object.entries(value).map(([key, item]) => [
23514
+ key.toLowerCase(),
23515
+ item.toLowerCase()
23516
+ ]))).optional().describe("Filter by up to 10 caller metadata key/value pairs. Matches exact values case-insensitively; all pairs must match."),
23513
23517
  labelSource: external_exports.enum(["human", "agent"]).optional().describe('Filter by who authored the label: "human" for human-authored labels only, "agent" for agent-authored labels only. Omit to include any source. This is a pure authorship filter - for trust/validation, use the separate `validated` parameter.'),
23514
23518
  validated: external_exports.preprocess(parseJsonString, external_exports.boolean()).optional().describe('If true, only return traces with a validated label - a label that is either human-authored OR an agent-authored label that a human has approved (`approvedAt` is set). Use this when you want trustworthy/reviewed labels. Combine with `labelSource: "agent"` to get only approved-agent labels (excluding pure-human labels). Omit (or pass false) to include unapproved labels too.'),
23515
23519
  labelResult: external_exports.preprocess(parseJsonString, external_exports.boolean()).optional().describe("Filter by label result: true for passing labels, false for failing labels"),
@@ -24569,10 +24573,10 @@ var semver3 = __toESM(require_semver2(), 1);
24569
24573
 
24570
24574
  // ../bitfab-plugin-lib/dist/bakedSdkVersions.js
24571
24575
  var BAKED_SDK_VERSIONS = {
24572
- typescript: "0.54.4",
24573
- python: "0.55.3",
24574
- ruby: "0.51.6",
24575
- go: "0.51.5"
24576
+ typescript: "0.54.5",
24577
+ python: "0.55.4",
24578
+ ruby: "0.51.7",
24579
+ go: "0.51.6"
24576
24580
  };
24577
24581
 
24578
24582
  // ../bitfab-plugin-lib/dist/installedSdk.js
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bitfab-cli",
3
- "version": "0.2.342",
3
+ "version": "0.2.343",
4
4
  "description": "Install and configure the Bitfab plugin in Claude Code, Codex, or Cursor, or the Bitfab skill pack in Amp (Alpha).",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",