@capgo/cli 7.112.4 → 7.113.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +104 -104
- package/dist/package.json +3 -2
- package/dist/src/sdk.js +178 -178
- package/dist/src/utils.d.ts +8 -0
- package/package.json +3 -2
package/dist/src/utils.d.ts
CHANGED
|
@@ -56,6 +56,14 @@ interface TrackOptions {
|
|
|
56
56
|
* example: "user-123"
|
|
57
57
|
*/
|
|
58
58
|
user_id?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Organization ID for actor-scoped tracking.
|
|
61
|
+
*/
|
|
62
|
+
org_id?: string;
|
|
63
|
+
/**
|
|
64
|
+
* Tracking payload contract version.
|
|
65
|
+
*/
|
|
66
|
+
tracking_version?: number;
|
|
59
67
|
/**
|
|
60
68
|
* Event icon (emoji)
|
|
61
69
|
* must be a single emoji
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.113.0",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"test:ci-secrets": "bun test/test-ci-secrets.mjs",
|
|
81
81
|
"test:android-onboarding-progress": "bun test/test-android-onboarding-progress.mjs",
|
|
82
82
|
"test:onboarding-telemetry": "bun test/test-onboarding-telemetry.mjs",
|
|
83
|
+
"test:v2-event-migration": "bun test/test-v2-event-migration.mjs",
|
|
83
84
|
"test:posthog-exception": "bun test/test-posthog-exception.mjs",
|
|
84
85
|
"test:onboarding-recovery": "bun test/test-onboarding-recovery.mjs",
|
|
85
86
|
"test:onboarding-progress": "bun test/test-onboarding-progress.mjs",
|
|
@@ -97,7 +98,7 @@
|
|
|
97
98
|
"test:macos-signing": "bun test/test-macos-signing.mjs",
|
|
98
99
|
"test:apple-api-import-helpers": "bun test/test-apple-api-import-helpers.mjs",
|
|
99
100
|
"test:manifest-path-encoding": "bun test/test-manifest-path-encoding.mjs",
|
|
100
|
-
"test": "bun run build && bun run test:version-detection:setup && bun run test:bundle && bun run test:functional && bun run test:semver && bun run test:version-edge-cases && bun run test:regex && bun run test:upload && bun run test:credentials && bun run test:credentials-validation && bun run test:android-service-account-validation && bun run test:build-zip-filter && bun run test:checksum && bun run test:build-needed && bun run test:ci-prompts && bun run test:ci-secrets && bun run test:android-onboarding-progress && bun run test:onboarding-telemetry && bun run test:posthog-exception && bun run test:build-platform-selection && bun run test:onboarding-recovery && bun run test:onboarding-progress && bun run test:onboarding-run-targets && bun run test:run-device-command && bun run test:init-app-conflict && bun run test:init-guardrails && bun run test:prompt-preferences && bun run test:esm-sdk && bun run test:mcp && bun run test:version-detection && bun run test:platform-paths && bun run test:payload-split && bun run test:manifest-path-encoding && bun run test:macos-signing && bun run test:apple-api-import-helpers && bun run test:ai-log-capture && bun run test:ai-analyze-flow && bun run test:ai-render-markdown",
|
|
101
|
+
"test": "bun run build && bun run test:version-detection:setup && bun run test:bundle && bun run test:functional && bun run test:semver && bun run test:version-edge-cases && bun run test:regex && bun run test:upload && bun run test:credentials && bun run test:credentials-validation && bun run test:android-service-account-validation && bun run test:build-zip-filter && bun run test:checksum && bun run test:build-needed && bun run test:ci-prompts && bun run test:ci-secrets && bun run test:android-onboarding-progress && bun run test:onboarding-telemetry && bun run test:v2-event-migration && bun run test:posthog-exception && bun run test:build-platform-selection && bun run test:onboarding-recovery && bun run test:onboarding-progress && bun run test:onboarding-run-targets && bun run test:run-device-command && bun run test:init-app-conflict && bun run test:init-guardrails && bun run test:prompt-preferences && bun run test:esm-sdk && bun run test:mcp && bun run test:version-detection && bun run test:platform-paths && bun run test:payload-split && bun run test:manifest-path-encoding && bun run test:macos-signing && bun run test:apple-api-import-helpers && bun run test:ai-log-capture && bun run test:ai-analyze-flow && bun run test:ai-render-markdown",
|
|
101
102
|
"test:build-platform-selection": "bun test/test-build-platform-selection.mjs",
|
|
102
103
|
"test:ai-log-capture": "bun test/test-ai-log-capture.mjs",
|
|
103
104
|
"test:ai-analyze-flow": "bun test/test-ai-analyze-flow.mjs",
|