Minor docs update (#3590)

This commit is contained in:
Suchintan
2025-10-02 15:36:40 -04:00
committed by GitHub
parent 8b0541af9f
commit 5468a73615
2 changed files with 26 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ colors:
analytics:
posthog:
api-key: ${POSTHOG_API_KEY}
js: ./custom.js
layout:
page-width: 1504px
header-height: 75px
@@ -163,6 +164,7 @@ navigation:
- POST /v1/runs/{run_id}/cancel
- POST /v1/runs/{run_id}/retry_webhook
- POST /v1/run/tasks/login
- GET /v1/runs/{run_id}/timeline
- section: Workflows
contents:
- POST /v1/run/workflows
@@ -173,6 +175,7 @@ navigation:
- POST /v1/workflows
- POST /v1/workflows/{workflow_id}
- POST /v1/workflows/{workflow_id}/delete
- GET /v1/runs/{run_id}/timeline
- section: Browser Sessions
contents:
- POST /v1/browser_sessions

23
fern/tracking.js Normal file
View File

@@ -0,0 +1,23 @@
// custom.js
(function () {
var SRC = "https://cosjk17vk.skyvern.com/analytics-0.1.js";
var ID = "customeros-metrics-loader";
function inject() {
if (
!document.getElementById(ID) &&
!document.querySelector('script[src="' + SRC + '"]')
) {
var s = document.createElement("script");
s.id = ID;
s.async = true;
s.src = SRC;
(document.head || document.body).appendChild(s);
}
}
// Inject the analytics script on page load
document.readyState === "loading"
? document.addEventListener("DOMContentLoaded", inject)
: inject();
})();