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-node/index.js
CHANGED
|
@@ -55,7 +55,7 @@ var package_default;
|
|
|
55
55
|
var init_package = __esm(() => {
|
|
56
56
|
package_default = {
|
|
57
57
|
name: "oh-my-opencode",
|
|
58
|
-
version: "5.0.0-beta.
|
|
58
|
+
version: "5.0.0-beta.19",
|
|
59
59
|
description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
60
60
|
main: "./dist/index.js",
|
|
61
61
|
types: "dist/index.d.ts",
|
|
@@ -220,23 +220,23 @@ var init_package = __esm(() => {
|
|
|
220
220
|
"@clack/prompts": "^1.7.0",
|
|
221
221
|
"@code-yeongyu/comment-checker": "^0.8.0",
|
|
222
222
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
223
|
-
"@opencode-ai/plugin": "1.18.
|
|
224
|
-
"@opencode-ai/sdk": "1.18.
|
|
225
|
-
"@opentui/core": "^0.5.
|
|
226
|
-
"@opentui/keymap": "^0.5.
|
|
227
|
-
"@opentui/solid": "^0.5.
|
|
223
|
+
"@opencode-ai/plugin": "1.18.22",
|
|
224
|
+
"@opencode-ai/sdk": "1.18.22",
|
|
225
|
+
"@opentui/core": "^0.5.8",
|
|
226
|
+
"@opentui/keymap": "^0.5.8",
|
|
227
|
+
"@opentui/solid": "^0.5.8",
|
|
228
228
|
commander: "^15.0.0",
|
|
229
229
|
"detect-libc": "^2.1.2",
|
|
230
230
|
diff: "^9.0.0",
|
|
231
231
|
"js-yaml": "^5.0.0",
|
|
232
232
|
"jsonc-parser": "^3.3.1",
|
|
233
233
|
picocolors: "^1.1.1",
|
|
234
|
-
picomatch: "^4.0.
|
|
235
|
-
"posthog-node": "^5.
|
|
234
|
+
picomatch: "^4.0.7",
|
|
235
|
+
"posthog-node": "^5.51.1",
|
|
236
236
|
zod: "^4.4.3"
|
|
237
237
|
},
|
|
238
238
|
devDependencies: {
|
|
239
|
-
"@code-yeongyu/senpi": "2026.8.
|
|
239
|
+
"@code-yeongyu/senpi": "2026.8.24",
|
|
240
240
|
"@oh-my-opencode/agents-md-core": "workspace:*",
|
|
241
241
|
"@oh-my-opencode/ast-grep-mcp": "workspace:*",
|
|
242
242
|
"@oh-my-opencode/boulder-state": "workspace:*",
|
|
@@ -277,18 +277,18 @@ var init_package = __esm(() => {
|
|
|
277
277
|
typescript: "^7.0.2"
|
|
278
278
|
},
|
|
279
279
|
optionalDependencies: {
|
|
280
|
-
"oh-my-opencode-darwin-arm64": "5.0.0-beta.
|
|
281
|
-
"oh-my-opencode-darwin-x64": "5.0.0-beta.
|
|
282
|
-
"oh-my-opencode-darwin-x64-baseline": "5.0.0-beta.
|
|
283
|
-
"oh-my-opencode-linux-arm64": "5.0.0-beta.
|
|
284
|
-
"oh-my-opencode-linux-arm64-musl": "5.0.0-beta.
|
|
285
|
-
"oh-my-opencode-linux-x64": "5.0.0-beta.
|
|
286
|
-
"oh-my-opencode-linux-x64-baseline": "5.0.0-beta.
|
|
287
|
-
"oh-my-opencode-linux-x64-musl": "5.0.0-beta.
|
|
288
|
-
"oh-my-opencode-linux-x64-musl-baseline": "5.0.0-beta.
|
|
289
|
-
"oh-my-opencode-windows-arm64": "5.0.0-beta.
|
|
290
|
-
"oh-my-opencode-windows-x64": "5.0.0-beta.
|
|
291
|
-
"oh-my-opencode-windows-x64-baseline": "5.0.0-beta.
|
|
280
|
+
"oh-my-opencode-darwin-arm64": "5.0.0-beta.19",
|
|
281
|
+
"oh-my-opencode-darwin-x64": "5.0.0-beta.19",
|
|
282
|
+
"oh-my-opencode-darwin-x64-baseline": "5.0.0-beta.19",
|
|
283
|
+
"oh-my-opencode-linux-arm64": "5.0.0-beta.19",
|
|
284
|
+
"oh-my-opencode-linux-arm64-musl": "5.0.0-beta.19",
|
|
285
|
+
"oh-my-opencode-linux-x64": "5.0.0-beta.19",
|
|
286
|
+
"oh-my-opencode-linux-x64-baseline": "5.0.0-beta.19",
|
|
287
|
+
"oh-my-opencode-linux-x64-musl": "5.0.0-beta.19",
|
|
288
|
+
"oh-my-opencode-linux-x64-musl-baseline": "5.0.0-beta.19",
|
|
289
|
+
"oh-my-opencode-windows-arm64": "5.0.0-beta.19",
|
|
290
|
+
"oh-my-opencode-windows-x64": "5.0.0-beta.19",
|
|
291
|
+
"oh-my-opencode-windows-x64-baseline": "5.0.0-beta.19"
|
|
292
292
|
},
|
|
293
293
|
overrides: {
|
|
294
294
|
"@earendil-works/pi-agent-core": "0.84.2",
|
|
@@ -81545,10 +81545,10 @@ var init_tmux = __esm(() => {
|
|
|
81545
81545
|
init_runner2();
|
|
81546
81546
|
init_tmux_utils2();
|
|
81547
81547
|
});
|
|
81548
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81548
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/types.gen.js
|
|
81549
81549
|
var init_types_gen = () => {};
|
|
81550
81550
|
|
|
81551
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81551
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/serverSentEvents.gen.js
|
|
81552
81552
|
var createSseClient = ({ onSseError, onSseEvent, responseTransformer, responseValidator, sseDefaultRetryDelay, sseMaxRetryAttempts, sseMaxRetryDelay, sseSleepFn, url: url2, ...options }) => {
|
|
81553
81553
|
let lastEventId;
|
|
81554
81554
|
const sleep = sseSleepFn ?? ((ms) => new Promise((resolve5) => setTimeout(resolve5, ms)));
|
|
@@ -81657,7 +81657,7 @@ var createSseClient = ({ onSseError, onSseEvent, responseTransformer, responseVa
|
|
|
81657
81657
|
return { stream };
|
|
81658
81658
|
};
|
|
81659
81659
|
|
|
81660
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81660
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/auth.gen.js
|
|
81661
81661
|
var getAuthToken = async (auth, callback) => {
|
|
81662
81662
|
const token = typeof callback === "function" ? await callback(auth) : callback;
|
|
81663
81663
|
if (!token) {
|
|
@@ -81672,7 +81672,7 @@ var getAuthToken = async (auth, callback) => {
|
|
|
81672
81672
|
return token;
|
|
81673
81673
|
};
|
|
81674
81674
|
|
|
81675
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81675
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/bodySerializer.gen.js
|
|
81676
81676
|
var jsonBodySerializer;
|
|
81677
81677
|
var init_bodySerializer_gen = __esm(() => {
|
|
81678
81678
|
jsonBodySerializer = {
|
|
@@ -81680,7 +81680,7 @@ var init_bodySerializer_gen = __esm(() => {
|
|
|
81680
81680
|
};
|
|
81681
81681
|
});
|
|
81682
81682
|
|
|
81683
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81683
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/pathSerializer.gen.js
|
|
81684
81684
|
var separatorArrayExplode = (style) => {
|
|
81685
81685
|
switch (style) {
|
|
81686
81686
|
case "label":
|
|
@@ -81778,7 +81778,7 @@ var separatorArrayExplode = (style) => {
|
|
|
81778
81778
|
return style === "label" || style === "matrix" ? separator + joinedValues : joinedValues;
|
|
81779
81779
|
};
|
|
81780
81780
|
|
|
81781
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81781
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/utils.gen.js
|
|
81782
81782
|
var PATH_PARAM_RE, defaultPathSerializer = ({ path: path7, url: _url2 }) => {
|
|
81783
81783
|
let url2 = _url2;
|
|
81784
81784
|
const matches = _url2.match(PATH_PARAM_RE);
|
|
@@ -81847,7 +81847,7 @@ var init_utils_gen = __esm(() => {
|
|
|
81847
81847
|
PATH_PARAM_RE = /\{[^{}]+\}/g;
|
|
81848
81848
|
});
|
|
81849
81849
|
|
|
81850
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
81850
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/client/utils.gen.js
|
|
81851
81851
|
class Interceptors {
|
|
81852
81852
|
_fns;
|
|
81853
81853
|
constructor() {
|
|
@@ -82050,7 +82050,7 @@ var init_utils_gen2 = __esm(() => {
|
|
|
82050
82050
|
};
|
|
82051
82051
|
});
|
|
82052
82052
|
|
|
82053
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82053
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/client/client.gen.js
|
|
82054
82054
|
var createClient = (config3 = {}) => {
|
|
82055
82055
|
let _config = mergeConfigs(createConfig(), config3);
|
|
82056
82056
|
const getConfig = () => ({ ..._config });
|
|
@@ -82201,7 +82201,7 @@ var init_client_gen = __esm(() => {
|
|
|
82201
82201
|
init_utils_gen2();
|
|
82202
82202
|
});
|
|
82203
82203
|
|
|
82204
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82204
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/core/params.gen.js
|
|
82205
82205
|
var extraPrefixesMap, extraPrefixes;
|
|
82206
82206
|
var init_params_gen = __esm(() => {
|
|
82207
82207
|
extraPrefixesMap = {
|
|
@@ -82213,7 +82213,7 @@ var init_params_gen = __esm(() => {
|
|
|
82213
82213
|
extraPrefixes = Object.entries(extraPrefixesMap);
|
|
82214
82214
|
});
|
|
82215
82215
|
|
|
82216
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82216
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/client/index.js
|
|
82217
82217
|
var init_client = __esm(() => {
|
|
82218
82218
|
init_bodySerializer_gen();
|
|
82219
82219
|
init_params_gen();
|
|
@@ -82221,7 +82221,7 @@ var init_client = __esm(() => {
|
|
|
82221
82221
|
init_utils_gen2();
|
|
82222
82222
|
});
|
|
82223
82223
|
|
|
82224
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82224
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/client.gen.js
|
|
82225
82225
|
var client;
|
|
82226
82226
|
var init_client_gen2 = __esm(() => {
|
|
82227
82227
|
init_client();
|
|
@@ -82230,7 +82230,7 @@ var init_client_gen2 = __esm(() => {
|
|
|
82230
82230
|
}));
|
|
82231
82231
|
});
|
|
82232
82232
|
|
|
82233
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82233
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/gen/sdk.gen.js
|
|
82234
82234
|
class _HeyApiClient {
|
|
82235
82235
|
_client = client;
|
|
82236
82236
|
constructor(args) {
|
|
@@ -82881,7 +82881,7 @@ var init_sdk_gen = __esm(() => {
|
|
|
82881
82881
|
};
|
|
82882
82882
|
});
|
|
82883
82883
|
|
|
82884
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82884
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/error-interceptor.js
|
|
82885
82885
|
function wrapClientError(error51, response, request, opts) {
|
|
82886
82886
|
if (!opts?.throwOnError)
|
|
82887
82887
|
return error51;
|
|
@@ -82908,7 +82908,7 @@ function describe3(request, response) {
|
|
|
82908
82908
|
return `${method} ${url2}${status ? " → " + status : ""}${statusText ? " " + statusText : ""}`;
|
|
82909
82909
|
}
|
|
82910
82910
|
|
|
82911
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
82911
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/client.js
|
|
82912
82912
|
function pick3(value, fallback) {
|
|
82913
82913
|
if (!value)
|
|
82914
82914
|
return;
|
|
@@ -83418,7 +83418,7 @@ var require_cross_spawn = __commonJS(function(exports, module) {
|
|
|
83418
83418
|
module.exports._enoent = enoent;
|
|
83419
83419
|
});
|
|
83420
83420
|
|
|
83421
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
83421
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/process.js
|
|
83422
83422
|
import { spawnSync as spawnSync3 } from "node:child_process";
|
|
83423
83423
|
function stop(proc) {
|
|
83424
83424
|
if (proc.exitCode !== null || proc.signalCode !== null)
|
|
@@ -83452,7 +83452,7 @@ function bindAbort(proc, signal, onAbort) {
|
|
|
83452
83452
|
}
|
|
83453
83453
|
var init_process = () => {};
|
|
83454
83454
|
|
|
83455
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
83455
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/server.js
|
|
83456
83456
|
async function createOpencodeServer(options) {
|
|
83457
83457
|
options = Object.assign({
|
|
83458
83458
|
hostname: "127.0.0.1",
|
|
@@ -83535,7 +83535,7 @@ var init_server = __esm(() => {
|
|
|
83535
83535
|
import_cross_spawn = __toESM(require_cross_spawn(), 1);
|
|
83536
83536
|
});
|
|
83537
83537
|
|
|
83538
|
-
// node_modules/.bun/@opencode-ai+sdk@1.18.
|
|
83538
|
+
// node_modules/.bun/@opencode-ai+sdk@1.18.22/node_modules/@opencode-ai/sdk/dist/index.js
|
|
83539
83539
|
async function createOpencode(options) {
|
|
83540
83540
|
const server2 = await createOpencodeServer({
|
|
83541
83541
|
...options
|
|
@@ -86900,7 +86900,7 @@ var init_env2 = __esm(() => {
|
|
|
86900
86900
|
SEND_OPT_OUT_VALUES = ["0", "false", "no", "yes"];
|
|
86901
86901
|
});
|
|
86902
86902
|
|
|
86903
|
-
// node_modules/.bun/posthog-node@5.
|
|
86903
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/module.node.mjs
|
|
86904
86904
|
import { dirname as dirname17, posix as posix7, sep as sep7 } from "path";
|
|
86905
86905
|
function createModulerModifier() {
|
|
86906
86906
|
const getModuleFromFileName = createGetModuleFromFilename();
|
|
@@ -86937,7 +86937,7 @@ function normalizeWindowsPath(path7) {
|
|
|
86937
86937
|
}
|
|
86938
86938
|
var init_module_node = () => {};
|
|
86939
86939
|
|
|
86940
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
86940
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/featureFlagUtils.mjs
|
|
86941
86941
|
function getFlagDetailFromFlagAndPayload(key, value, payload) {
|
|
86942
86942
|
return {
|
|
86943
86943
|
key,
|
|
@@ -87066,7 +87066,7 @@ var init_featureFlagUtils = __esm(() => {
|
|
|
87066
87066
|
];
|
|
87067
87067
|
});
|
|
87068
87068
|
|
|
87069
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87069
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/types.mjs
|
|
87070
87070
|
var types_PostHogPersistedProperty;
|
|
87071
87071
|
var init_types7 = __esm(() => {
|
|
87072
87072
|
types_PostHogPersistedProperty = /* @__PURE__ */ function(PostHogPersistedProperty) {
|
|
@@ -87107,7 +87107,7 @@ var init_types7 = __esm(() => {
|
|
|
87107
87107
|
}({});
|
|
87108
87108
|
});
|
|
87109
87109
|
|
|
87110
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87110
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/gzip.mjs
|
|
87111
87111
|
function isGzipSupported() {
|
|
87112
87112
|
return "CompressionStream" in globalThis && "TextEncoder" in globalThis && "Response" in globalThis && typeof Response.prototype.blob == "function";
|
|
87113
87113
|
}
|
|
@@ -87175,7 +87175,30 @@ var init_gzip = __esm(() => {
|
|
|
87175
87175
|
init_types7();
|
|
87176
87176
|
});
|
|
87177
87177
|
|
|
87178
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87178
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/json-utils.mjs
|
|
87179
|
+
function sanitizeString(value) {
|
|
87180
|
+
let output = "";
|
|
87181
|
+
for (let index = 0;index < value.length; index++) {
|
|
87182
|
+
const codeUnit = value.charCodeAt(index);
|
|
87183
|
+
if (codeUnit >= 55296 && codeUnit <= 56319) {
|
|
87184
|
+
const nextCodeUnit = value.charCodeAt(index + 1);
|
|
87185
|
+
if (nextCodeUnit >= 56320 && nextCodeUnit <= 57343) {
|
|
87186
|
+
output += value[index] + value[index + 1];
|
|
87187
|
+
index++;
|
|
87188
|
+
} else
|
|
87189
|
+
output += "�";
|
|
87190
|
+
} else
|
|
87191
|
+
output += codeUnit >= 56320 && codeUnit <= 57343 ? "�" : value[index];
|
|
87192
|
+
}
|
|
87193
|
+
return output;
|
|
87194
|
+
}
|
|
87195
|
+
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;
|
|
87196
|
+
var init_json_utils = __esm(() => {
|
|
87197
|
+
dateGetTime = Date.prototype.getTime;
|
|
87198
|
+
dateToISOString = Date.prototype.toISOString;
|
|
87199
|
+
});
|
|
87200
|
+
|
|
87201
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/bot-detection.mjs
|
|
87179
87202
|
var DEFAULT_BLOCKED_UA_STRS, isBlockedUA = function(ua, customBlockedUserAgents = []) {
|
|
87180
87203
|
if (!ua)
|
|
87181
87204
|
return false;
|
|
@@ -87267,7 +87290,7 @@ var init_bot_detection = __esm(() => {
|
|
|
87267
87290
|
];
|
|
87268
87291
|
});
|
|
87269
87292
|
|
|
87270
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87293
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/string-utils.mjs
|
|
87271
87294
|
function safeJsonStringify(value) {
|
|
87272
87295
|
const ancestors = [];
|
|
87273
87296
|
return JSON.stringify(value, function(_key, replacementValue) {
|
|
@@ -87293,12 +87316,12 @@ function safeJsonStringify(value) {
|
|
|
87293
87316
|
}
|
|
87294
87317
|
var init_string_utils = () => {};
|
|
87295
87318
|
|
|
87296
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87319
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/browser-utils.mjs
|
|
87297
87320
|
var init_browser_utils = __esm(() => {
|
|
87298
87321
|
init_string_utils();
|
|
87299
87322
|
});
|
|
87300
87323
|
|
|
87301
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87324
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/type-utils.mjs
|
|
87302
87325
|
function isPrimitive(value) {
|
|
87303
87326
|
return value === null || typeof value != "object";
|
|
87304
87327
|
}
|
|
@@ -87333,7 +87356,7 @@ function isInstanceOf(candidate2, base) {
|
|
|
87333
87356
|
return false;
|
|
87334
87357
|
}
|
|
87335
87358
|
}
|
|
87336
|
-
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]";
|
|
87359
|
+
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]";
|
|
87337
87360
|
var init_type_utils = __esm(() => {
|
|
87338
87361
|
init_types7();
|
|
87339
87362
|
init_string_utils();
|
|
@@ -87346,7 +87369,7 @@ var init_type_utils = __esm(() => {
|
|
|
87346
87369
|
};
|
|
87347
87370
|
});
|
|
87348
87371
|
|
|
87349
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87372
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/number-utils.mjs
|
|
87350
87373
|
function clampToRange(value, min, max, logger6, fallbackValue) {
|
|
87351
87374
|
if (min > max) {
|
|
87352
87375
|
logger6.warn("min cannot be greater than max.");
|
|
@@ -87369,7 +87392,7 @@ var init_number_utils = __esm(() => {
|
|
|
87369
87392
|
init_type_utils();
|
|
87370
87393
|
});
|
|
87371
87394
|
|
|
87372
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87395
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.mjs
|
|
87373
87396
|
function resolveExceptionRateLimiterConfig(config3 = {}) {
|
|
87374
87397
|
return {
|
|
87375
87398
|
refillRate: config3.exceptionRateLimiterRefillRate ?? config3.__exceptionRateLimiterRefillRate ?? DEFAULT_EXCEPTION_RATE_LIMITER_REFILL_RATE,
|
|
@@ -87423,14 +87446,7 @@ var init_bucketed_rate_limiter = __esm(() => {
|
|
|
87423
87446
|
init_number_utils();
|
|
87424
87447
|
});
|
|
87425
87448
|
|
|
87426
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87427
|
-
var dateGetTime, dateToISOString;
|
|
87428
|
-
var init_json_utils = __esm(() => {
|
|
87429
|
-
dateGetTime = Date.prototype.getTime;
|
|
87430
|
-
dateToISOString = Date.prototype.toISOString;
|
|
87431
|
-
});
|
|
87432
|
-
|
|
87433
|
-
// node_modules/.bun/@posthog+core@1.48.6/node_modules/@posthog/core/dist/vendor/uuidv7.mjs
|
|
87449
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/vendor/uuidv7.mjs
|
|
87434
87450
|
class UUID {
|
|
87435
87451
|
constructor(bytes) {
|
|
87436
87452
|
this.bytes = bytes;
|
|
@@ -87605,7 +87621,7 @@ var init_uuidv7 = __esm(() => {
|
|
|
87605
87621
|
/*! For license information please see uuidv7.mjs.LICENSE.txt */
|
|
87606
87622
|
});
|
|
87607
87623
|
|
|
87608
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87624
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/promise-queue.mjs
|
|
87609
87625
|
class PromiseQueue {
|
|
87610
87626
|
add(promise2) {
|
|
87611
87627
|
const promiseUUID = uuidv72();
|
|
@@ -87647,7 +87663,7 @@ var init_promise_queue = __esm(() => {
|
|
|
87647
87663
|
init_uuidv7();
|
|
87648
87664
|
});
|
|
87649
87665
|
|
|
87650
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87666
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/logger.mjs
|
|
87651
87667
|
function createConsole(consoleLike = console) {
|
|
87652
87668
|
const lockedMethods = {
|
|
87653
87669
|
log: consoleLike.log.bind(consoleLike),
|
|
@@ -87689,7 +87705,7 @@ var _createLogger = (prefix, maybeCall, consoleLike) => {
|
|
|
87689
87705
|
}, passThrough = (fn) => fn();
|
|
87690
87706
|
var init_logger4 = () => {};
|
|
87691
87707
|
|
|
87692
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87708
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/user-agent-utils.mjs
|
|
87693
87709
|
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;
|
|
87694
87710
|
var init_user_agent_utils = __esm(() => {
|
|
87695
87711
|
init_string_utils();
|
|
@@ -87958,7 +87974,7 @@ var init_user_agent_utils = __esm(() => {
|
|
|
87958
87974
|
];
|
|
87959
87975
|
});
|
|
87960
87976
|
|
|
87961
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
87977
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/utils/index.mjs
|
|
87962
87978
|
function isValidUUID(value) {
|
|
87963
87979
|
return typeof value == "string" && UUID_REGEX.test(value);
|
|
87964
87980
|
}
|
|
@@ -88023,10 +88039,10 @@ function allSettled(promises) {
|
|
|
88023
88039
|
}
|
|
88024
88040
|
var STRING_FORMAT = "utf8", UUID_REGEX;
|
|
88025
88041
|
var init_utils = __esm(() => {
|
|
88042
|
+
init_json_utils();
|
|
88026
88043
|
init_bot_detection();
|
|
88027
88044
|
init_browser_utils();
|
|
88028
88045
|
init_bucketed_rate_limiter();
|
|
88029
|
-
init_json_utils();
|
|
88030
88046
|
init_number_utils();
|
|
88031
88047
|
init_string_utils();
|
|
88032
88048
|
init_type_utils();
|
|
@@ -88036,8 +88052,26 @@ var init_utils = __esm(() => {
|
|
|
88036
88052
|
UUID_REGEX = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
|
|
88037
88053
|
});
|
|
88038
88054
|
|
|
88039
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88040
|
-
function
|
|
88055
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/logs/logs-utils.mjs
|
|
88056
|
+
function newState() {
|
|
88057
|
+
return {
|
|
88058
|
+
ancestors: new WeakSet,
|
|
88059
|
+
remainingNodes: MAX_JSON_SAFE_VALUE_NODES
|
|
88060
|
+
};
|
|
88061
|
+
}
|
|
88062
|
+
function toOtlpKeyValueList(attrs, logger7) {
|
|
88063
|
+
try {
|
|
88064
|
+
return encodeKeyValueList(attrs, logger7, newState(), 0);
|
|
88065
|
+
} catch {
|
|
88066
|
+
return [];
|
|
88067
|
+
}
|
|
88068
|
+
}
|
|
88069
|
+
function encodeAnyValue(value, logger7, state, depth) {
|
|
88070
|
+
if (state.remainingNodes <= 0)
|
|
88071
|
+
return {
|
|
88072
|
+
stringValue: TRUNCATED_VALUE
|
|
88073
|
+
};
|
|
88074
|
+
state.remainingNodes--;
|
|
88041
88075
|
if (isBoolean(value))
|
|
88042
88076
|
return {
|
|
88043
88077
|
boolValue: value
|
|
@@ -88047,49 +88081,136 @@ function toOtlpAnyValue(value) {
|
|
|
88047
88081
|
return {
|
|
88048
88082
|
stringValue: String(value)
|
|
88049
88083
|
};
|
|
88050
|
-
if (Number.isInteger(value))
|
|
88084
|
+
if (Number.isInteger(value)) {
|
|
88085
|
+
if (Number.isSafeInteger(value))
|
|
88086
|
+
return {
|
|
88087
|
+
intValue: String(value)
|
|
88088
|
+
};
|
|
88089
|
+
if (typeof BigInt == "undefined")
|
|
88090
|
+
return {
|
|
88091
|
+
stringValue: String(value)
|
|
88092
|
+
};
|
|
88093
|
+
const decimal = BigInt(value).toString();
|
|
88094
|
+
if (value >= INT64_RANGE_LIMIT || value < -INT64_RANGE_LIMIT) {
|
|
88095
|
+
logger7?.debug(`Attribute ${decimal} is outside the int64 range; encoding it as a string`);
|
|
88096
|
+
return {
|
|
88097
|
+
stringValue: decimal
|
|
88098
|
+
};
|
|
88099
|
+
}
|
|
88051
88100
|
return {
|
|
88052
|
-
intValue:
|
|
88101
|
+
intValue: decimal
|
|
88053
88102
|
};
|
|
88103
|
+
}
|
|
88054
88104
|
return {
|
|
88055
88105
|
doubleValue: value
|
|
88056
88106
|
};
|
|
88057
88107
|
}
|
|
88058
88108
|
if (typeof value == "string")
|
|
88059
88109
|
return {
|
|
88060
|
-
stringValue: value
|
|
88061
|
-
};
|
|
88062
|
-
if (isArray(value))
|
|
88063
|
-
return {
|
|
88064
|
-
arrayValue: {
|
|
88065
|
-
values: value.map((v) => toOtlpAnyValue(v))
|
|
88066
|
-
}
|
|
88110
|
+
stringValue: sanitizeString(value)
|
|
88067
88111
|
};
|
|
88068
|
-
|
|
88112
|
+
if (typeof value == "function")
|
|
88069
88113
|
return {
|
|
88070
|
-
stringValue:
|
|
88114
|
+
stringValue: FUNCTION_VALUE
|
|
88071
88115
|
};
|
|
88072
|
-
|
|
88116
|
+
if (typeof value == "symbol")
|
|
88073
88117
|
return {
|
|
88074
88118
|
stringValue: String(value)
|
|
88075
88119
|
};
|
|
88120
|
+
if (typeof value == "object" && value !== null) {
|
|
88121
|
+
if (state.ancestors.has(value))
|
|
88122
|
+
return {
|
|
88123
|
+
stringValue: CIRCULAR_VALUE
|
|
88124
|
+
};
|
|
88125
|
+
if (depth >= MAX_JSON_SAFE_VALUE_DEPTH)
|
|
88126
|
+
return {
|
|
88127
|
+
stringValue: TRUNCATED_VALUE
|
|
88128
|
+
};
|
|
88129
|
+
if (value instanceof Date) {
|
|
88130
|
+
const time3 = value.getTime();
|
|
88131
|
+
const iso = Number.isFinite(time3) ? value.toISOString() : String(value);
|
|
88132
|
+
return {
|
|
88133
|
+
stringValue: typeof iso == "string" ? sanitizeString(iso) : String(iso)
|
|
88134
|
+
};
|
|
88135
|
+
}
|
|
88136
|
+
state.ancestors.add(value);
|
|
88137
|
+
try {
|
|
88138
|
+
try {
|
|
88139
|
+
const toJSON = value.toJSON;
|
|
88140
|
+
if (typeof toJSON == "function")
|
|
88141
|
+
return encodeAnyValue(toJSON.call(value), logger7, state, depth + 1);
|
|
88142
|
+
} catch {}
|
|
88143
|
+
if (isArray(value))
|
|
88144
|
+
return {
|
|
88145
|
+
arrayValue: {
|
|
88146
|
+
values: encodeArrayValues(value, logger7, state, depth + 1)
|
|
88147
|
+
}
|
|
88148
|
+
};
|
|
88149
|
+
return {
|
|
88150
|
+
kvlistValue: {
|
|
88151
|
+
values: encodeKeyValueList(value, logger7, state, depth + 1)
|
|
88152
|
+
}
|
|
88153
|
+
};
|
|
88154
|
+
} finally {
|
|
88155
|
+
state.ancestors.delete(value);
|
|
88156
|
+
}
|
|
88076
88157
|
}
|
|
88158
|
+
return {
|
|
88159
|
+
stringValue: sanitizeString(String(value))
|
|
88160
|
+
};
|
|
88077
88161
|
}
|
|
88078
|
-
function
|
|
88162
|
+
function encodeArrayValues(values, logger7, state, depth) {
|
|
88079
88163
|
const result = [];
|
|
88080
|
-
|
|
88081
|
-
|
|
88082
|
-
|
|
88164
|
+
const itemCount = Math.min(values.length, MAX_JSON_SAFE_VALUE_ITEMS);
|
|
88165
|
+
let index = 0;
|
|
88166
|
+
for (;index < itemCount && state.remainingNodes > 0; index++)
|
|
88167
|
+
try {
|
|
88168
|
+
const element = index in values ? values[index] : undefined;
|
|
88169
|
+
if (isNullish(element))
|
|
88170
|
+
continue;
|
|
88171
|
+
result.push(encodeAnyValue(element, logger7, state, depth));
|
|
88172
|
+
} catch {
|
|
88083
88173
|
result.push({
|
|
88084
|
-
|
|
88085
|
-
value: toOtlpAnyValue(value)
|
|
88174
|
+
stringValue: UNSERIALIZABLE_VALUE
|
|
88086
88175
|
});
|
|
88087
|
-
|
|
88176
|
+
}
|
|
88177
|
+
if (values.length > index)
|
|
88178
|
+
result.push({
|
|
88179
|
+
stringValue: TRUNCATED_VALUE
|
|
88180
|
+
});
|
|
88088
88181
|
return result;
|
|
88089
88182
|
}
|
|
88090
|
-
|
|
88183
|
+
function encodeKeyValueList(attrs, logger7, state, depth) {
|
|
88184
|
+
const result = [];
|
|
88185
|
+
for (const key in attrs)
|
|
88186
|
+
if (propertyIsEnumerable.call(attrs, key)) {
|
|
88187
|
+
if (result.length >= MAX_JSON_SAFE_VALUE_ITEMS || state.remainingNodes <= 0) {
|
|
88188
|
+
logger7?.debug("Attributes truncated: the value exceeds the OTLP encoder budget");
|
|
88189
|
+
break;
|
|
88190
|
+
}
|
|
88191
|
+
try {
|
|
88192
|
+
const value = attrs[key];
|
|
88193
|
+
if (isNull(value) || isUndefined(value))
|
|
88194
|
+
continue;
|
|
88195
|
+
result.push({
|
|
88196
|
+
key: sanitizeString(key),
|
|
88197
|
+
value: encodeAnyValue(value, logger7, state, depth)
|
|
88198
|
+
});
|
|
88199
|
+
} catch {
|
|
88200
|
+
result.push({
|
|
88201
|
+
key: sanitizeString(key),
|
|
88202
|
+
value: {
|
|
88203
|
+
stringValue: UNSERIALIZABLE_VALUE
|
|
88204
|
+
}
|
|
88205
|
+
});
|
|
88206
|
+
}
|
|
88207
|
+
}
|
|
88208
|
+
return result;
|
|
88209
|
+
}
|
|
88210
|
+
var OTLP_SEVERITY_MAP, DEFAULT_OTLP_SEVERITY, INT64_RANGE_LIMIT = 9223372036854776000, propertyIsEnumerable;
|
|
88091
88211
|
var init_logs_utils = __esm(() => {
|
|
88092
88212
|
init_utils();
|
|
88213
|
+
init_json_utils();
|
|
88093
88214
|
OTLP_SEVERITY_MAP = {
|
|
88094
88215
|
trace: {
|
|
88095
88216
|
text: "TRACE",
|
|
@@ -88117,16 +88238,17 @@ var init_logs_utils = __esm(() => {
|
|
|
88117
88238
|
}
|
|
88118
88239
|
};
|
|
88119
88240
|
DEFAULT_OTLP_SEVERITY = OTLP_SEVERITY_MAP.info;
|
|
88241
|
+
propertyIsEnumerable = Object.prototype.propertyIsEnumerable;
|
|
88120
88242
|
});
|
|
88121
88243
|
|
|
88122
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88244
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/logs/index.mjs
|
|
88123
88245
|
var init_logs = __esm(() => {
|
|
88124
88246
|
init_logs_utils();
|
|
88125
88247
|
init_types7();
|
|
88126
88248
|
init_utils();
|
|
88127
88249
|
});
|
|
88128
88250
|
|
|
88129
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88251
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/metrics/metrics-utils.mjs
|
|
88130
88252
|
function msToUnixNano(ms) {
|
|
88131
88253
|
return String(ms) + "000000";
|
|
88132
88254
|
}
|
|
@@ -88200,7 +88322,7 @@ var init_metrics_utils = __esm(() => {
|
|
|
88200
88322
|
];
|
|
88201
88323
|
});
|
|
88202
88324
|
|
|
88203
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88325
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/metrics/config.mjs
|
|
88204
88326
|
function resolveMetricsConfig(config3) {
|
|
88205
88327
|
const resourceAttributes = config3?.resourceAttributes;
|
|
88206
88328
|
return {
|
|
@@ -88216,7 +88338,7 @@ function resolveMetricsConfig(config3) {
|
|
|
88216
88338
|
var DEFAULT_FLUSH_INTERVAL_MS = 1e4, DEFAULT_MAX_SERIES_PER_FLUSH = 1000;
|
|
88217
88339
|
var init_config2 = () => {};
|
|
88218
88340
|
|
|
88219
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88341
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/metrics/index.mjs
|
|
88220
88342
|
class PostHogMetrics {
|
|
88221
88343
|
constructor(_instance, _config, _logger) {
|
|
88222
88344
|
this._instance = _instance;
|
|
@@ -88469,7 +88591,7 @@ class PostHogMetrics {
|
|
|
88469
88591
|
};
|
|
88470
88592
|
byMetric.set(metricKey, metric);
|
|
88471
88593
|
}
|
|
88472
|
-
const attributes = toOtlpKeyValueList(state.attributes ?? {});
|
|
88594
|
+
const attributes = toOtlpKeyValueList(state.attributes ?? {}, this._logger);
|
|
88473
88595
|
const startNano = msToUnixNano(state.windowStartMs);
|
|
88474
88596
|
if (state.type === "count") {
|
|
88475
88597
|
const dp = {
|
|
@@ -88542,18 +88664,18 @@ var init_metrics = __esm(() => {
|
|
|
88542
88664
|
init_config2();
|
|
88543
88665
|
});
|
|
88544
88666
|
|
|
88545
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88667
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/surveys/validation.mjs
|
|
88546
88668
|
var init_validation = __esm(() => {
|
|
88547
88669
|
init_types7();
|
|
88548
88670
|
});
|
|
88549
88671
|
|
|
88550
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88672
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/cookie.mjs
|
|
88551
88673
|
var init_cookie = __esm(() => {
|
|
88552
88674
|
init_utils();
|
|
88553
88675
|
init_uuidv7();
|
|
88554
88676
|
});
|
|
88555
88677
|
|
|
88556
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88678
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/eventemitter.mjs
|
|
88557
88679
|
class SimpleEventEmitter {
|
|
88558
88680
|
constructor() {
|
|
88559
88681
|
this.events = {};
|
|
@@ -88576,7 +88698,7 @@ class SimpleEventEmitter {
|
|
|
88576
88698
|
}
|
|
88577
88699
|
var init_eventemitter = () => {};
|
|
88578
88700
|
|
|
88579
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88701
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/chunk-ids.mjs
|
|
88580
88702
|
function getFilenameToChunkIdMap(stackParser) {
|
|
88581
88703
|
const chunkIdMap = globalThis._posthogChunkIds;
|
|
88582
88704
|
if (!chunkIdMap)
|
|
@@ -88614,7 +88736,7 @@ function getFilenameToChunkIdMap(stackParser) {
|
|
|
88614
88736
|
var parsedStackResults, lastKeysCount, cachedFilenameChunkIds;
|
|
88615
88737
|
var init_chunk_ids = () => {};
|
|
88616
88738
|
|
|
88617
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88739
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/error-properties-builder.mjs
|
|
88618
88740
|
class ErrorPropertiesBuilder {
|
|
88619
88741
|
constructor(coercers, stackParser, modifiers = []) {
|
|
88620
88742
|
this.coercers = coercers;
|
|
@@ -88740,7 +88862,7 @@ var init_error_properties_builder = __esm(() => {
|
|
|
88740
88862
|
init_chunk_ids();
|
|
88741
88863
|
});
|
|
88742
88864
|
|
|
88743
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88865
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/base.mjs
|
|
88744
88866
|
function createFrame(platform, filename, func, lineno, colno) {
|
|
88745
88867
|
const frame = {
|
|
88746
88868
|
platform,
|
|
@@ -88759,7 +88881,7 @@ var init_base = __esm(() => {
|
|
|
88759
88881
|
init_utils();
|
|
88760
88882
|
});
|
|
88761
88883
|
|
|
88762
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88884
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/safari.mjs
|
|
88763
88885
|
var extractSafariExtensionDetails = (func, filename) => {
|
|
88764
88886
|
const isSafariExtension = func.indexOf("safari-extension") !== -1;
|
|
88765
88887
|
const isSafariWebExtension = func.indexOf("safari-web-extension") !== -1;
|
|
@@ -88775,7 +88897,7 @@ var init_safari = __esm(() => {
|
|
|
88775
88897
|
init_base();
|
|
88776
88898
|
});
|
|
88777
88899
|
|
|
88778
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88900
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/chrome.mjs
|
|
88779
88901
|
var chromeRegexNoFnName, chromeRegex, chromeEvalRegex, chromeStackLineParser = (line, platform) => {
|
|
88780
88902
|
const noFnParts = chromeRegexNoFnName.exec(line);
|
|
88781
88903
|
if (noFnParts) {
|
|
@@ -88805,7 +88927,7 @@ var init_chrome = __esm(() => {
|
|
|
88805
88927
|
chromeEvalRegex = /\((\S*)(?::(\d+))(?::(\d+))\)/;
|
|
88806
88928
|
});
|
|
88807
88929
|
|
|
88808
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88930
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/gecko.mjs
|
|
88809
88931
|
var geckoREgex, geckoEvalRegex, geckoStackLineParser = (line, platform) => {
|
|
88810
88932
|
const parts = geckoREgex.exec(line);
|
|
88811
88933
|
if (parts) {
|
|
@@ -88832,7 +88954,7 @@ var init_gecko = __esm(() => {
|
|
|
88832
88954
|
geckoEvalRegex = /(\S+) line (\d+)(?: > eval line \d+)* > eval/i;
|
|
88833
88955
|
});
|
|
88834
88956
|
|
|
88835
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88957
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/winjs.mjs
|
|
88836
88958
|
var winjsRegex, winjsStackLineParser = (line, platform) => {
|
|
88837
88959
|
const parts = winjsRegex.exec(line);
|
|
88838
88960
|
return parts ? createFrame(platform, parts[2], parts[1] || UNKNOWN_FUNCTION, +parts[3], parts[4] ? +parts[4] : undefined) : undefined;
|
|
@@ -88842,7 +88964,7 @@ var init_winjs = __esm(() => {
|
|
|
88842
88964
|
winjsRegex = /^\s*at (?:((?:\[object object\])?.+) )?\(?((?:[-a-z]+):.*?):(\d+)(?::(\d+))?\)?\s*$/i;
|
|
88843
88965
|
});
|
|
88844
88966
|
|
|
88845
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88967
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/opera.mjs
|
|
88846
88968
|
var opera10Regex, opera10StackLineParser = (line, platform) => {
|
|
88847
88969
|
const parts = opera10Regex.exec(line);
|
|
88848
88970
|
return parts ? createFrame(platform, parts[2], parts[3] || UNKNOWN_FUNCTION, +parts[1]) : undefined;
|
|
@@ -88856,7 +88978,7 @@ var init_opera = __esm(() => {
|
|
|
88856
88978
|
opera11Regex = / line (\d+), column (\d+)\s*(?:in (?:<anonymous function: ([^>]+)>|([^)]+))\(.*\))? in (.*):\s*$/i;
|
|
88857
88979
|
});
|
|
88858
88980
|
|
|
88859
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
88981
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/node.mjs
|
|
88860
88982
|
function filenameIsInApp(filename, isNative = false) {
|
|
88861
88983
|
const isInternal = isNative || filename && !filename.startsWith("/") && !filename.match(/^[A-Z]:/) && !filename.startsWith(".") && !filename.match(/^[a-zA-Z]([a-zA-Z0-9.\-+])*:\/\//);
|
|
88862
88984
|
return !isInternal && filename !== undefined && !filename.includes("node_modules/");
|
|
@@ -88932,7 +89054,7 @@ var init_node = __esm(() => {
|
|
|
88932
89054
|
PROMISE_INDEX = /^index \d+$/;
|
|
88933
89055
|
});
|
|
88934
89056
|
|
|
88935
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89057
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/parsers/index.mjs
|
|
88936
89058
|
function reverseAndStripFrames(stack) {
|
|
88937
89059
|
if (!stack.length)
|
|
88938
89060
|
return [];
|
|
@@ -88986,7 +89108,7 @@ var init_parsers = __esm(() => {
|
|
|
88986
89108
|
WEBPACK_ERROR_REGEXP = /\(error: (.*)\)/;
|
|
88987
89109
|
});
|
|
88988
89110
|
|
|
88989
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89111
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/dom-exception-coercer.mjs
|
|
88990
89112
|
class DOMExceptionCoercer {
|
|
88991
89113
|
match(err) {
|
|
88992
89114
|
return this.isDOMException(err) || this.isDOMError(err);
|
|
@@ -89020,7 +89142,7 @@ var init_dom_exception_coercer = __esm(() => {
|
|
|
89020
89142
|
init_utils();
|
|
89021
89143
|
});
|
|
89022
89144
|
|
|
89023
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89145
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/error-coercer.mjs
|
|
89024
89146
|
class ErrorCoercer {
|
|
89025
89147
|
match(err) {
|
|
89026
89148
|
return isError(err);
|
|
@@ -89053,7 +89175,7 @@ var init_error_coercer = __esm(() => {
|
|
|
89053
89175
|
init_type_utils();
|
|
89054
89176
|
});
|
|
89055
89177
|
|
|
89056
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89178
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/error-event-coercer.mjs
|
|
89057
89179
|
class ErrorEventCoercer {
|
|
89058
89180
|
constructor() {}
|
|
89059
89181
|
match(err) {
|
|
@@ -89091,7 +89213,7 @@ var init_error_event_coercer = __esm(() => {
|
|
|
89091
89213
|
init_utils();
|
|
89092
89214
|
});
|
|
89093
89215
|
|
|
89094
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89216
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/string-coercer.mjs
|
|
89095
89217
|
class StringCoercer {
|
|
89096
89218
|
match(input) {
|
|
89097
89219
|
return typeof input == "string";
|
|
@@ -89124,7 +89246,7 @@ var init_string_coercer = __esm(() => {
|
|
|
89124
89246
|
ERROR_TYPES_PATTERN = /^(?:[Uu]ncaught (?:exception: )?)?(?:((?:Eval|Internal|Range|Reference|Syntax|Type|URI|)Error): )?(.*)$/i;
|
|
89125
89247
|
});
|
|
89126
89248
|
|
|
89127
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89249
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/types.mjs
|
|
89128
89250
|
var severityLevels;
|
|
89129
89251
|
var init_types8 = __esm(() => {
|
|
89130
89252
|
severityLevels = [
|
|
@@ -89137,7 +89259,7 @@ var init_types8 = __esm(() => {
|
|
|
89137
89259
|
];
|
|
89138
89260
|
});
|
|
89139
89261
|
|
|
89140
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89262
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/utils.mjs
|
|
89141
89263
|
function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
89142
89264
|
const keys = Object.keys(err);
|
|
89143
89265
|
keys.sort();
|
|
@@ -89155,7 +89277,7 @@ function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
|
89155
89277
|
}
|
|
89156
89278
|
var init_utils2 = () => {};
|
|
89157
89279
|
|
|
89158
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89280
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/object-coercer.mjs
|
|
89159
89281
|
class ObjectCoercer {
|
|
89160
89282
|
match(candidate2) {
|
|
89161
89283
|
return typeof candidate2 == "object" && candidate2 !== null;
|
|
@@ -89226,7 +89348,7 @@ var init_object_coercer = __esm(() => {
|
|
|
89226
89348
|
init_utils2();
|
|
89227
89349
|
});
|
|
89228
89350
|
|
|
89229
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89351
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/event-coercer.mjs
|
|
89230
89352
|
class EventCoercer {
|
|
89231
89353
|
match(err) {
|
|
89232
89354
|
return isEvent(err);
|
|
@@ -89246,7 +89368,7 @@ var init_event_coercer = __esm(() => {
|
|
|
89246
89368
|
init_utils2();
|
|
89247
89369
|
});
|
|
89248
89370
|
|
|
89249
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89371
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/primitive-coercer.mjs
|
|
89250
89372
|
class PrimitiveCoercer {
|
|
89251
89373
|
match(candidate2) {
|
|
89252
89374
|
return isPrimitive(candidate2);
|
|
@@ -89264,7 +89386,7 @@ var init_primitive_coercer = __esm(() => {
|
|
|
89264
89386
|
init_utils();
|
|
89265
89387
|
});
|
|
89266
89388
|
|
|
89267
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89389
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/promise-rejection-event.mjs
|
|
89268
89390
|
class PromiseRejectionEventCoercer {
|
|
89269
89391
|
match(err) {
|
|
89270
89392
|
return isBuiltin(err, "PromiseRejectionEvent") || this.isCustomEventWrappingRejection(err);
|
|
@@ -89304,7 +89426,7 @@ var init_promise_rejection_event = __esm(() => {
|
|
|
89304
89426
|
init_utils();
|
|
89305
89427
|
});
|
|
89306
89428
|
|
|
89307
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89429
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/coercers/index.mjs
|
|
89308
89430
|
var init_coercers = __esm(() => {
|
|
89309
89431
|
init_dom_exception_coercer();
|
|
89310
89432
|
init_error_coercer();
|
|
@@ -89316,7 +89438,7 @@ var init_coercers = __esm(() => {
|
|
|
89316
89438
|
init_promise_rejection_event();
|
|
89317
89439
|
});
|
|
89318
89440
|
|
|
89319
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89441
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/utils.mjs
|
|
89320
89442
|
class ReduceableCache {
|
|
89321
89443
|
constructor(_maxSize2) {
|
|
89322
89444
|
this._maxSize = _maxSize2;
|
|
@@ -89343,7 +89465,7 @@ class ReduceableCache {
|
|
|
89343
89465
|
}
|
|
89344
89466
|
var init_utils3 = () => {};
|
|
89345
89467
|
|
|
89346
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89468
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/exception-steps.mjs
|
|
89347
89469
|
function resolveExceptionStepsConfig(config3) {
|
|
89348
89470
|
if (!config3)
|
|
89349
89471
|
return {
|
|
@@ -89481,14 +89603,14 @@ var init_exception_steps = __esm(() => {
|
|
|
89481
89603
|
};
|
|
89482
89604
|
});
|
|
89483
89605
|
|
|
89484
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89606
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/release.mjs
|
|
89485
89607
|
function getInjectedReleaseId() {
|
|
89486
89608
|
const injected = globalThis._posthogReleaseId;
|
|
89487
89609
|
return typeof injected == "string" && injected.length > 0 ? injected : undefined;
|
|
89488
89610
|
}
|
|
89489
89611
|
var init_release = () => {};
|
|
89490
89612
|
|
|
89491
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89613
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/error-tracking/index.mjs
|
|
89492
89614
|
var exports_error_tracking = {};
|
|
89493
89615
|
__export(exports_error_tracking, {
|
|
89494
89616
|
DEFAULT_EXCEPTION_STEPS_CONFIG: () => DEFAULT_EXCEPTION_STEPS_CONFIG,
|
|
@@ -89527,7 +89649,7 @@ var init_error_tracking = __esm(() => {
|
|
|
89527
89649
|
init_release();
|
|
89528
89650
|
});
|
|
89529
89651
|
|
|
89530
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
89652
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/posthog-core-stateless.mjs
|
|
89531
89653
|
async function logFlushError(err) {
|
|
89532
89654
|
if (err instanceof PostHogFetchHttpError) {
|
|
89533
89655
|
let text = "";
|
|
@@ -90428,10 +90550,12 @@ class PostHogCoreStateless {
|
|
|
90428
90550
|
const body = options.body ? options.body : "";
|
|
90429
90551
|
let reqByteLength = -1;
|
|
90430
90552
|
try {
|
|
90431
|
-
reqByteLength = body instanceof Blob ? body.size : Buffer.byteLength(body, STRING_FORMAT);
|
|
90553
|
+
reqByteLength = body instanceof Blob ? body.size : body instanceof Uint8Array ? body.byteLength : Buffer.byteLength(body, STRING_FORMAT);
|
|
90432
90554
|
} catch {
|
|
90433
90555
|
if (body instanceof Blob)
|
|
90434
90556
|
reqByteLength = body.size;
|
|
90557
|
+
else if (body instanceof Uint8Array)
|
|
90558
|
+
reqByteLength = body.byteLength;
|
|
90435
90559
|
else {
|
|
90436
90560
|
const encoded = new TextEncoder().encode(body);
|
|
90437
90561
|
reqByteLength = encoded.length;
|
|
@@ -90646,7 +90770,7 @@ var init_posthog_core_stateless = __esm(() => {
|
|
|
90646
90770
|
};
|
|
90647
90771
|
});
|
|
90648
90772
|
|
|
90649
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
90773
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/posthog-core.mjs
|
|
90650
90774
|
var init_posthog_core = __esm(() => {
|
|
90651
90775
|
init_featureFlagUtils();
|
|
90652
90776
|
init_types7();
|
|
@@ -90655,12 +90779,12 @@ var init_posthog_core = __esm(() => {
|
|
|
90655
90779
|
init_utils();
|
|
90656
90780
|
});
|
|
90657
90781
|
|
|
90658
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
90782
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/tracing-headers.mjs
|
|
90659
90783
|
var init_tracing_headers = __esm(() => {
|
|
90660
90784
|
init_type_utils();
|
|
90661
90785
|
});
|
|
90662
90786
|
|
|
90663
|
-
// node_modules/.bun/@posthog+core@1.48.
|
|
90787
|
+
// node_modules/.bun/@posthog+core@1.48.9/node_modules/@posthog/core/dist/index.mjs
|
|
90664
90788
|
var init_dist2 = __esm(() => {
|
|
90665
90789
|
init_featureFlagUtils();
|
|
90666
90790
|
init_gzip();
|
|
@@ -90678,7 +90802,7 @@ var init_dist2 = __esm(() => {
|
|
|
90678
90802
|
init_types7();
|
|
90679
90803
|
});
|
|
90680
90804
|
|
|
90681
|
-
// node_modules/.bun/posthog-node@5.
|
|
90805
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/context-lines.node.mjs
|
|
90682
90806
|
import { constants as constants6 } from "node:fs";
|
|
90683
90807
|
import { open as promises_open } from "node:fs/promises";
|
|
90684
90808
|
import { isAbsolute as isAbsolute7 } from "node:path";
|
|
@@ -90965,7 +91089,7 @@ var init_context_lines_node = __esm(() => {
|
|
|
90965
91089
|
LRU_FILE_CONTENTS_FS_READ_FAILED = new exports_error_tracking.ReduceableCache(20);
|
|
90966
91090
|
});
|
|
90967
91091
|
|
|
90968
|
-
// node_modules/.bun/posthog-node@5.
|
|
91092
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/relative-path.node.mjs
|
|
90969
91093
|
import { isAbsolute as isAbsolute8, relative as relative4, sep as sep8 } from "path";
|
|
90970
91094
|
function createRelativePathModifier(basePath = process.cwd()) {
|
|
90971
91095
|
const isWindows = sep8 === "\\";
|
|
@@ -90982,11 +91106,11 @@ function createRelativePathModifier(basePath = process.cwd()) {
|
|
|
90982
91106
|
}
|
|
90983
91107
|
var init_relative_path_node = () => {};
|
|
90984
91108
|
|
|
90985
|
-
// node_modules/.bun/posthog-node@5.
|
|
90986
|
-
var version2 = "5.
|
|
91109
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/version.mjs
|
|
91110
|
+
var version2 = "5.51.1";
|
|
90987
91111
|
var init_version = () => {};
|
|
90988
91112
|
|
|
90989
|
-
// node_modules/.bun/posthog-node@5.
|
|
91113
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/types.mjs
|
|
90990
91114
|
var FeatureFlagError2;
|
|
90991
91115
|
var init_types9 = __esm(() => {
|
|
90992
91116
|
FeatureFlagError2 = {
|
|
@@ -90997,7 +91121,7 @@ var init_types9 = __esm(() => {
|
|
|
90997
91121
|
};
|
|
90998
91122
|
});
|
|
90999
91123
|
|
|
91000
|
-
// node_modules/.bun/posthog-node@5.
|
|
91124
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/feature-flag-evaluations.mjs
|
|
91001
91125
|
class FeatureFlagEvaluations {
|
|
91002
91126
|
constructor(init) {
|
|
91003
91127
|
this._host = init.host;
|
|
@@ -91013,10 +91137,10 @@ class FeatureFlagEvaluations {
|
|
|
91013
91137
|
this._accessed = init.accessed ?? new Set;
|
|
91014
91138
|
this._isSlice = init.isSlice ?? false;
|
|
91015
91139
|
}
|
|
91016
|
-
isEnabled(key) {
|
|
91140
|
+
isEnabled(key, options = {}) {
|
|
91017
91141
|
const flag = this._flags[key];
|
|
91018
91142
|
this._recordAccess(key);
|
|
91019
|
-
return flag?.enabled ?? false;
|
|
91143
|
+
return flag?.enabled ?? options.defaultValue ?? false;
|
|
91020
91144
|
}
|
|
91021
91145
|
getFlag(key) {
|
|
91022
91146
|
const flag = this._flags[key];
|
|
@@ -91133,7 +91257,7 @@ var init_feature_flag_evaluations = __esm(() => {
|
|
|
91133
91257
|
init_types9();
|
|
91134
91258
|
});
|
|
91135
91259
|
|
|
91136
|
-
// node_modules/.bun/posthog-node@5.
|
|
91260
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/feature-flags/crypto.mjs
|
|
91137
91261
|
async function hashSHA1(text) {
|
|
91138
91262
|
const subtle = globalThis.crypto?.subtle;
|
|
91139
91263
|
if (!subtle)
|
|
@@ -91144,7 +91268,7 @@ async function hashSHA1(text) {
|
|
|
91144
91268
|
}
|
|
91145
91269
|
var init_crypto = () => {};
|
|
91146
91270
|
|
|
91147
|
-
// node_modules/.bun/posthog-node@5.
|
|
91271
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/feature-flags/feature-flags.mjs
|
|
91148
91272
|
function setCustomErrorPrototype(error51, constructor) {
|
|
91149
91273
|
error51.name = constructor.name;
|
|
91150
91274
|
Error.captureStackTrace(error51, constructor);
|
|
@@ -92096,7 +92220,7 @@ var init_feature_flags = __esm(() => {
|
|
|
92096
92220
|
};
|
|
92097
92221
|
});
|
|
92098
92222
|
|
|
92099
|
-
// node_modules/.bun/posthog-node@5.
|
|
92223
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/error-tracking/autocapture.mjs
|
|
92100
92224
|
function splitNodeOptions(nodeOptions) {
|
|
92101
92225
|
const args = [];
|
|
92102
92226
|
let current = "";
|
|
@@ -92197,7 +92321,7 @@ var init_autocapture = __esm(() => {
|
|
|
92197
92321
|
STARTUP_UNHANDLED_REJECTION_MODE = getUnhandledRejectionMode();
|
|
92198
92322
|
});
|
|
92199
92323
|
|
|
92200
|
-
// node_modules/.bun/posthog-node@5.
|
|
92324
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/error-tracking/index.mjs
|
|
92201
92325
|
class error_tracking_ErrorTracking {
|
|
92202
92326
|
constructor(client3, options, _logger) {
|
|
92203
92327
|
this.client = client3;
|
|
@@ -92271,7 +92395,7 @@ var init_error_tracking2 = __esm(() => {
|
|
|
92271
92395
|
init_dist2();
|
|
92272
92396
|
});
|
|
92273
92397
|
|
|
92274
|
-
// node_modules/.bun/posthog-node@5.
|
|
92398
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/storage-memory.mjs
|
|
92275
92399
|
class PostHogMemoryStorage {
|
|
92276
92400
|
getProperty(key) {
|
|
92277
92401
|
return this._memoryStorage[key];
|
|
@@ -92285,7 +92409,7 @@ class PostHogMemoryStorage {
|
|
|
92285
92409
|
}
|
|
92286
92410
|
var init_storage_memory = () => {};
|
|
92287
92411
|
|
|
92288
|
-
// node_modules/.bun/posthog-node@5.
|
|
92412
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/capture-v1/config.mjs
|
|
92289
92413
|
function isCaptureMode(value) {
|
|
92290
92414
|
return value === "v0" || value === "v1";
|
|
92291
92415
|
}
|
|
@@ -92295,14 +92419,14 @@ function resolveCaptureMode() {
|
|
|
92295
92419
|
}
|
|
92296
92420
|
var init_config3 = () => {};
|
|
92297
92421
|
|
|
92298
|
-
// node_modules/.bun/posthog-node@5.
|
|
92422
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/capture-v1/routing.mjs
|
|
92299
92423
|
function isLegacyOnlyEvent(message) {
|
|
92300
92424
|
return typeof message.event == "string" && message.event.startsWith(AI_EVENT_PREFIX);
|
|
92301
92425
|
}
|
|
92302
92426
|
var AI_EVENT_PREFIX = "$ai_", ANALYTICS_ROUTE = "analytics", AI_ROUTE = "ai";
|
|
92303
92427
|
var init_routing = () => {};
|
|
92304
92428
|
|
|
92305
|
-
// node_modules/.bun/posthog-node@5.
|
|
92429
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/capture-v1/errors.mjs
|
|
92306
92430
|
var CaptureV1Error;
|
|
92307
92431
|
var init_errors3 = __esm(() => {
|
|
92308
92432
|
CaptureV1Error = class CaptureV1Error extends Error {
|
|
@@ -92322,7 +92446,7 @@ var init_errors3 = __esm(() => {
|
|
|
92322
92446
|
};
|
|
92323
92447
|
});
|
|
92324
92448
|
|
|
92325
|
-
// node_modules/.bun/posthog-node@5.
|
|
92449
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/capture-v1/transform.mjs
|
|
92326
92450
|
function coerceBool(value) {
|
|
92327
92451
|
if (typeof value == "boolean")
|
|
92328
92452
|
return value;
|
|
@@ -92440,7 +92564,7 @@ var init_transform = __esm(() => {
|
|
|
92440
92564
|
];
|
|
92441
92565
|
});
|
|
92442
92566
|
|
|
92443
|
-
// node_modules/.bun/posthog-node@5.
|
|
92567
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/capture-v1/sender.mjs
|
|
92444
92568
|
class V1CaptureSender {
|
|
92445
92569
|
constructor(config3, hooks) {
|
|
92446
92570
|
this.config = config3;
|
|
@@ -92696,11 +92820,11 @@ var init_sender = __esm(() => {
|
|
|
92696
92820
|
]);
|
|
92697
92821
|
});
|
|
92698
92822
|
|
|
92699
|
-
// node_modules/.bun/posthog-node@5.
|
|
92823
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/ai-capture/routing.mjs
|
|
92700
92824
|
var AI_CAPTURE_ROUTE = "ai-capture", AI_CAPTURE_ENDPOINT_PATH = "/i/v0/ai/batch/", AI_MAX_EVENT_BYTES = 8388608, AI_BATCH_TARGET_BYTES = 5242880;
|
|
92701
92825
|
var init_routing2 = () => {};
|
|
92702
92826
|
|
|
92703
|
-
// node_modules/.bun/posthog-node@5.
|
|
92827
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/ai-capture/batching.mjs
|
|
92704
92828
|
function eventByteSize(message) {
|
|
92705
92829
|
return encoder.encode(safeJsonStringify(message)).length;
|
|
92706
92830
|
}
|
|
@@ -92742,7 +92866,7 @@ var init_batching = __esm(() => {
|
|
|
92742
92866
|
encoder = new TextEncoder;
|
|
92743
92867
|
});
|
|
92744
92868
|
|
|
92745
|
-
// node_modules/.bun/posthog-node@5.
|
|
92869
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/client.mjs
|
|
92746
92870
|
function emitDeprecationWarningOnce(id, message) {
|
|
92747
92871
|
if (_emittedDeprecations.has(id))
|
|
92748
92872
|
return;
|
|
@@ -93299,7 +93423,7 @@ var init_client3 = __esm(() => {
|
|
|
93299
93423
|
result = {
|
|
93300
93424
|
key,
|
|
93301
93425
|
enabled: flagDetail.enabled,
|
|
93302
|
-
variant: flagDetail.variant,
|
|
93426
|
+
variant: flagDetail.variant ?? undefined,
|
|
93303
93427
|
payload: parsedPayload
|
|
93304
93428
|
};
|
|
93305
93429
|
}
|
|
@@ -93500,6 +93624,7 @@ var init_client3 = __esm(() => {
|
|
|
93500
93624
|
const evaluationContext = this.createFeatureFlagEvaluationContext(resolvedDistinctId, groups, this.personPropertiesForLocalEvaluation(resolvedDistinctId, personProperties), groupProperties);
|
|
93501
93625
|
if (onlyEvaluateLocally == undefined)
|
|
93502
93626
|
onlyEvaluateLocally = this.options.strictLocalEvaluation ?? false;
|
|
93627
|
+
const requestedFlagKeys = flagKeys ? new Set(flagKeys) : undefined;
|
|
93503
93628
|
const records = {};
|
|
93504
93629
|
let requestId;
|
|
93505
93630
|
let evaluatedAt;
|
|
@@ -93523,7 +93648,8 @@ var init_client3 = __esm(() => {
|
|
|
93523
93648
|
};
|
|
93524
93649
|
locallyEvaluatedKeys.add(key);
|
|
93525
93650
|
}
|
|
93526
|
-
const
|
|
93651
|
+
const requestedFlagMissingLocally = requestedFlagKeys !== undefined && Array.from(requestedFlagKeys).some((key) => this.featureFlagsPoller?.featureFlagsByKey[key] === undefined);
|
|
93652
|
+
const fallbackToFlags = localResult ? localResult.fallbackToFlags || requestedFlagMissingLocally : true;
|
|
93527
93653
|
if (fallbackToFlags && !onlyEvaluateLocally) {
|
|
93528
93654
|
const details = await super.getFeatureFlagDetailsStateless(evaluationContext.distinctId, evaluationContext.groups, personProperties, groupProperties, disableGeoip, flagKeys);
|
|
93529
93655
|
if (details) {
|
|
@@ -93584,6 +93710,11 @@ var init_client3 = __esm(() => {
|
|
|
93584
93710
|
payload
|
|
93585
93711
|
};
|
|
93586
93712
|
}
|
|
93713
|
+
if (requestedFlagKeys !== undefined) {
|
|
93714
|
+
for (const key of Object.keys(records))
|
|
93715
|
+
if (!requestedFlagKeys.has(key))
|
|
93716
|
+
delete records[key];
|
|
93717
|
+
}
|
|
93587
93718
|
return new FeatureFlagEvaluations({
|
|
93588
93719
|
host: this._getFeatureFlagEvaluationsHost(),
|
|
93589
93720
|
distinctId: resolvedDistinctId,
|
|
@@ -93992,7 +94123,7 @@ var init_client3 = __esm(() => {
|
|
|
93992
94123
|
};
|
|
93993
94124
|
});
|
|
93994
94125
|
|
|
93995
|
-
// node_modules/.bun/posthog-node@5.
|
|
94126
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/context/context.mjs
|
|
93996
94127
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
93997
94128
|
|
|
93998
94129
|
class PostHogContext {
|
|
@@ -94024,15 +94155,13 @@ class PostHogContext {
|
|
|
94024
94155
|
}
|
|
94025
94156
|
var init_context = () => {};
|
|
94026
94157
|
|
|
94027
|
-
// node_modules/.bun/posthog-node@5.
|
|
94158
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/gzip.node.mjs
|
|
94028
94159
|
import { gzip } from "node:zlib";
|
|
94029
94160
|
import { promisify as promisify2 } from "node:util";
|
|
94030
94161
|
async function gzipCompress2(input, isDebug = true) {
|
|
94031
94162
|
try {
|
|
94032
94163
|
const compressed = await gzipAsync(input);
|
|
94033
|
-
return new
|
|
94034
|
-
new Uint8Array(compressed)
|
|
94035
|
-
]);
|
|
94164
|
+
return new Uint8Array(compressed);
|
|
94036
94165
|
} catch (error51) {
|
|
94037
94166
|
if (isDebug)
|
|
94038
94167
|
console.error("Failed to gzip compress data", error51);
|
|
@@ -94044,7 +94173,7 @@ var init_gzip_node = __esm(() => {
|
|
|
94044
94173
|
gzipAsync = promisify2(gzip);
|
|
94045
94174
|
});
|
|
94046
94175
|
|
|
94047
|
-
// node_modules/.bun/posthog-node@5.
|
|
94176
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/sentry-integration.mjs
|
|
94048
94177
|
function createEventProcessor(_posthog, { organization, projectId, prefix, severityAllowList = [
|
|
94049
94178
|
"error"
|
|
94050
94179
|
], sendExceptionsToPostHog = true } = {}) {
|
|
@@ -94119,22 +94248,22 @@ var init_sentry_integration = __esm(() => {
|
|
|
94119
94248
|
};
|
|
94120
94249
|
});
|
|
94121
94250
|
|
|
94122
|
-
// node_modules/.bun/posthog-node@5.
|
|
94251
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/tracing-headers.mjs
|
|
94123
94252
|
var init_tracing_headers2 = () => {};
|
|
94124
94253
|
|
|
94125
|
-
// node_modules/.bun/posthog-node@5.
|
|
94254
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/url-utils.mjs
|
|
94126
94255
|
var init_url_utils = __esm(() => {
|
|
94127
94256
|
init_dist2();
|
|
94128
94257
|
});
|
|
94129
94258
|
|
|
94130
|
-
// node_modules/.bun/posthog-node@5.
|
|
94259
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/extensions/express.mjs
|
|
94131
94260
|
var init_express = __esm(() => {
|
|
94132
94261
|
init_error_tracking2();
|
|
94133
94262
|
init_tracing_headers2();
|
|
94134
94263
|
init_url_utils();
|
|
94135
94264
|
});
|
|
94136
94265
|
|
|
94137
|
-
// node_modules/.bun/posthog-node@5.
|
|
94266
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/exports.mjs
|
|
94138
94267
|
var init_exports = __esm(() => {
|
|
94139
94268
|
init_feature_flag_evaluations();
|
|
94140
94269
|
init_dist2();
|
|
@@ -94143,7 +94272,7 @@ var init_exports = __esm(() => {
|
|
|
94143
94272
|
init_types9();
|
|
94144
94273
|
});
|
|
94145
94274
|
|
|
94146
|
-
// node_modules/.bun/posthog-node@5.
|
|
94275
|
+
// node_modules/.bun/posthog-node@5.51.1/node_modules/posthog-node/dist/entrypoints/index.node.mjs
|
|
94147
94276
|
var PostHog;
|
|
94148
94277
|
var init_index_node = __esm(() => {
|
|
94149
94278
|
init_module_node();
|
|
@@ -94386,7 +94515,7 @@ var package_default2;
|
|
|
94386
94515
|
var init_package2 = __esm(() => {
|
|
94387
94516
|
package_default2 = {
|
|
94388
94517
|
name: "@oh-my-opencode/omo-codex",
|
|
94389
|
-
version: "5.0.0-beta.
|
|
94518
|
+
version: "5.0.0-beta.19",
|
|
94390
94519
|
type: "module",
|
|
94391
94520
|
private: true,
|
|
94392
94521
|
description: "Codex harness adapter for oh-my-openagent. Vendored Codex plugin namespace (omo) + TypeScript installer + telemetry.",
|
|
@@ -111739,12 +111868,12 @@ var package_default3 = {
|
|
|
111739
111868
|
"@oh-my-opencode/tmux-core": "workspace:*",
|
|
111740
111869
|
"@oh-my-opencode/team-core": "workspace:*",
|
|
111741
111870
|
"@oh-my-opencode/utils": "workspace:*",
|
|
111742
|
-
"@opencode-ai/plugin": "1.18.
|
|
111743
|
-
"@opencode-ai/sdk": "1.18.
|
|
111871
|
+
"@opencode-ai/plugin": "1.18.22",
|
|
111872
|
+
"@opencode-ai/sdk": "1.18.22",
|
|
111744
111873
|
commander: "^15.0.0",
|
|
111745
111874
|
"jsonc-parser": "^3.3.1",
|
|
111746
111875
|
picocolors: "^1.1.1",
|
|
111747
|
-
picomatch: "^4.0.
|
|
111876
|
+
picomatch: "^4.0.7",
|
|
111748
111877
|
zod: "^4.4.3"
|
|
111749
111878
|
}
|
|
111750
111879
|
};
|