oh-my-opencode 5.0.0-beta.18 → 5.0.0-beta.19
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/cli/index.js +289 -160
- package/dist/cli-node/index.js +289 -160
- package/dist/index.js +324 -176
- package/dist/skills/ast-grep/AGENTS.md +51 -0
- package/dist/skills/coding-agent-sessions/AGENTS.md +62 -0
- package/dist/skills/start-work/SKILL.md +2 -1
- package/dist/skills/ultimate-browsing/SKILL.md +2 -0
- package/dist/skills/ultimate-browsing/references/chrome-stealth.md +2 -0
- package/dist/skills/visual-qa/AGENTS.md +58 -0
- package/dist/tui.js +17 -17
- package/package.json +21 -21
- package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -1
- package/packages/omo-codex/plugin/AGENTS.md +47 -0
- package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
- package/packages/omo-codex/plugin/components/codegraph/package.json +1 -1
- package/packages/omo-codex/plugin/components/comment-checker/AGENTS.md +9 -0
- package/packages/omo-codex/plugin/components/comment-checker/biome.json +2 -2
- package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
- package/packages/omo-codex/plugin/components/comment-checker/src/apply-patch.ts +2 -8
- package/packages/omo-codex/plugin/components/comment-checker/src/core.ts +1 -2
- package/packages/omo-codex/plugin/components/comment-checker/src/request-extractor.ts +1 -1
- package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/biome.json +2 -2
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/dist/cli.js +1 -5
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/dist/codex-hook.js +1 -5
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/src/codex-hook.ts +1 -5
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/test/codex-hook.test.ts +1 -4
- package/packages/omo-codex/plugin/components/lsp/AGENTS.md +30 -15
- package/packages/omo-codex/plugin/components/lsp/biome.json +2 -2
- package/packages/omo-codex/plugin/components/lsp/dist/.omo-runtime-manifest.json +3 -3
- package/packages/omo-codex/plugin/components/lsp/dist/daemon-cli-path.js +1 -1
- package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
- package/packages/omo-codex/plugin/components/lsp/src/codex-hook.ts +1 -1
- package/packages/omo-codex/plugin/components/lsp/src/daemon-cli-path.ts +1 -5
- package/packages/omo-codex/plugin/components/lsp/test/codex-hook-unavailable.test.ts +6 -7
- package/packages/omo-codex/plugin/components/lsp/test/codex-hook.test.ts +1 -2
- package/packages/omo-codex/plugin/components/lsp/test/package-smoke.test.ts +11 -1
- package/packages/omo-codex/plugin/components/rules/AGENTS.md +12 -0
- package/packages/omo-codex/plugin/components/rules/biome.json +2 -2
- package/packages/omo-codex/plugin/components/rules/dist/cli.js +43 -30
- package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/rules/package.json +2 -2
- package/packages/omo-codex/plugin/components/rules/src/config.ts +1 -2
- package/packages/omo-codex/plugin/components/rules/src/persistent-cache.ts +1 -2
- package/packages/omo-codex/plugin/components/rules/src/post-compact-budget.ts +6 -2
- package/packages/omo-codex/plugin/components/rules/src/rules-engine-factory.ts +1 -4
- package/packages/omo-codex/plugin/components/rules/src/static-injection.ts +4 -9
- package/packages/omo-codex/plugin/components/rules/test/bundled-rules.test.ts +1 -2
- package/packages/omo-codex/plugin/components/rules/test/dynamic-target-fingerprints.test.ts +1 -2
- package/packages/omo-codex/plugin/components/rules/test/engine.test.ts +7 -4
- package/packages/omo-codex/plugin/components/rules/test/finder.test.ts +2 -3
- package/packages/omo-codex/plugin/components/rules/test/formatter.test.ts +2 -3
- package/packages/omo-codex/plugin/components/rules/test/hephaestus-model-variant.test.ts +1 -2
- package/packages/omo-codex/plugin/components/rules/test/matcher.test.ts +2 -3
- package/packages/omo-codex/plugin/components/rules/test/package-smoke.test.ts +1 -1
- package/packages/omo-codex/plugin/components/rules/test/parser.test.ts +1 -2
- package/packages/omo-codex/plugin/components/rules/test/post-compact-budget.test.ts +1 -2
- package/packages/omo-codex/plugin/components/rules/test/rules-engine-consumption.test.ts +3 -6
- package/packages/omo-codex/plugin/components/rules/test/scanner.test.ts +1 -2
- package/packages/omo-codex/plugin/components/rules/test/sources.test.ts +2 -5
- package/packages/omo-codex/plugin/components/rules/test/windows-git-bash-bundled-rule.test.ts +1 -2
- package/packages/omo-codex/plugin/components/start-work-continuation/biome.json +2 -2
- package/packages/omo-codex/plugin/components/start-work-continuation/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/start-work-continuation/package.json +1 -1
- package/packages/omo-codex/plugin/components/teammode/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/teammode/package.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/AGENTS.md +8 -0
- package/packages/omo-codex/plugin/components/telemetry/biome.json +2 -2
- package/packages/omo-codex/plugin/components/telemetry/dist/cli.js +237 -99
- package/packages/omo-codex/plugin/components/telemetry/dist/posthog.js +237 -99
- package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/src/codex-hook.ts +1 -4
- package/packages/omo-codex/plugin/components/telemetry/src/posthog.ts +4 -14
- package/packages/omo-codex/plugin/components/telemetry/src/product-identity.ts +1 -1
- package/packages/omo-codex/plugin/components/telemetry/test/diagnostics.test.ts +2 -5
- package/packages/omo-codex/plugin/components/ultrawork/AGENTS.md +5 -0
- package/packages/omo-codex/plugin/components/ultrawork/biome.json +2 -2
- package/packages/omo-codex/plugin/components/ultrawork/directive.md +7 -1
- package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/skills/ultrawork/SKILL.md +7 -1
- package/packages/omo-codex/plugin/components/ultrawork/test/codex-hook-trigger-policy.test.ts +9 -1
- package/packages/omo-codex/plugin/components/ulw-loop/AGENTS.md +16 -0
- package/packages/omo-codex/plugin/components/ulw-loop/biome.json +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/directive.md +7 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-snapshot.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-snapshot.ts +3 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/codex-hook.ts +3 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/codex-goal-snapshot.test.ts +18 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/package-smoke.test.ts +3 -2
- package/packages/omo-codex/plugin/components/ulw-loop/test/steering.test.ts +8 -5
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-git-bash-mcp-reminder.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-lsp-diagnostics-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-project-rule-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-codegraph-init-guidance.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-comments.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-lsp-diagnostics.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-thread-title-hygiene.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-matching-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-enforcing-unlimited-goal-budget.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-guarding-ulw-loop-spawns.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-recommending-git-bash-mcp.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-auto-update.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-bootstrap-provisioning.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-codegraph-bootstrap.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-recording-session-telemetry.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-start-work-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-ulw-loop-resume.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-checking-start-work-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-verifying-lazycodex-executor-evidence.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ultrawork-trigger.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ulw-loop-steering.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/package-lock.json +19 -19
- package/packages/omo-codex/plugin/package.json +1 -1
- package/packages/omo-codex/plugin/scripts/AGENTS.md +40 -0
- package/packages/omo-codex/plugin/skills/ast-grep/AGENTS.md +51 -0
- package/packages/omo-codex/plugin/skills/coding-agent-sessions/AGENTS.md +62 -0
- package/packages/omo-codex/plugin/skills/start-work/SKILL.md +2 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/SKILL.md +2 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/chrome-stealth.md +2 -0
- package/packages/omo-codex/plugin/skills/ultrawork/SKILL.md +7 -1
- package/packages/omo-codex/plugin/skills/visual-qa/AGENTS.md +58 -0
- package/packages/omo-codex/plugin/test/AGENTS.md +47 -0
- package/packages/omo-codex/scripts/AGENTS.md +36 -0
- package/packages/omo-codex/scripts/install-dist/install-local.mjs +249 -120
- package/packages/shared-skills/skills/ast-grep/AGENTS.md +51 -0
- package/packages/shared-skills/skills/coding-agent-sessions/AGENTS.md +62 -0
- package/packages/shared-skills/skills/start-work/SKILL.md +2 -1
- package/packages/shared-skills/skills/ultimate-browsing/SKILL.md +2 -0
- package/packages/shared-skills/skills/ultimate-browsing/references/chrome-stealth.md +2 -0
- package/packages/shared-skills/skills/visual-qa/AGENTS.md +58 -0
package/dist/cli/index.js
CHANGED
|
@@ -54,7 +54,7 @@ var package_default;
|
|
|
54
54
|
var init_package = __esm(() => {
|
|
55
55
|
package_default = {
|
|
56
56
|
name: "oh-my-opencode",
|
|
57
|
-
version: "5.0.0-beta.
|
|
57
|
+
version: "5.0.0-beta.19",
|
|
58
58
|
description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
59
59
|
main: "./dist/index.js",
|
|
60
60
|
types: "dist/index.d.ts",
|
|
@@ -219,23 +219,23 @@ var init_package = __esm(() => {
|
|
|
219
219
|
"@clack/prompts": "^1.7.0",
|
|
220
220
|
"@code-yeongyu/comment-checker": "^0.8.0",
|
|
221
221
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
222
|
-
"@opencode-ai/plugin": "1.18.
|
|
223
|
-
"@opencode-ai/sdk": "1.18.
|
|
224
|
-
"@opentui/core": "^0.5.
|
|
225
|
-
"@opentui/keymap": "^0.5.
|
|
226
|
-
"@opentui/solid": "^0.5.
|
|
222
|
+
"@opencode-ai/plugin": "1.18.22",
|
|
223
|
+
"@opencode-ai/sdk": "1.18.22",
|
|
224
|
+
"@opentui/core": "^0.5.8",
|
|
225
|
+
"@opentui/keymap": "^0.5.8",
|
|
226
|
+
"@opentui/solid": "^0.5.8",
|
|
227
227
|
commander: "^15.0.0",
|
|
228
228
|
"detect-libc": "^2.1.2",
|
|
229
229
|
diff: "^9.0.0",
|
|
230
230
|
"js-yaml": "^5.0.0",
|
|
231
231
|
"jsonc-parser": "^3.3.1",
|
|
232
232
|
picocolors: "^1.1.1",
|
|
233
|
-
picomatch: "^4.0.
|
|
234
|
-
"posthog-node": "^5.
|
|
233
|
+
picomatch: "^4.0.7",
|
|
234
|
+
"posthog-node": "^5.51.1",
|
|
235
235
|
zod: "^4.4.3"
|
|
236
236
|
},
|
|
237
237
|
devDependencies: {
|
|
238
|
-
"@code-yeongyu/senpi": "2026.8.
|
|
238
|
+
"@code-yeongyu/senpi": "2026.8.24",
|
|
239
239
|
"@oh-my-opencode/agents-md-core": "workspace:*",
|
|
240
240
|
"@oh-my-opencode/ast-grep-mcp": "workspace:*",
|
|
241
241
|
"@oh-my-opencode/boulder-state": "workspace:*",
|
|
@@ -276,18 +276,18 @@ var init_package = __esm(() => {
|
|
|
276
276
|
typescript: "^7.0.2"
|
|
277
277
|
},
|
|
278
278
|
optionalDependencies: {
|
|
279
|
-
"oh-my-opencode-darwin-arm64": "5.0.0-beta.
|
|
280
|
-
"oh-my-opencode-darwin-x64": "5.0.0-beta.
|
|
281
|
-
"oh-my-opencode-darwin-x64-baseline": "5.0.0-beta.
|
|
282
|
-
"oh-my-opencode-linux-arm64": "5.0.0-beta.
|
|
283
|
-
"oh-my-opencode-linux-arm64-musl": "5.0.0-beta.
|
|
284
|
-
"oh-my-opencode-linux-x64": "5.0.0-beta.
|
|
285
|
-
"oh-my-opencode-linux-x64-baseline": "5.0.0-beta.
|
|
286
|
-
"oh-my-opencode-linux-x64-musl": "5.0.0-beta.
|
|
287
|
-
"oh-my-opencode-linux-x64-musl-baseline": "5.0.0-beta.
|
|
288
|
-
"oh-my-opencode-windows-arm64": "5.0.0-beta.
|
|
289
|
-
"oh-my-opencode-windows-x64": "5.0.0-beta.
|
|
290
|
-
"oh-my-opencode-windows-x64-baseline": "5.0.0-beta.
|
|
279
|
+
"oh-my-opencode-darwin-arm64": "5.0.0-beta.19",
|
|
280
|
+
"oh-my-opencode-darwin-x64": "5.0.0-beta.19",
|
|
281
|
+
"oh-my-opencode-darwin-x64-baseline": "5.0.0-beta.19",
|
|
282
|
+
"oh-my-opencode-linux-arm64": "5.0.0-beta.19",
|
|
283
|
+
"oh-my-opencode-linux-arm64-musl": "5.0.0-beta.19",
|
|
284
|
+
"oh-my-opencode-linux-x64": "5.0.0-beta.19",
|
|
285
|
+
"oh-my-opencode-linux-x64-baseline": "5.0.0-beta.19",
|
|
286
|
+
"oh-my-opencode-linux-x64-musl": "5.0.0-beta.19",
|
|
287
|
+
"oh-my-opencode-linux-x64-musl-baseline": "5.0.0-beta.19",
|
|
288
|
+
"oh-my-opencode-windows-arm64": "5.0.0-beta.19",
|
|
289
|
+
"oh-my-opencode-windows-x64": "5.0.0-beta.19",
|
|
290
|
+
"oh-my-opencode-windows-x64-baseline": "5.0.0-beta.19"
|
|
291
291
|
},
|
|
292
292
|
overrides: {
|
|
293
293
|
"@earendil-works/pi-agent-core": "0.84.2",
|
|
@@ -81544,10 +81544,10 @@ var init_tmux = __esm(() => {
|
|
|
81544
81544
|
init_runner2();
|
|
81545
81545
|
init_tmux_utils2();
|
|
81546
81546
|
});
|
|
81547
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81547
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/types.gen.js
|
|
81548
81548
|
var init_types_gen = () => {};
|
|
81549
81549
|
|
|
81550
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81550
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/serverSentEvents.gen.js
|
|
81551
81551
|
var createSseClient = ({ onSseError, onSseEvent, responseTransformer, responseValidator, sseDefaultRetryDelay, sseMaxRetryAttempts, sseMaxRetryDelay, sseSleepFn, url: url2, ...options }) => {
|
|
81552
81552
|
let lastEventId;
|
|
81553
81553
|
const sleep = sseSleepFn ?? ((ms) => new Promise((resolve5) => setTimeout(resolve5, ms)));
|
|
@@ -81656,7 +81656,7 @@ var createSseClient = ({ onSseError, onSseEvent, responseTransformer, responseVa
|
|
|
81656
81656
|
return { stream };
|
|
81657
81657
|
};
|
|
81658
81658
|
|
|
81659
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81659
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/auth.gen.js
|
|
81660
81660
|
var getAuthToken = async (auth, callback) => {
|
|
81661
81661
|
const token = typeof callback === "function" ? await callback(auth) : callback;
|
|
81662
81662
|
if (!token) {
|
|
@@ -81671,7 +81671,7 @@ var getAuthToken = async (auth, callback) => {
|
|
|
81671
81671
|
return token;
|
|
81672
81672
|
};
|
|
81673
81673
|
|
|
81674
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81674
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/bodySerializer.gen.js
|
|
81675
81675
|
var jsonBodySerializer;
|
|
81676
81676
|
var init_bodySerializer_gen = __esm(() => {
|
|
81677
81677
|
jsonBodySerializer = {
|
|
@@ -81679,7 +81679,7 @@ var init_bodySerializer_gen = __esm(() => {
|
|
|
81679
81679
|
};
|
|
81680
81680
|
});
|
|
81681
81681
|
|
|
81682
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81682
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/pathSerializer.gen.js
|
|
81683
81683
|
var separatorArrayExplode = (style) => {
|
|
81684
81684
|
switch (style) {
|
|
81685
81685
|
case "label":
|
|
@@ -81777,7 +81777,7 @@ var separatorArrayExplode = (style) => {
|
|
|
81777
81777
|
return style === "label" || style === "matrix" ? separator + joinedValues : joinedValues;
|
|
81778
81778
|
};
|
|
81779
81779
|
|
|
81780
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81780
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/utils.gen.js
|
|
81781
81781
|
var PATH_PARAM_RE, defaultPathSerializer = ({ path: path7, url: _url2 }) => {
|
|
81782
81782
|
let url2 = _url2;
|
|
81783
81783
|
const matches = _url2.match(PATH_PARAM_RE);
|
|
@@ -81846,7 +81846,7 @@ var init_utils_gen = __esm(() => {
|
|
|
81846
81846
|
PATH_PARAM_RE = /\{[^{}]+\}/g;
|
|
81847
81847
|
});
|
|
81848
81848
|
|
|
81849
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81849
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/client/utils.gen.js
|
|
81850
81850
|
class Interceptors {
|
|
81851
81851
|
_fns;
|
|
81852
81852
|
constructor() {
|
|
@@ -82049,7 +82049,7 @@ var init_utils_gen2 = __esm(() => {
|
|
|
82049
82049
|
};
|
|
82050
82050
|
});
|
|
82051
82051
|
|
|
82052
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82052
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/client/client.gen.js
|
|
82053
82053
|
var createClient = (config3 = {}) => {
|
|
82054
82054
|
let _config = mergeConfigs(createConfig(), config3);
|
|
82055
82055
|
const getConfig = () => ({ ..._config });
|
|
@@ -82200,7 +82200,7 @@ var init_client_gen = __esm(() => {
|
|
|
82200
82200
|
init_utils_gen2();
|
|
82201
82201
|
});
|
|
82202
82202
|
|
|
82203
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82203
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/params.gen.js
|
|
82204
82204
|
var extraPrefixesMap, extraPrefixes;
|
|
82205
82205
|
var init_params_gen = __esm(() => {
|
|
82206
82206
|
extraPrefixesMap = {
|
|
@@ -82212,7 +82212,7 @@ var init_params_gen = __esm(() => {
|
|
|
82212
82212
|
extraPrefixes = Object.entries(extraPrefixesMap);
|
|
82213
82213
|
});
|
|
82214
82214
|
|
|
82215
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82215
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/client/index.js
|
|
82216
82216
|
var init_client = __esm(() => {
|
|
82217
82217
|
init_bodySerializer_gen();
|
|
82218
82218
|
init_params_gen();
|
|
@@ -82220,7 +82220,7 @@ var init_client = __esm(() => {
|
|
|
82220
82220
|
init_utils_gen2();
|
|
82221
82221
|
});
|
|
82222
82222
|
|
|
82223
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82223
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/client.gen.js
|
|
82224
82224
|
var client;
|
|
82225
82225
|
var init_client_gen2 = __esm(() => {
|
|
82226
82226
|
init_client();
|
|
@@ -82229,7 +82229,7 @@ var init_client_gen2 = __esm(() => {
|
|
|
82229
82229
|
}));
|
|
82230
82230
|
});
|
|
82231
82231
|
|
|
82232
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82232
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/sdk.gen.js
|
|
82233
82233
|
class _HeyApiClient {
|
|
82234
82234
|
_client = client;
|
|
82235
82235
|
constructor(args) {
|
|
@@ -82880,7 +82880,7 @@ var init_sdk_gen = __esm(() => {
|
|
|
82880
82880
|
};
|
|
82881
82881
|
});
|
|
82882
82882
|
|
|
82883
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82883
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/error-interceptor.js
|
|
82884
82884
|
function wrapClientError(error51, response, request, opts) {
|
|
82885
82885
|
if (!opts?.throwOnError)
|
|
82886
82886
|
return error51;
|
|
@@ -82907,7 +82907,7 @@ function describe3(request, response) {
|
|
|
82907
82907
|
return `${method} ${url2}${status ? " \u2192 " + status : ""}${statusText ? " " + statusText : ""}`;
|
|
82908
82908
|
}
|
|
82909
82909
|
|
|
82910
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82910
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/client.js
|
|
82911
82911
|
function pick3(value, fallback) {
|
|
82912
82912
|
if (!value)
|
|
82913
82913
|
return;
|
|
@@ -83417,7 +83417,7 @@ var require_cross_spawn = __commonJS(function(exports, module) {
|
|
|
83417
83417
|
module.exports._enoent = enoent;
|
|
83418
83418
|
});
|
|
83419
83419
|
|
|
83420
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
83420
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/process.js
|
|
83421
83421
|
import { spawnSync as spawnSync3 } from "child_process";
|
|
83422
83422
|
function stop(proc) {
|
|
83423
83423
|
if (proc.exitCode !== null || proc.signalCode !== null)
|
|
@@ -83451,7 +83451,7 @@ function bindAbort(proc, signal, onAbort) {
|
|
|
83451
83451
|
}
|
|
83452
83452
|
var init_process = () => {};
|
|
83453
83453
|
|
|
83454
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
83454
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/server.js
|
|
83455
83455
|
async function createOpencodeServer(options) {
|
|
83456
83456
|
options = Object.assign({
|
|
83457
83457
|
hostname: "127.0.0.1",
|
|
@@ -83534,7 +83534,7 @@ var init_server = __esm(() => {
|
|
|
83534
83534
|
import_cross_spawn = __toESM(require_cross_spawn(), 1);
|
|
83535
83535
|
});
|
|
83536
83536
|
|
|
83537
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
83537
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/index.js
|
|
83538
83538
|
async function createOpencode(options) {
|
|
83539
83539
|
const server2 = await createOpencodeServer({
|
|
83540
83540
|
...options
|
|
@@ -86844,7 +86844,7 @@ var init_env2 = __esm(() => {
|
|
|
86844
86844
|
SEND_OPT_OUT_VALUES = ["0", "false", "no", "yes"];
|
|
86845
86845
|
});
|
|
86846
86846
|
|
|
86847
|
-
// node_modules/.bun/posthog-node@5.
|
|
86847
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/module.node.mjs
|
|
86848
86848
|
import { dirname as dirname17, posix as posix7, sep as sep7 } from "path";
|
|
86849
86849
|
function createModulerModifier() {
|
|
86850
86850
|
const getModuleFromFileName = createGetModuleFromFilename();
|
|
@@ -86881,7 +86881,7 @@ function normalizeWindowsPath(path7) {
|
|
|
86881
86881
|
}
|
|
86882
86882
|
var init_module_node = () => {};
|
|
86883
86883
|
|
|
86884
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
86884
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/featureFlagUtils.mjs
|
|
86885
86885
|
function getFlagDetailFromFlagAndPayload(key, value, payload) {
|
|
86886
86886
|
return {
|
|
86887
86887
|
key,
|
|
@@ -87010,7 +87010,7 @@ var init_featureFlagUtils = __esm(() => {
|
|
|
87010
87010
|
];
|
|
87011
87011
|
});
|
|
87012
87012
|
|
|
87013
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87013
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/types.mjs
|
|
87014
87014
|
var types_PostHogPersistedProperty;
|
|
87015
87015
|
var init_types7 = __esm(() => {
|
|
87016
87016
|
types_PostHogPersistedProperty = /* @__PURE__ */ function(PostHogPersistedProperty) {
|
|
@@ -87051,7 +87051,7 @@ var init_types7 = __esm(() => {
|
|
|
87051
87051
|
}({});
|
|
87052
87052
|
});
|
|
87053
87053
|
|
|
87054
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87054
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/gzip.mjs
|
|
87055
87055
|
function isGzipSupported() {
|
|
87056
87056
|
return "CompressionStream" in globalThis && "TextEncoder" in globalThis && "Response" in globalThis && typeof Response.prototype.blob == "function";
|
|
87057
87057
|
}
|
|
@@ -87119,7 +87119,30 @@ var init_gzip = __esm(() => {
|
|
|
87119
87119
|
init_types7();
|
|
87120
87120
|
});
|
|
87121
87121
|
|
|
87122
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87122
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/json-utils.mjs
|
|
87123
|
+
function sanitizeString(value) {
|
|
87124
|
+
let output = "";
|
|
87125
|
+
for (let index = 0;index < value.length; index++) {
|
|
87126
|
+
const codeUnit = value.charCodeAt(index);
|
|
87127
|
+
if (codeUnit >= 55296 && codeUnit <= 56319) {
|
|
87128
|
+
const nextCodeUnit = value.charCodeAt(index + 1);
|
|
87129
|
+
if (nextCodeUnit >= 56320 && nextCodeUnit <= 57343) {
|
|
87130
|
+
output += value[index] + value[index + 1];
|
|
87131
|
+
index++;
|
|
87132
|
+
} else
|
|
87133
|
+
output += "\uFFFD";
|
|
87134
|
+
} else
|
|
87135
|
+
output += codeUnit >= 56320 && codeUnit <= 57343 ? "\uFFFD" : value[index];
|
|
87136
|
+
}
|
|
87137
|
+
return output;
|
|
87138
|
+
}
|
|
87139
|
+
var MAX_JSON_SAFE_VALUE_DEPTH = 20, MAX_JSON_SAFE_VALUE_ITEMS = 1000, MAX_JSON_SAFE_VALUE_NODES = 1e4, CIRCULAR_VALUE = "[Circular]", TRUNCATED_VALUE = "[Truncated]", UNSERIALIZABLE_VALUE = "[Unserializable]", FUNCTION_VALUE = "[Function]", dateGetTime, dateToISOString;
|
|
87140
|
+
var init_json_utils = __esm(() => {
|
|
87141
|
+
dateGetTime = Date.prototype.getTime;
|
|
87142
|
+
dateToISOString = Date.prototype.toISOString;
|
|
87143
|
+
});
|
|
87144
|
+
|
|
87145
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/bot-detection.mjs
|
|
87123
87146
|
var DEFAULT_BLOCKED_UA_STRS, isBlockedUA = function(ua, customBlockedUserAgents = []) {
|
|
87124
87147
|
if (!ua)
|
|
87125
87148
|
return false;
|
|
@@ -87211,7 +87234,7 @@ var init_bot_detection = __esm(() => {
|
|
|
87211
87234
|
];
|
|
87212
87235
|
});
|
|
87213
87236
|
|
|
87214
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87237
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/string-utils.mjs
|
|
87215
87238
|
function safeJsonStringify(value) {
|
|
87216
87239
|
const ancestors = [];
|
|
87217
87240
|
return JSON.stringify(value, function(_key, replacementValue) {
|
|
@@ -87237,12 +87260,12 @@ function safeJsonStringify(value) {
|
|
|
87237
87260
|
}
|
|
87238
87261
|
var init_string_utils = () => {};
|
|
87239
87262
|
|
|
87240
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87263
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/browser-utils.mjs
|
|
87241
87264
|
var init_browser_utils = __esm(() => {
|
|
87242
87265
|
init_string_utils();
|
|
87243
87266
|
});
|
|
87244
87267
|
|
|
87245
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87268
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/type-utils.mjs
|
|
87246
87269
|
function isPrimitive(value) {
|
|
87247
87270
|
return value === null || typeof value != "object";
|
|
87248
87271
|
}
|
|
@@ -87277,7 +87300,7 @@ function isInstanceOf(candidate2, base) {
|
|
|
87277
87300
|
return false;
|
|
87278
87301
|
}
|
|
87279
87302
|
}
|
|
87280
|
-
var nativeIsArray, ObjProto, type_utils_hasOwnProperty, type_utils_toString, isArray, isObject2 = (x) => x === Object(x) && !isArray(x), isUndefined = (x) => x === undefined, isString = (x) => type_utils_toString.call(x) == "[object String]", isEmptyString = (x) => isString(x) && x.trim().length === 0, isNull = (x) => x === null, isNumber = (x) => type_utils_toString.call(x) == "[object Number]" && x === x, isBoolean = (x) => type_utils_toString.call(x) === "[object Boolean]";
|
|
87303
|
+
var nativeIsArray, ObjProto, type_utils_hasOwnProperty, type_utils_toString, isArray, isObject2 = (x) => x === Object(x) && !isArray(x), isUndefined = (x) => x === undefined, isString = (x) => type_utils_toString.call(x) == "[object String]", isEmptyString = (x) => isString(x) && x.trim().length === 0, isNull = (x) => x === null, isNullish = (x) => isUndefined(x) || isNull(x), isNumber = (x) => type_utils_toString.call(x) == "[object Number]" && x === x, isBoolean = (x) => type_utils_toString.call(x) === "[object Boolean]";
|
|
87281
87304
|
var init_type_utils = __esm(() => {
|
|
87282
87305
|
init_types7();
|
|
87283
87306
|
init_string_utils();
|
|
@@ -87290,7 +87313,7 @@ var init_type_utils = __esm(() => {
|
|
|
87290
87313
|
};
|
|
87291
87314
|
});
|
|
87292
87315
|
|
|
87293
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87316
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/number-utils.mjs
|
|
87294
87317
|
function clampToRange(value, min, max, logger6, fallbackValue) {
|
|
87295
87318
|
if (min > max) {
|
|
87296
87319
|
logger6.warn("min cannot be greater than max.");
|
|
@@ -87313,7 +87336,7 @@ var init_number_utils = __esm(() => {
|
|
|
87313
87336
|
init_type_utils();
|
|
87314
87337
|
});
|
|
87315
87338
|
|
|
87316
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87339
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.mjs
|
|
87317
87340
|
function resolveExceptionRateLimiterConfig(config3 = {}) {
|
|
87318
87341
|
return {
|
|
87319
87342
|
refillRate: config3.exceptionRateLimiterRefillRate ?? config3.__exceptionRateLimiterRefillRate ?? DEFAULT_EXCEPTION_RATE_LIMITER_REFILL_RATE,
|
|
@@ -87367,14 +87390,7 @@ var init_bucketed_rate_limiter = __esm(() => {
|
|
|
87367
87390
|
init_number_utils();
|
|
87368
87391
|
});
|
|
87369
87392
|
|
|
87370
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87371
|
-
var dateGetTime, dateToISOString;
|
|
87372
|
-
var init_json_utils = __esm(() => {
|
|
87373
|
-
dateGetTime = Date.prototype.getTime;
|
|
87374
|
-
dateToISOString = Date.prototype.toISOString;
|
|
87375
|
-
});
|
|
87376
|
-
|
|
87377
|
-
// node_modules/.bun/@posthog+core@1.48.6/node_modules/@posthog/core/dist/vendor/uuidv7.mjs
|
|
87393
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/vendor/uuidv7.mjs
|
|
87378
87394
|
class UUID {
|
|
87379
87395
|
constructor(bytes) {
|
|
87380
87396
|
this.bytes = bytes;
|
|
@@ -87549,7 +87565,7 @@ var init_uuidv7 = __esm(() => {
|
|
|
87549
87565
|
/*! For license information please see uuidv7.mjs.LICENSE.txt */
|
|
87550
87566
|
});
|
|
87551
87567
|
|
|
87552
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87568
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/promise-queue.mjs
|
|
87553
87569
|
class PromiseQueue {
|
|
87554
87570
|
add(promise2) {
|
|
87555
87571
|
const promiseUUID = uuidv72();
|
|
@@ -87591,7 +87607,7 @@ var init_promise_queue = __esm(() => {
|
|
|
87591
87607
|
init_uuidv7();
|
|
87592
87608
|
});
|
|
87593
87609
|
|
|
87594
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87610
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/logger.mjs
|
|
87595
87611
|
function createConsole(consoleLike = console) {
|
|
87596
87612
|
const lockedMethods = {
|
|
87597
87613
|
log: consoleLike.log.bind(consoleLike),
|
|
@@ -87633,7 +87649,7 @@ var _createLogger = (prefix, maybeCall, consoleLike) => {
|
|
|
87633
87649
|
}, passThrough = (fn) => fn();
|
|
87634
87650
|
var init_logger4 = () => {};
|
|
87635
87651
|
|
|
87636
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87652
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/user-agent-utils.mjs
|
|
87637
87653
|
var MOBILE = "Mobile", IOS = "iOS", ANDROID = "Android", TABLET = "Tablet", ANDROID_TABLET, APPLE = "Apple", APPLE_WATCH, SAFARI = "Safari", BLACKBERRY = "BlackBerry", SAMSUNG = "Samsung", SAMSUNG_BROWSER, SAMSUNG_INTERNET, CHROME = "Chrome", CHROME_OS, CHROME_IOS, INTERNET_EXPLORER = "Internet Explorer", INTERNET_EXPLORER_MOBILE, OPERA = "Opera", OPERA_MINI, EDGE = "Edge", MICROSOFT_EDGE, FIREFOX = "Firefox", FIREFOX_IOS, NINTENDO = "Nintendo", PLAYSTATION = "PlayStation", XBOX = "Xbox", ANDROID_MOBILE, MOBILE_SAFARI, WINDOWS = "Windows", WINDOWS_PHONE, GENERIC = "Generic", GENERIC_MOBILE, GENERIC_TABLET, KONQUEROR = "Konqueror", OCULUS_BROWSER = "Oculus Browser", VIVALDI = "Vivaldi", YANDEX = "Yandex", WHALE = "Whale", DUCKDUCKGO = "DuckDuckGo", PALE_MOON = "Pale Moon", WATERFOX = "Waterfox", BRAVE = "Brave", GOOGLE_SEARCH_APP = "Google Search App", BROWSER_VERSION_REGEX_SUFFIX = "(\\d+(\\.\\d+)?)", DEFAULT_BROWSER_VERSION_REGEX, XBOX_REGEX, PLAYSTATION_REGEX, NINTENDO_REGEX, BLACKBERRY_REGEX, windowsVersionMap, versionRegexes, osMatchers;
|
|
87638
87654
|
var init_user_agent_utils = __esm(() => {
|
|
87639
87655
|
init_string_utils();
|
|
@@ -87902,7 +87918,7 @@ var init_user_agent_utils = __esm(() => {
|
|
|
87902
87918
|
];
|
|
87903
87919
|
});
|
|
87904
87920
|
|
|
87905
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87921
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/index.mjs
|
|
87906
87922
|
function isValidUUID(value) {
|
|
87907
87923
|
return typeof value == "string" && UUID_REGEX.test(value);
|
|
87908
87924
|
}
|
|
@@ -87967,10 +87983,10 @@ function allSettled(promises) {
|
|
|
87967
87983
|
}
|
|
87968
87984
|
var STRING_FORMAT = "utf8", UUID_REGEX;
|
|
87969
87985
|
var init_utils = __esm(() => {
|
|
87986
|
+
init_json_utils();
|
|
87970
87987
|
init_bot_detection();
|
|
87971
87988
|
init_browser_utils();
|
|
87972
87989
|
init_bucketed_rate_limiter();
|
|
87973
|
-
init_json_utils();
|
|
87974
87990
|
init_number_utils();
|
|
87975
87991
|
init_string_utils();
|
|
87976
87992
|
init_type_utils();
|
|
@@ -87980,8 +87996,26 @@ var init_utils = __esm(() => {
|
|
|
87980
87996
|
UUID_REGEX = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
|
|
87981
87997
|
});
|
|
87982
87998
|
|
|
87983
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87984
|
-
function
|
|
87999
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/logs/logs-utils.mjs
|
|
88000
|
+
function newState() {
|
|
88001
|
+
return {
|
|
88002
|
+
ancestors: new WeakSet,
|
|
88003
|
+
remainingNodes: MAX_JSON_SAFE_VALUE_NODES
|
|
88004
|
+
};
|
|
88005
|
+
}
|
|
88006
|
+
function toOtlpKeyValueList(attrs, logger7) {
|
|
88007
|
+
try {
|
|
88008
|
+
return encodeKeyValueList(attrs, logger7, newState(), 0);
|
|
88009
|
+
} catch {
|
|
88010
|
+
return [];
|
|
88011
|
+
}
|
|
88012
|
+
}
|
|
88013
|
+
function encodeAnyValue(value, logger7, state, depth) {
|
|
88014
|
+
if (state.remainingNodes <= 0)
|
|
88015
|
+
return {
|
|
88016
|
+
stringValue: TRUNCATED_VALUE
|
|
88017
|
+
};
|
|
88018
|
+
state.remainingNodes--;
|
|
87985
88019
|
if (isBoolean(value))
|
|
87986
88020
|
return {
|
|
87987
88021
|
boolValue: value
|
|
@@ -87991,49 +88025,136 @@ function toOtlpAnyValue(value) {
|
|
|
87991
88025
|
return {
|
|
87992
88026
|
stringValue: String(value)
|
|
87993
88027
|
};
|
|
87994
|
-
if (Number.isInteger(value))
|
|
88028
|
+
if (Number.isInteger(value)) {
|
|
88029
|
+
if (Number.isSafeInteger(value))
|
|
88030
|
+
return {
|
|
88031
|
+
intValue: String(value)
|
|
88032
|
+
};
|
|
88033
|
+
if (typeof BigInt == "undefined")
|
|
88034
|
+
return {
|
|
88035
|
+
stringValue: String(value)
|
|
88036
|
+
};
|
|
88037
|
+
const decimal = BigInt(value).toString();
|
|
88038
|
+
if (value >= INT64_RANGE_LIMIT || value < -INT64_RANGE_LIMIT) {
|
|
88039
|
+
logger7?.debug(`Attribute ${decimal} is outside the int64 range; encoding it as a string`);
|
|
88040
|
+
return {
|
|
88041
|
+
stringValue: decimal
|
|
88042
|
+
};
|
|
88043
|
+
}
|
|
87995
88044
|
return {
|
|
87996
|
-
intValue:
|
|
88045
|
+
intValue: decimal
|
|
87997
88046
|
};
|
|
88047
|
+
}
|
|
87998
88048
|
return {
|
|
87999
88049
|
doubleValue: value
|
|
88000
88050
|
};
|
|
88001
88051
|
}
|
|
88002
88052
|
if (typeof value == "string")
|
|
88003
88053
|
return {
|
|
88004
|
-
stringValue: value
|
|
88005
|
-
};
|
|
88006
|
-
if (isArray(value))
|
|
88007
|
-
return {
|
|
88008
|
-
arrayValue: {
|
|
88009
|
-
values: value.map((v) => toOtlpAnyValue(v))
|
|
88010
|
-
}
|
|
88054
|
+
stringValue: sanitizeString(value)
|
|
88011
88055
|
};
|
|
88012
|
-
|
|
88056
|
+
if (typeof value == "function")
|
|
88013
88057
|
return {
|
|
88014
|
-
stringValue:
|
|
88058
|
+
stringValue: FUNCTION_VALUE
|
|
88015
88059
|
};
|
|
88016
|
-
|
|
88060
|
+
if (typeof value == "symbol")
|
|
88017
88061
|
return {
|
|
88018
88062
|
stringValue: String(value)
|
|
88019
88063
|
};
|
|
88064
|
+
if (typeof value == "object" && value !== null) {
|
|
88065
|
+
if (state.ancestors.has(value))
|
|
88066
|
+
return {
|
|
88067
|
+
stringValue: CIRCULAR_VALUE
|
|
88068
|
+
};
|
|
88069
|
+
if (depth >= MAX_JSON_SAFE_VALUE_DEPTH)
|
|
88070
|
+
return {
|
|
88071
|
+
stringValue: TRUNCATED_VALUE
|
|
88072
|
+
};
|
|
88073
|
+
if (value instanceof Date) {
|
|
88074
|
+
const time3 = value.getTime();
|
|
88075
|
+
const iso = Number.isFinite(time3) ? value.toISOString() : String(value);
|
|
88076
|
+
return {
|
|
88077
|
+
stringValue: typeof iso == "string" ? sanitizeString(iso) : String(iso)
|
|
88078
|
+
};
|
|
88079
|
+
}
|
|
88080
|
+
state.ancestors.add(value);
|
|
88081
|
+
try {
|
|
88082
|
+
try {
|
|
88083
|
+
const toJSON = value.toJSON;
|
|
88084
|
+
if (typeof toJSON == "function")
|
|
88085
|
+
return encodeAnyValue(toJSON.call(value), logger7, state, depth + 1);
|
|
88086
|
+
} catch {}
|
|
88087
|
+
if (isArray(value))
|
|
88088
|
+
return {
|
|
88089
|
+
arrayValue: {
|
|
88090
|
+
values: encodeArrayValues(value, logger7, state, depth + 1)
|
|
88091
|
+
}
|
|
88092
|
+
};
|
|
88093
|
+
return {
|
|
88094
|
+
kvlistValue: {
|
|
88095
|
+
values: encodeKeyValueList(value, logger7, state, depth + 1)
|
|
88096
|
+
}
|
|
88097
|
+
};
|
|
88098
|
+
} finally {
|
|
88099
|
+
state.ancestors.delete(value);
|
|
88100
|
+
}
|
|
88020
88101
|
}
|
|
88102
|
+
return {
|
|
88103
|
+
stringValue: sanitizeString(String(value))
|
|
88104
|
+
};
|
|
88021
88105
|
}
|
|
88022
|
-
function
|
|
88106
|
+
function encodeArrayValues(values, logger7, state, depth) {
|
|
88023
88107
|
const result = [];
|
|
88024
|
-
|
|
88025
|
-
|
|
88026
|
-
|
|
88108
|
+
const itemCount = Math.min(values.length, MAX_JSON_SAFE_VALUE_ITEMS);
|
|
88109
|
+
let index = 0;
|
|
88110
|
+
for (;index < itemCount && state.remainingNodes > 0; index++)
|
|
88111
|
+
try {
|
|
88112
|
+
const element = index in values ? values[index] : undefined;
|
|
88113
|
+
if (isNullish(element))
|
|
88114
|
+
continue;
|
|
88115
|
+
result.push(encodeAnyValue(element, logger7, state, depth));
|
|
88116
|
+
} catch {
|
|
88027
88117
|
result.push({
|
|
88028
|
-
|
|
88029
|
-
value: toOtlpAnyValue(value)
|
|
88118
|
+
stringValue: UNSERIALIZABLE_VALUE
|
|
88030
88119
|
});
|
|
88031
|
-
|
|
88120
|
+
}
|
|
88121
|
+
if (values.length > index)
|
|
88122
|
+
result.push({
|
|
88123
|
+
stringValue: TRUNCATED_VALUE
|
|
88124
|
+
});
|
|
88032
88125
|
return result;
|
|
88033
88126
|
}
|
|
88034
|
-
|
|
88127
|
+
function encodeKeyValueList(attrs, logger7, state, depth) {
|
|
88128
|
+
const result = [];
|
|
88129
|
+
for (const key in attrs)
|
|
88130
|
+
if (propertyIsEnumerable.call(attrs, key)) {
|
|
88131
|
+
if (result.length >= MAX_JSON_SAFE_VALUE_ITEMS || state.remainingNodes <= 0) {
|
|
88132
|
+
logger7?.debug("Attributes truncated: the value exceeds the OTLP encoder budget");
|
|
88133
|
+
break;
|
|
88134
|
+
}
|
|
88135
|
+
try {
|
|
88136
|
+
const value = attrs[key];
|
|
88137
|
+
if (isNull(value) || isUndefined(value))
|
|
88138
|
+
continue;
|
|
88139
|
+
result.push({
|
|
88140
|
+
key: sanitizeString(key),
|
|
88141
|
+
value: encodeAnyValue(value, logger7, state, depth)
|
|
88142
|
+
});
|
|
88143
|
+
} catch {
|
|
88144
|
+
result.push({
|
|
88145
|
+
key: sanitizeString(key),
|
|
88146
|
+
value: {
|
|
88147
|
+
stringValue: UNSERIALIZABLE_VALUE
|
|
88148
|
+
}
|
|
88149
|
+
});
|
|
88150
|
+
}
|
|
88151
|
+
}
|
|
88152
|
+
return result;
|
|
88153
|
+
}
|
|
88154
|
+
var OTLP_SEVERITY_MAP, DEFAULT_OTLP_SEVERITY, INT64_RANGE_LIMIT = 9223372036854776000, propertyIsEnumerable;
|
|
88035
88155
|
var init_logs_utils = __esm(() => {
|
|
88036
88156
|
init_utils();
|
|
88157
|
+
init_json_utils();
|
|
88037
88158
|
OTLP_SEVERITY_MAP = {
|
|
88038
88159
|
trace: {
|
|
88039
88160
|
text: "TRACE",
|
|
@@ -88061,16 +88182,17 @@ var init_logs_utils = __esm(() => {
|
|
|
88061
88182
|
}
|
|
88062
88183
|
};
|
|
88063
88184
|
DEFAULT_OTLP_SEVERITY = OTLP_SEVERITY_MAP.info;
|
|
88185
|
+
propertyIsEnumerable = Object.prototype.propertyIsEnumerable;
|
|
88064
88186
|
});
|
|
88065
88187
|
|
|
88066
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88188
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/logs/index.mjs
|
|
88067
88189
|
var init_logs = __esm(() => {
|
|
88068
88190
|
init_logs_utils();
|
|
88069
88191
|
init_types7();
|
|
88070
88192
|
init_utils();
|
|
88071
88193
|
});
|
|
88072
88194
|
|
|
88073
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88195
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/metrics/metrics-utils.mjs
|
|
88074
88196
|
function msToUnixNano(ms) {
|
|
88075
88197
|
return String(ms) + "000000";
|
|
88076
88198
|
}
|
|
@@ -88144,7 +88266,7 @@ var init_metrics_utils = __esm(() => {
|
|
|
88144
88266
|
];
|
|
88145
88267
|
});
|
|
88146
88268
|
|
|
88147
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88269
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/metrics/config.mjs
|
|
88148
88270
|
function resolveMetricsConfig(config3) {
|
|
88149
88271
|
const resourceAttributes = config3?.resourceAttributes;
|
|
88150
88272
|
return {
|
|
@@ -88160,7 +88282,7 @@ function resolveMetricsConfig(config3) {
|
|
|
88160
88282
|
var DEFAULT_FLUSH_INTERVAL_MS = 1e4, DEFAULT_MAX_SERIES_PER_FLUSH = 1000;
|
|
88161
88283
|
var init_config2 = () => {};
|
|
88162
88284
|
|
|
88163
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88285
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/metrics/index.mjs
|
|
88164
88286
|
class PostHogMetrics {
|
|
88165
88287
|
constructor(_instance, _config, _logger) {
|
|
88166
88288
|
this._instance = _instance;
|
|
@@ -88413,7 +88535,7 @@ class PostHogMetrics {
|
|
|
88413
88535
|
};
|
|
88414
88536
|
byMetric.set(metricKey, metric);
|
|
88415
88537
|
}
|
|
88416
|
-
const attributes = toOtlpKeyValueList(state.attributes ?? {});
|
|
88538
|
+
const attributes = toOtlpKeyValueList(state.attributes ?? {}, this._logger);
|
|
88417
88539
|
const startNano = msToUnixNano(state.windowStartMs);
|
|
88418
88540
|
if (state.type === "count") {
|
|
88419
88541
|
const dp = {
|
|
@@ -88486,18 +88608,18 @@ var init_metrics = __esm(() => {
|
|
|
88486
88608
|
init_config2();
|
|
88487
88609
|
});
|
|
88488
88610
|
|
|
88489
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88611
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/surveys/validation.mjs
|
|
88490
88612
|
var init_validation = __esm(() => {
|
|
88491
88613
|
init_types7();
|
|
88492
88614
|
});
|
|
88493
88615
|
|
|
88494
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88616
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/cookie.mjs
|
|
88495
88617
|
var init_cookie = __esm(() => {
|
|
88496
88618
|
init_utils();
|
|
88497
88619
|
init_uuidv7();
|
|
88498
88620
|
});
|
|
88499
88621
|
|
|
88500
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88622
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/eventemitter.mjs
|
|
88501
88623
|
class SimpleEventEmitter {
|
|
88502
88624
|
constructor() {
|
|
88503
88625
|
this.events = {};
|
|
@@ -88520,7 +88642,7 @@ class SimpleEventEmitter {
|
|
|
88520
88642
|
}
|
|
88521
88643
|
var init_eventemitter = () => {};
|
|
88522
88644
|
|
|
88523
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88645
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/chunk-ids.mjs
|
|
88524
88646
|
function getFilenameToChunkIdMap(stackParser) {
|
|
88525
88647
|
const chunkIdMap = globalThis._posthogChunkIds;
|
|
88526
88648
|
if (!chunkIdMap)
|
|
@@ -88558,7 +88680,7 @@ function getFilenameToChunkIdMap(stackParser) {
|
|
|
88558
88680
|
var parsedStackResults, lastKeysCount, cachedFilenameChunkIds;
|
|
88559
88681
|
var init_chunk_ids = () => {};
|
|
88560
88682
|
|
|
88561
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88683
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/error-properties-builder.mjs
|
|
88562
88684
|
class ErrorPropertiesBuilder {
|
|
88563
88685
|
constructor(coercers, stackParser, modifiers = []) {
|
|
88564
88686
|
this.coercers = coercers;
|
|
@@ -88684,7 +88806,7 @@ var init_error_properties_builder = __esm(() => {
|
|
|
88684
88806
|
init_chunk_ids();
|
|
88685
88807
|
});
|
|
88686
88808
|
|
|
88687
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88809
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/base.mjs
|
|
88688
88810
|
function createFrame(platform, filename, func, lineno, colno) {
|
|
88689
88811
|
const frame = {
|
|
88690
88812
|
platform,
|
|
@@ -88703,7 +88825,7 @@ var init_base = __esm(() => {
|
|
|
88703
88825
|
init_utils();
|
|
88704
88826
|
});
|
|
88705
88827
|
|
|
88706
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88828
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/safari.mjs
|
|
88707
88829
|
var extractSafariExtensionDetails = (func, filename) => {
|
|
88708
88830
|
const isSafariExtension = func.indexOf("safari-extension") !== -1;
|
|
88709
88831
|
const isSafariWebExtension = func.indexOf("safari-web-extension") !== -1;
|
|
@@ -88719,7 +88841,7 @@ var init_safari = __esm(() => {
|
|
|
88719
88841
|
init_base();
|
|
88720
88842
|
});
|
|
88721
88843
|
|
|
88722
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88844
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/chrome.mjs
|
|
88723
88845
|
var chromeRegexNoFnName, chromeRegex, chromeEvalRegex, chromeStackLineParser = (line, platform) => {
|
|
88724
88846
|
const noFnParts = chromeRegexNoFnName.exec(line);
|
|
88725
88847
|
if (noFnParts) {
|
|
@@ -88749,7 +88871,7 @@ var init_chrome = __esm(() => {
|
|
|
88749
88871
|
chromeEvalRegex = /\((\S*)(?::(\d+))(?::(\d+))\)/;
|
|
88750
88872
|
});
|
|
88751
88873
|
|
|
88752
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88874
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/gecko.mjs
|
|
88753
88875
|
var geckoREgex, geckoEvalRegex, geckoStackLineParser = (line, platform) => {
|
|
88754
88876
|
const parts = geckoREgex.exec(line);
|
|
88755
88877
|
if (parts) {
|
|
@@ -88776,7 +88898,7 @@ var init_gecko = __esm(() => {
|
|
|
88776
88898
|
geckoEvalRegex = /(\S+) line (\d+)(?: > eval line \d+)* > eval/i;
|
|
88777
88899
|
});
|
|
88778
88900
|
|
|
88779
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88901
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/winjs.mjs
|
|
88780
88902
|
var winjsRegex, winjsStackLineParser = (line, platform) => {
|
|
88781
88903
|
const parts = winjsRegex.exec(line);
|
|
88782
88904
|
return parts ? createFrame(platform, parts[2], parts[1] || UNKNOWN_FUNCTION, +parts[3], parts[4] ? +parts[4] : undefined) : undefined;
|
|
@@ -88786,7 +88908,7 @@ var init_winjs = __esm(() => {
|
|
|
88786
88908
|
winjsRegex = /^\s*at (?:((?:\[object object\])?.+) )?\(?((?:[-a-z]+):.*?):(\d+)(?::(\d+))?\)?\s*$/i;
|
|
88787
88909
|
});
|
|
88788
88910
|
|
|
88789
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88911
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/opera.mjs
|
|
88790
88912
|
var opera10Regex, opera10StackLineParser = (line, platform) => {
|
|
88791
88913
|
const parts = opera10Regex.exec(line);
|
|
88792
88914
|
return parts ? createFrame(platform, parts[2], parts[3] || UNKNOWN_FUNCTION, +parts[1]) : undefined;
|
|
@@ -88800,7 +88922,7 @@ var init_opera = __esm(() => {
|
|
|
88800
88922
|
opera11Regex = / line (\d+), column (\d+)\s*(?:in (?:<anonymous function: ([^>]+)>|([^)]+))\(.*\))? in (.*):\s*$/i;
|
|
88801
88923
|
});
|
|
88802
88924
|
|
|
88803
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88925
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/node.mjs
|
|
88804
88926
|
function filenameIsInApp(filename, isNative = false) {
|
|
88805
88927
|
const isInternal = isNative || filename && !filename.startsWith("/") && !filename.match(/^[A-Z]:/) && !filename.startsWith(".") && !filename.match(/^[a-zA-Z]([a-zA-Z0-9.\-+])*:\/\//);
|
|
88806
88928
|
return !isInternal && filename !== undefined && !filename.includes("node_modules/");
|
|
@@ -88876,7 +88998,7 @@ var init_node = __esm(() => {
|
|
|
88876
88998
|
PROMISE_INDEX = /^index \d+$/;
|
|
88877
88999
|
});
|
|
88878
89000
|
|
|
88879
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89001
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/index.mjs
|
|
88880
89002
|
function reverseAndStripFrames(stack) {
|
|
88881
89003
|
if (!stack.length)
|
|
88882
89004
|
return [];
|
|
@@ -88930,7 +89052,7 @@ var init_parsers = __esm(() => {
|
|
|
88930
89052
|
WEBPACK_ERROR_REGEXP = /\(error: (.*)\)/;
|
|
88931
89053
|
});
|
|
88932
89054
|
|
|
88933
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89055
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/dom-exception-coercer.mjs
|
|
88934
89056
|
class DOMExceptionCoercer {
|
|
88935
89057
|
match(err) {
|
|
88936
89058
|
return this.isDOMException(err) || this.isDOMError(err);
|
|
@@ -88964,7 +89086,7 @@ var init_dom_exception_coercer = __esm(() => {
|
|
|
88964
89086
|
init_utils();
|
|
88965
89087
|
});
|
|
88966
89088
|
|
|
88967
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89089
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/error-coercer.mjs
|
|
88968
89090
|
class ErrorCoercer {
|
|
88969
89091
|
match(err) {
|
|
88970
89092
|
return isError(err);
|
|
@@ -88997,7 +89119,7 @@ var init_error_coercer = __esm(() => {
|
|
|
88997
89119
|
init_type_utils();
|
|
88998
89120
|
});
|
|
88999
89121
|
|
|
89000
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89122
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/error-event-coercer.mjs
|
|
89001
89123
|
class ErrorEventCoercer {
|
|
89002
89124
|
constructor() {}
|
|
89003
89125
|
match(err) {
|
|
@@ -89035,7 +89157,7 @@ var init_error_event_coercer = __esm(() => {
|
|
|
89035
89157
|
init_utils();
|
|
89036
89158
|
});
|
|
89037
89159
|
|
|
89038
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89160
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/string-coercer.mjs
|
|
89039
89161
|
class StringCoercer {
|
|
89040
89162
|
match(input) {
|
|
89041
89163
|
return typeof input == "string";
|
|
@@ -89068,7 +89190,7 @@ var init_string_coercer = __esm(() => {
|
|
|
89068
89190
|
ERROR_TYPES_PATTERN = /^(?:[Uu]ncaught (?:exception: )?)?(?:((?:Eval|Internal|Range|Reference|Syntax|Type|URI|)Error): )?(.*)$/i;
|
|
89069
89191
|
});
|
|
89070
89192
|
|
|
89071
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89193
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/types.mjs
|
|
89072
89194
|
var severityLevels;
|
|
89073
89195
|
var init_types8 = __esm(() => {
|
|
89074
89196
|
severityLevels = [
|
|
@@ -89081,7 +89203,7 @@ var init_types8 = __esm(() => {
|
|
|
89081
89203
|
];
|
|
89082
89204
|
});
|
|
89083
89205
|
|
|
89084
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89206
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/utils.mjs
|
|
89085
89207
|
function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
89086
89208
|
const keys = Object.keys(err);
|
|
89087
89209
|
keys.sort();
|
|
@@ -89099,7 +89221,7 @@ function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
|
89099
89221
|
}
|
|
89100
89222
|
var init_utils2 = () => {};
|
|
89101
89223
|
|
|
89102
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89224
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/object-coercer.mjs
|
|
89103
89225
|
class ObjectCoercer {
|
|
89104
89226
|
match(candidate2) {
|
|
89105
89227
|
return typeof candidate2 == "object" && candidate2 !== null;
|
|
@@ -89170,7 +89292,7 @@ var init_object_coercer = __esm(() => {
|
|
|
89170
89292
|
init_utils2();
|
|
89171
89293
|
});
|
|
89172
89294
|
|
|
89173
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89295
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/event-coercer.mjs
|
|
89174
89296
|
class EventCoercer {
|
|
89175
89297
|
match(err) {
|
|
89176
89298
|
return isEvent(err);
|
|
@@ -89190,7 +89312,7 @@ var init_event_coercer = __esm(() => {
|
|
|
89190
89312
|
init_utils2();
|
|
89191
89313
|
});
|
|
89192
89314
|
|
|
89193
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89315
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/primitive-coercer.mjs
|
|
89194
89316
|
class PrimitiveCoercer {
|
|
89195
89317
|
match(candidate2) {
|
|
89196
89318
|
return isPrimitive(candidate2);
|
|
@@ -89208,7 +89330,7 @@ var init_primitive_coercer = __esm(() => {
|
|
|
89208
89330
|
init_utils();
|
|
89209
89331
|
});
|
|
89210
89332
|
|
|
89211
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89333
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/promise-rejection-event.mjs
|
|
89212
89334
|
class PromiseRejectionEventCoercer {
|
|
89213
89335
|
match(err) {
|
|
89214
89336
|
return isBuiltin(err, "PromiseRejectionEvent") || this.isCustomEventWrappingRejection(err);
|
|
@@ -89248,7 +89370,7 @@ var init_promise_rejection_event = __esm(() => {
|
|
|
89248
89370
|
init_utils();
|
|
89249
89371
|
});
|
|
89250
89372
|
|
|
89251
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89373
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/index.mjs
|
|
89252
89374
|
var init_coercers = __esm(() => {
|
|
89253
89375
|
init_dom_exception_coercer();
|
|
89254
89376
|
init_error_coercer();
|
|
@@ -89260,7 +89382,7 @@ var init_coercers = __esm(() => {
|
|
|
89260
89382
|
init_promise_rejection_event();
|
|
89261
89383
|
});
|
|
89262
89384
|
|
|
89263
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89385
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/utils.mjs
|
|
89264
89386
|
class ReduceableCache {
|
|
89265
89387
|
constructor(_maxSize2) {
|
|
89266
89388
|
this._maxSize = _maxSize2;
|
|
@@ -89287,7 +89409,7 @@ class ReduceableCache {
|
|
|
89287
89409
|
}
|
|
89288
89410
|
var init_utils3 = () => {};
|
|
89289
89411
|
|
|
89290
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89412
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/exception-steps.mjs
|
|
89291
89413
|
function resolveExceptionStepsConfig(config3) {
|
|
89292
89414
|
if (!config3)
|
|
89293
89415
|
return {
|
|
@@ -89425,14 +89547,14 @@ var init_exception_steps = __esm(() => {
|
|
|
89425
89547
|
};
|
|
89426
89548
|
});
|
|
89427
89549
|
|
|
89428
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89550
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/release.mjs
|
|
89429
89551
|
function getInjectedReleaseId() {
|
|
89430
89552
|
const injected = globalThis._posthogReleaseId;
|
|
89431
89553
|
return typeof injected == "string" && injected.length > 0 ? injected : undefined;
|
|
89432
89554
|
}
|
|
89433
89555
|
var init_release = () => {};
|
|
89434
89556
|
|
|
89435
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89557
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/index.mjs
|
|
89436
89558
|
var exports_error_tracking = {};
|
|
89437
89559
|
__export(exports_error_tracking, {
|
|
89438
89560
|
DEFAULT_EXCEPTION_STEPS_CONFIG: () => DEFAULT_EXCEPTION_STEPS_CONFIG,
|
|
@@ -89471,7 +89593,7 @@ var init_error_tracking = __esm(() => {
|
|
|
89471
89593
|
init_release();
|
|
89472
89594
|
});
|
|
89473
89595
|
|
|
89474
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89596
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/posthog-core-stateless.mjs
|
|
89475
89597
|
async function logFlushError(err) {
|
|
89476
89598
|
if (err instanceof PostHogFetchHttpError) {
|
|
89477
89599
|
let text = "";
|
|
@@ -90372,10 +90494,12 @@ class PostHogCoreStateless {
|
|
|
90372
90494
|
const body = options.body ? options.body : "";
|
|
90373
90495
|
let reqByteLength = -1;
|
|
90374
90496
|
try {
|
|
90375
|
-
reqByteLength = body instanceof Blob ? body.size : Buffer.byteLength(body, STRING_FORMAT);
|
|
90497
|
+
reqByteLength = body instanceof Blob ? body.size : body instanceof Uint8Array ? body.byteLength : Buffer.byteLength(body, STRING_FORMAT);
|
|
90376
90498
|
} catch {
|
|
90377
90499
|
if (body instanceof Blob)
|
|
90378
90500
|
reqByteLength = body.size;
|
|
90501
|
+
else if (body instanceof Uint8Array)
|
|
90502
|
+
reqByteLength = body.byteLength;
|
|
90379
90503
|
else {
|
|
90380
90504
|
const encoded = new TextEncoder().encode(body);
|
|
90381
90505
|
reqByteLength = encoded.length;
|
|
@@ -90590,7 +90714,7 @@ var init_posthog_core_stateless = __esm(() => {
|
|
|
90590
90714
|
};
|
|
90591
90715
|
});
|
|
90592
90716
|
|
|
90593
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
90717
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/posthog-core.mjs
|
|
90594
90718
|
var init_posthog_core = __esm(() => {
|
|
90595
90719
|
init_featureFlagUtils();
|
|
90596
90720
|
init_types7();
|
|
@@ -90599,12 +90723,12 @@ var init_posthog_core = __esm(() => {
|
|
|
90599
90723
|
init_utils();
|
|
90600
90724
|
});
|
|
90601
90725
|
|
|
90602
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
90726
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/tracing-headers.mjs
|
|
90603
90727
|
var init_tracing_headers = __esm(() => {
|
|
90604
90728
|
init_type_utils();
|
|
90605
90729
|
});
|
|
90606
90730
|
|
|
90607
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
90731
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/index.mjs
|
|
90608
90732
|
var init_dist2 = __esm(() => {
|
|
90609
90733
|
init_featureFlagUtils();
|
|
90610
90734
|
init_gzip();
|
|
@@ -90622,7 +90746,7 @@ var init_dist2 = __esm(() => {
|
|
|
90622
90746
|
init_types7();
|
|
90623
90747
|
});
|
|
90624
90748
|
|
|
90625
|
-
// node_modules/.bun/posthog-node@5.
|
|
90749
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/context-lines.node.mjs
|
|
90626
90750
|
import { constants as constants6 } from "fs";
|
|
90627
90751
|
import { open as promises_open } from "fs/promises";
|
|
90628
90752
|
import { isAbsolute as isAbsolute7 } from "path";
|
|
@@ -90909,7 +91033,7 @@ var init_context_lines_node = __esm(() => {
|
|
|
90909
91033
|
LRU_FILE_CONTENTS_FS_READ_FAILED = new exports_error_tracking.ReduceableCache(20);
|
|
90910
91034
|
});
|
|
90911
91035
|
|
|
90912
|
-
// node_modules/.bun/posthog-node@5.
|
|
91036
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/relative-path.node.mjs
|
|
90913
91037
|
import { isAbsolute as isAbsolute8, relative as relative4, sep as sep8 } from "path";
|
|
90914
91038
|
function createRelativePathModifier(basePath = process.cwd()) {
|
|
90915
91039
|
const isWindows = sep8 === "\\";
|
|
@@ -90926,11 +91050,11 @@ function createRelativePathModifier(basePath = process.cwd()) {
|
|
|
90926
91050
|
}
|
|
90927
91051
|
var init_relative_path_node = () => {};
|
|
90928
91052
|
|
|
90929
|
-
// node_modules/.bun/posthog-node@5.
|
|
90930
|
-
var version2 = "5.
|
|
91053
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/version.mjs
|
|
91054
|
+
var version2 = "5.51.1";
|
|
90931
91055
|
var init_version = () => {};
|
|
90932
91056
|
|
|
90933
|
-
// node_modules/.bun/posthog-node@5.
|
|
91057
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/types.mjs
|
|
90934
91058
|
var FeatureFlagError2;
|
|
90935
91059
|
var init_types9 = __esm(() => {
|
|
90936
91060
|
FeatureFlagError2 = {
|
|
@@ -90941,7 +91065,7 @@ var init_types9 = __esm(() => {
|
|
|
90941
91065
|
};
|
|
90942
91066
|
});
|
|
90943
91067
|
|
|
90944
|
-
// node_modules/.bun/posthog-node@5.
|
|
91068
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/feature-flag-evaluations.mjs
|
|
90945
91069
|
class FeatureFlagEvaluations {
|
|
90946
91070
|
constructor(init) {
|
|
90947
91071
|
this._host = init.host;
|
|
@@ -90957,10 +91081,10 @@ class FeatureFlagEvaluations {
|
|
|
90957
91081
|
this._accessed = init.accessed ?? new Set;
|
|
90958
91082
|
this._isSlice = init.isSlice ?? false;
|
|
90959
91083
|
}
|
|
90960
|
-
isEnabled(key) {
|
|
91084
|
+
isEnabled(key, options = {}) {
|
|
90961
91085
|
const flag = this._flags[key];
|
|
90962
91086
|
this._recordAccess(key);
|
|
90963
|
-
return flag?.enabled ?? false;
|
|
91087
|
+
return flag?.enabled ?? options.defaultValue ?? false;
|
|
90964
91088
|
}
|
|
90965
91089
|
getFlag(key) {
|
|
90966
91090
|
const flag = this._flags[key];
|
|
@@ -91077,7 +91201,7 @@ var init_feature_flag_evaluations = __esm(() => {
|
|
|
91077
91201
|
init_types9();
|
|
91078
91202
|
});
|
|
91079
91203
|
|
|
91080
|
-
// node_modules/.bun/posthog-node@5.
|
|
91204
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/feature-flags/crypto.mjs
|
|
91081
91205
|
async function hashSHA1(text) {
|
|
91082
91206
|
const subtle = globalThis.crypto?.subtle;
|
|
91083
91207
|
if (!subtle)
|
|
@@ -91088,7 +91212,7 @@ async function hashSHA1(text) {
|
|
|
91088
91212
|
}
|
|
91089
91213
|
var init_crypto = () => {};
|
|
91090
91214
|
|
|
91091
|
-
// node_modules/.bun/posthog-node@5.
|
|
91215
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/feature-flags/feature-flags.mjs
|
|
91092
91216
|
function setCustomErrorPrototype(error51, constructor) {
|
|
91093
91217
|
error51.name = constructor.name;
|
|
91094
91218
|
Error.captureStackTrace(error51, constructor);
|
|
@@ -92040,7 +92164,7 @@ var init_feature_flags = __esm(() => {
|
|
|
92040
92164
|
};
|
|
92041
92165
|
});
|
|
92042
92166
|
|
|
92043
|
-
// node_modules/.bun/posthog-node@5.
|
|
92167
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/error-tracking/autocapture.mjs
|
|
92044
92168
|
function splitNodeOptions(nodeOptions) {
|
|
92045
92169
|
const args = [];
|
|
92046
92170
|
let current = "";
|
|
@@ -92141,7 +92265,7 @@ var init_autocapture = __esm(() => {
|
|
|
92141
92265
|
STARTUP_UNHANDLED_REJECTION_MODE = getUnhandledRejectionMode();
|
|
92142
92266
|
});
|
|
92143
92267
|
|
|
92144
|
-
// node_modules/.bun/posthog-node@5.
|
|
92268
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/error-tracking/index.mjs
|
|
92145
92269
|
class error_tracking_ErrorTracking {
|
|
92146
92270
|
constructor(client3, options, _logger) {
|
|
92147
92271
|
this.client = client3;
|
|
@@ -92215,7 +92339,7 @@ var init_error_tracking2 = __esm(() => {
|
|
|
92215
92339
|
init_dist2();
|
|
92216
92340
|
});
|
|
92217
92341
|
|
|
92218
|
-
// node_modules/.bun/posthog-node@5.
|
|
92342
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/storage-memory.mjs
|
|
92219
92343
|
class PostHogMemoryStorage {
|
|
92220
92344
|
getProperty(key) {
|
|
92221
92345
|
return this._memoryStorage[key];
|
|
@@ -92229,7 +92353,7 @@ class PostHogMemoryStorage {
|
|
|
92229
92353
|
}
|
|
92230
92354
|
var init_storage_memory = () => {};
|
|
92231
92355
|
|
|
92232
|
-
// node_modules/.bun/posthog-node@5.
|
|
92356
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/capture-v1/config.mjs
|
|
92233
92357
|
function isCaptureMode(value) {
|
|
92234
92358
|
return value === "v0" || value === "v1";
|
|
92235
92359
|
}
|
|
@@ -92239,14 +92363,14 @@ function resolveCaptureMode() {
|
|
|
92239
92363
|
}
|
|
92240
92364
|
var init_config3 = () => {};
|
|
92241
92365
|
|
|
92242
|
-
// node_modules/.bun/posthog-node@5.
|
|
92366
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/capture-v1/routing.mjs
|
|
92243
92367
|
function isLegacyOnlyEvent(message) {
|
|
92244
92368
|
return typeof message.event == "string" && message.event.startsWith(AI_EVENT_PREFIX);
|
|
92245
92369
|
}
|
|
92246
92370
|
var AI_EVENT_PREFIX = "$ai_", ANALYTICS_ROUTE = "analytics", AI_ROUTE = "ai";
|
|
92247
92371
|
var init_routing = () => {};
|
|
92248
92372
|
|
|
92249
|
-
// node_modules/.bun/posthog-node@5.
|
|
92373
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/capture-v1/errors.mjs
|
|
92250
92374
|
var CaptureV1Error;
|
|
92251
92375
|
var init_errors3 = __esm(() => {
|
|
92252
92376
|
CaptureV1Error = class CaptureV1Error extends Error {
|
|
@@ -92266,7 +92390,7 @@ var init_errors3 = __esm(() => {
|
|
|
92266
92390
|
};
|
|
92267
92391
|
});
|
|
92268
92392
|
|
|
92269
|
-
// node_modules/.bun/posthog-node@5.
|
|
92393
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/capture-v1/transform.mjs
|
|
92270
92394
|
function coerceBool(value) {
|
|
92271
92395
|
if (typeof value == "boolean")
|
|
92272
92396
|
return value;
|
|
@@ -92384,7 +92508,7 @@ var init_transform = __esm(() => {
|
|
|
92384
92508
|
];
|
|
92385
92509
|
});
|
|
92386
92510
|
|
|
92387
|
-
// node_modules/.bun/posthog-node@5.
|
|
92511
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/capture-v1/sender.mjs
|
|
92388
92512
|
class V1CaptureSender {
|
|
92389
92513
|
constructor(config3, hooks) {
|
|
92390
92514
|
this.config = config3;
|
|
@@ -92640,11 +92764,11 @@ var init_sender = __esm(() => {
|
|
|
92640
92764
|
]);
|
|
92641
92765
|
});
|
|
92642
92766
|
|
|
92643
|
-
// node_modules/.bun/posthog-node@5.
|
|
92767
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/ai-capture/routing.mjs
|
|
92644
92768
|
var AI_CAPTURE_ROUTE = "ai-capture", AI_CAPTURE_ENDPOINT_PATH = "/i/v0/ai/batch/", AI_MAX_EVENT_BYTES = 8388608, AI_BATCH_TARGET_BYTES = 5242880;
|
|
92645
92769
|
var init_routing2 = () => {};
|
|
92646
92770
|
|
|
92647
|
-
// node_modules/.bun/posthog-node@5.
|
|
92771
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/ai-capture/batching.mjs
|
|
92648
92772
|
function eventByteSize(message) {
|
|
92649
92773
|
return encoder.encode(safeJsonStringify(message)).length;
|
|
92650
92774
|
}
|
|
@@ -92686,7 +92810,7 @@ var init_batching = __esm(() => {
|
|
|
92686
92810
|
encoder = new TextEncoder;
|
|
92687
92811
|
});
|
|
92688
92812
|
|
|
92689
|
-
// node_modules/.bun/posthog-node@5.
|
|
92813
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/client.mjs
|
|
92690
92814
|
function emitDeprecationWarningOnce(id, message) {
|
|
92691
92815
|
if (_emittedDeprecations.has(id))
|
|
92692
92816
|
return;
|
|
@@ -93243,7 +93367,7 @@ var init_client3 = __esm(() => {
|
|
|
93243
93367
|
result = {
|
|
93244
93368
|
key,
|
|
93245
93369
|
enabled: flagDetail.enabled,
|
|
93246
|
-
variant: flagDetail.variant,
|
|
93370
|
+
variant: flagDetail.variant ?? undefined,
|
|
93247
93371
|
payload: parsedPayload
|
|
93248
93372
|
};
|
|
93249
93373
|
}
|
|
@@ -93444,6 +93568,7 @@ var init_client3 = __esm(() => {
|
|
|
93444
93568
|
const evaluationContext = this.createFeatureFlagEvaluationContext(resolvedDistinctId, groups, this.personPropertiesForLocalEvaluation(resolvedDistinctId, personProperties), groupProperties);
|
|
93445
93569
|
if (onlyEvaluateLocally == undefined)
|
|
93446
93570
|
onlyEvaluateLocally = this.options.strictLocalEvaluation ?? false;
|
|
93571
|
+
const requestedFlagKeys = flagKeys ? new Set(flagKeys) : undefined;
|
|
93447
93572
|
const records = {};
|
|
93448
93573
|
let requestId;
|
|
93449
93574
|
let evaluatedAt;
|
|
@@ -93467,7 +93592,8 @@ var init_client3 = __esm(() => {
|
|
|
93467
93592
|
};
|
|
93468
93593
|
locallyEvaluatedKeys.add(key);
|
|
93469
93594
|
}
|
|
93470
|
-
const
|
|
93595
|
+
const requestedFlagMissingLocally = requestedFlagKeys !== undefined && Array.from(requestedFlagKeys).some((key) => this.featureFlagsPoller?.featureFlagsByKey[key] === undefined);
|
|
93596
|
+
const fallbackToFlags = localResult ? localResult.fallbackToFlags || requestedFlagMissingLocally : true;
|
|
93471
93597
|
if (fallbackToFlags && !onlyEvaluateLocally) {
|
|
93472
93598
|
const details = await super.getFeatureFlagDetailsStateless(evaluationContext.distinctId, evaluationContext.groups, personProperties, groupProperties, disableGeoip, flagKeys);
|
|
93473
93599
|
if (details) {
|
|
@@ -93528,6 +93654,11 @@ var init_client3 = __esm(() => {
|
|
|
93528
93654
|
payload
|
|
93529
93655
|
};
|
|
93530
93656
|
}
|
|
93657
|
+
if (requestedFlagKeys !== undefined) {
|
|
93658
|
+
for (const key of Object.keys(records))
|
|
93659
|
+
if (!requestedFlagKeys.has(key))
|
|
93660
|
+
delete records[key];
|
|
93661
|
+
}
|
|
93531
93662
|
return new FeatureFlagEvaluations({
|
|
93532
93663
|
host: this._getFeatureFlagEvaluationsHost(),
|
|
93533
93664
|
distinctId: resolvedDistinctId,
|
|
@@ -93936,7 +94067,7 @@ var init_client3 = __esm(() => {
|
|
|
93936
94067
|
};
|
|
93937
94068
|
});
|
|
93938
94069
|
|
|
93939
|
-
// node_modules/.bun/posthog-node@5.
|
|
94070
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/context/context.mjs
|
|
93940
94071
|
import { AsyncLocalStorage } from "async_hooks";
|
|
93941
94072
|
|
|
93942
94073
|
class PostHogContext {
|
|
@@ -93968,15 +94099,13 @@ class PostHogContext {
|
|
|
93968
94099
|
}
|
|
93969
94100
|
var init_context = () => {};
|
|
93970
94101
|
|
|
93971
|
-
// node_modules/.bun/posthog-node@5.
|
|
94102
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/gzip.node.mjs
|
|
93972
94103
|
import { gzip } from "zlib";
|
|
93973
94104
|
import { promisify as promisify2 } from "util";
|
|
93974
94105
|
async function gzipCompress2(input, isDebug = true) {
|
|
93975
94106
|
try {
|
|
93976
94107
|
const compressed = await gzipAsync(input);
|
|
93977
|
-
return new
|
|
93978
|
-
new Uint8Array(compressed)
|
|
93979
|
-
]);
|
|
94108
|
+
return new Uint8Array(compressed);
|
|
93980
94109
|
} catch (error51) {
|
|
93981
94110
|
if (isDebug)
|
|
93982
94111
|
console.error("Failed to gzip compress data", error51);
|
|
@@ -93988,7 +94117,7 @@ var init_gzip_node = __esm(() => {
|
|
|
93988
94117
|
gzipAsync = promisify2(gzip);
|
|
93989
94118
|
});
|
|
93990
94119
|
|
|
93991
|
-
// node_modules/.bun/posthog-node@5.
|
|
94120
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/sentry-integration.mjs
|
|
93992
94121
|
function createEventProcessor(_posthog, { organization, projectId, prefix, severityAllowList = [
|
|
93993
94122
|
"error"
|
|
93994
94123
|
], sendExceptionsToPostHog = true } = {}) {
|
|
@@ -94063,22 +94192,22 @@ var init_sentry_integration = __esm(() => {
|
|
|
94063
94192
|
};
|
|
94064
94193
|
});
|
|
94065
94194
|
|
|
94066
|
-
// node_modules/.bun/posthog-node@5.
|
|
94195
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/tracing-headers.mjs
|
|
94067
94196
|
var init_tracing_headers2 = () => {};
|
|
94068
94197
|
|
|
94069
|
-
// node_modules/.bun/posthog-node@5.
|
|
94198
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/url-utils.mjs
|
|
94070
94199
|
var init_url_utils = __esm(() => {
|
|
94071
94200
|
init_dist2();
|
|
94072
94201
|
});
|
|
94073
94202
|
|
|
94074
|
-
// node_modules/.bun/posthog-node@5.
|
|
94203
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/express.mjs
|
|
94075
94204
|
var init_express = __esm(() => {
|
|
94076
94205
|
init_error_tracking2();
|
|
94077
94206
|
init_tracing_headers2();
|
|
94078
94207
|
init_url_utils();
|
|
94079
94208
|
});
|
|
94080
94209
|
|
|
94081
|
-
// node_modules/.bun/posthog-node@5.
|
|
94210
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/exports.mjs
|
|
94082
94211
|
var init_exports = __esm(() => {
|
|
94083
94212
|
init_feature_flag_evaluations();
|
|
94084
94213
|
init_dist2();
|
|
@@ -94087,7 +94216,7 @@ var init_exports = __esm(() => {
|
|
|
94087
94216
|
init_types9();
|
|
94088
94217
|
});
|
|
94089
94218
|
|
|
94090
|
-
// node_modules/.bun/posthog-node@5.
|
|
94219
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/entrypoints/index.node.mjs
|
|
94091
94220
|
var PostHog;
|
|
94092
94221
|
var init_index_node = __esm(() => {
|
|
94093
94222
|
init_module_node();
|
|
@@ -94330,7 +94459,7 @@ var package_default2;
|
|
|
94330
94459
|
var init_package2 = __esm(() => {
|
|
94331
94460
|
package_default2 = {
|
|
94332
94461
|
name: "@oh-my-opencode/omo-codex",
|
|
94333
|
-
version: "5.0.0-beta.
|
|
94462
|
+
version: "5.0.0-beta.19",
|
|
94334
94463
|
type: "module",
|
|
94335
94464
|
private: true,
|
|
94336
94465
|
description: "Codex harness adapter for oh-my-openagent. Vendored Codex plugin namespace (omo) + TypeScript installer + telemetry.",
|
|
@@ -111683,12 +111812,12 @@ var package_default3 = {
|
|
|
111683
111812
|
"@oh-my-opencode/tmux-core": "workspace:*",
|
|
111684
111813
|
"@oh-my-opencode/team-core": "workspace:*",
|
|
111685
111814
|
"@oh-my-opencode/utils": "workspace:*",
|
|
111686
|
-
"@opencode-ai/plugin": "1.18.
|
|
111687
|
-
"@opencode-ai/sdk": "1.18.
|
|
111815
|
+
"@opencode-ai/plugin": "1.18.22",
|
|
111816
|
+
"@opencode-ai/sdk": "1.18.22",
|
|
111688
111817
|
commander: "^15.0.0",
|
|
111689
111818
|
"jsonc-parser": "^3.3.1",
|
|
111690
111819
|
picocolors: "^1.1.1",
|
|
111691
|
-
picomatch: "^4.0.
|
|
111820
|
+
picomatch: "^4.0.7",
|
|
111692
111821
|
zod: "^4.4.3"
|
|
111693
111822
|
}
|
|
111694
111823
|
};
|