bitfab-cli 0.2.343 → 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.
- package/dist/index.js +6 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -23514,6 +23514,8 @@ var searchTraces = {
|
|
|
23514
23514
|
key.toLowerCase(),
|
|
23515
23515
|
item.toLowerCase()
|
|
23516
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."),
|
|
23517
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.'),
|
|
23518
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.'),
|
|
23519
23521
|
labelResult: external_exports.preprocess(parseJsonString, external_exports.boolean()).optional().describe("Filter by label result: true for passing labels, false for failing labels"),
|
|
@@ -24573,10 +24575,10 @@ var semver3 = __toESM(require_semver2(), 1);
|
|
|
24573
24575
|
|
|
24574
24576
|
// ../bitfab-plugin-lib/dist/bakedSdkVersions.js
|
|
24575
24577
|
var BAKED_SDK_VERSIONS = {
|
|
24576
|
-
typescript: "0.54.
|
|
24577
|
-
python: "0.55.
|
|
24578
|
-
ruby: "0.51.
|
|
24579
|
-
go: "0.51.
|
|
24578
|
+
typescript: "0.54.6",
|
|
24579
|
+
python: "0.55.5",
|
|
24580
|
+
ruby: "0.51.8",
|
|
24581
|
+
go: "0.51.7"
|
|
24580
24582
|
};
|
|
24581
24583
|
|
|
24582
24584
|
// ../bitfab-plugin-lib/dist/installedSdk.js
|
package/package.json
CHANGED