@capgo/cli 7.114.0 → 7.115.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 +426 -426
- package/dist/package.json +3 -2
- package/dist/src/analytics/error-category.d.ts +6 -1
- package/dist/src/analytics/supabase-perf.d.ts +47 -0
- package/dist/src/analytics/track.d.ts +3 -1
- package/dist/src/sdk.js +261 -261
- package/dist/src/utils.d.ts +1 -1
- package/package.json +3 -2
package/dist/src/utils.d.ts
CHANGED
|
@@ -148,7 +148,7 @@ interface CapgoFilesConfig {
|
|
|
148
148
|
alertUploadSize: number;
|
|
149
149
|
}
|
|
150
150
|
export declare function getRemoteFileConfig(): Promise<CapgoFilesConfig>;
|
|
151
|
-
export declare function createSupabaseClient(apikey: string, supaHost?: string, supaKey?: string, silent?: boolean): Promise<SupabaseClient<Database, "public", "public", {
|
|
151
|
+
export declare function createSupabaseClient(apikey: string, supaHost?: string, supaKey?: string, silent?: boolean, instrument?: boolean): Promise<SupabaseClient<Database, "public", "public", {
|
|
152
152
|
Tables: {
|
|
153
153
|
apikeys: {
|
|
154
154
|
Row: {
|
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.115.0",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"test:analytics": "bun test/test-analytics.mjs",
|
|
85
85
|
"test:analytics-error-category": "bun test/test-analytics-error-category.mjs",
|
|
86
86
|
"test:analytics-org-resolver": "bun test/test-analytics-org-resolver.mjs",
|
|
87
|
+
"test:supabase-perf": "bun test/test-supabase-perf.mjs",
|
|
87
88
|
"test:mcp-analytics": "bun test/test-mcp-analytics.mjs",
|
|
88
89
|
"test:app-created-source": "bun test/test-app-created-source.mjs",
|
|
89
90
|
"test:doctor-analytics": "bun test/test-doctor-analytics.mjs",
|
|
@@ -104,7 +105,7 @@
|
|
|
104
105
|
"test:macos-signing": "bun test/test-macos-signing.mjs",
|
|
105
106
|
"test:apple-api-import-helpers": "bun test/test-apple-api-import-helpers.mjs",
|
|
106
107
|
"test:manifest-path-encoding": "bun test/test-manifest-path-encoding.mjs",
|
|
107
|
-
"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:analytics && bun run test:analytics-error-category && bun run test:analytics-org-resolver && bun run test:mcp-analytics && bun run test:app-created-source && bun run test:doctor-analytics && 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",
|
|
108
|
+
"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:analytics && bun run test:analytics-error-category && bun run test:analytics-org-resolver && bun run test:supabase-perf && bun run test:mcp-analytics && bun run test:app-created-source && bun run test:doctor-analytics && 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",
|
|
108
109
|
"test:build-platform-selection": "bun test/test-build-platform-selection.mjs",
|
|
109
110
|
"test:ai-log-capture": "bun test/test-ai-log-capture.mjs",
|
|
110
111
|
"test:ai-analyze-flow": "bun test/test-ai-analyze-flow.mjs",
|