bitfab-cli 0.2.247 → 0.2.249
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 +2 -0
- 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\/[^/]+$/
|