bitfab-cli 0.2.248 → 0.2.251
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8924,6 +8924,7 @@ var StudioNavigationError = class extends Error {
|
|
|
8924
8924
|
var STUDIO_ROUTE_PATTERNS = [
|
|
8925
8925
|
/^\/studio$/,
|
|
8926
8926
|
/^\/studio\/experiments$/,
|
|
8927
|
+
/^\/studio\/experiments\/traces\/[^/]+$/,
|
|
8927
8928
|
/^\/studio\/close$/,
|
|
8928
8929
|
// Catch-all sign-in route ([[...rest]]) so Clerk can path-route its sub-steps
|
|
8929
8930
|
// (sso-callback, factor-one, continue); matches /studio/sign-in and any child.
|
|
@@ -8932,6 +8933,7 @@ var STUDIO_ROUTE_PATTERNS = [
|
|
|
8932
8933
|
// Matches both real dataset ids and the legacy "labeled" segment; old plugin
|
|
8933
8934
|
// versions still navigate to /datasets/labeled, which the server redirects.
|
|
8934
8935
|
/^\/studio\/trace-functions\/[^/]+\/datasets\/[^/]+$/,
|
|
8936
|
+
/^\/studio\/trace-functions\/[^/]+\/datasets\/[^/]+\/traces\/[^/]+$/,
|
|
8935
8937
|
/^\/studio\/trace-functions\/[^/]+\/template-preview$/,
|
|
8936
8938
|
/^\/studio\/trace-functions\/[^/]+\/template-preview\/[^/]+$/,
|
|
8937
8939
|
/^\/studio\/auth\/[^/]+$/
|
|
@@ -28127,7 +28129,7 @@ var listOrganizations = {
|
|
|
28127
28129
|
var getDatabaseConnectionStatus = {
|
|
28128
28130
|
name: "get_database_connection_status",
|
|
28129
28131
|
title: "Get Database Connection Status",
|
|
28130
|
-
description: "Check whether this organization has connected a database for per-trace snapshot replay (DB branching). Returns one of: connected (ready - replay can branch the database to each trace's capture time), checking (provisioning in progress, poll again in ~15s), failed (the saved connection could not be provisioned), or none (no database connected yet). Use this during db-branching setup to wait until the customer's database is connected before enabling dbSnapshot.",
|
|
28132
|
+
description: "Check whether this organization has connected a database for per-trace snapshot replay (DB branching). Returns one of: connected (ready - replay can branch the database to each trace's capture time), checking (provisioning in progress, poll again in ~15s), failed (the saved connection could not be provisioned), or none (no database connected yet). Connected integrations identify their type as direct Neon or managed Postgres mirror; direct Neon connections also include the pinned project name and ID. Use this during db-branching setup to wait until the customer's database is connected before enabling dbSnapshot.",
|
|
28131
28133
|
inputSchema: {}
|
|
28132
28134
|
};
|
|
28133
28135
|
var listTraceFunctions = {
|