bitfab-cli 0.2.342 → 0.2.344

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 +10 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -23510,6 +23510,12 @@ 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."),
23517
+ name: external_exports.string().trim().min(1).max(256).transform((value) => value.toLowerCase()).optional().describe("Filter by the trace's name, the title set by setName or seedTrace. Matches the name's words in order, so 'Order ABC' also matches 'Order ABC 123', and it matches whole words rather than inside a word. Case-insensitive. Use nameContains to match inside a word or on a partial word."),
23518
+ nameContains: external_exports.string().trim().min(3).max(256).transform((value) => value.toLowerCase()).optional().describe("Filter by any part of the trace's name, including inside a word, matched case-insensitively. Needs at least 3 characters. Use name instead to match whole words in order."),
23513
23519
  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
23520
  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
23521
  labelResult: external_exports.preprocess(parseJsonString, external_exports.boolean()).optional().describe("Filter by label result: true for passing labels, false for failing labels"),
@@ -24569,10 +24575,10 @@ var semver3 = __toESM(require_semver2(), 1);
24569
24575
 
24570
24576
  // ../bitfab-plugin-lib/dist/bakedSdkVersions.js
24571
24577
  var BAKED_SDK_VERSIONS = {
24572
- typescript: "0.54.4",
24573
- python: "0.55.3",
24574
- ruby: "0.51.6",
24575
- go: "0.51.5"
24578
+ typescript: "0.54.6",
24579
+ python: "0.55.5",
24580
+ ruby: "0.51.8",
24581
+ go: "0.51.7"
24576
24582
  };
24577
24583
 
24578
24584
  // ../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.344",
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",