@capgo/cli 8.14.1 → 8.16.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/README.md +29 -0
- package/dist/index.js +668 -661
- package/dist/package.json +4 -2
- package/dist/src/build/cwd.d.ts +7 -0
- package/dist/src/build/mobileprovision-parser.d.ts +2 -0
- package/dist/src/build/onboarding/apple-access.d.ts +26 -0
- package/dist/src/build/onboarding/apple-api.d.ts +15 -0
- package/dist/src/build/prescan/checks/android-keystore.d.ts +3 -0
- package/dist/src/build/prescan/checks/android-manifest.d.ts +14 -0
- package/dist/src/build/prescan/checks/android-project.d.ts +28 -0
- package/dist/src/build/prescan/checks/blob-limit.d.ts +8 -0
- package/dist/src/build/prescan/checks/credentials.d.ts +2 -0
- package/dist/src/build/prescan/checks/ios-certs.d.ts +11 -0
- package/dist/src/build/prescan/checks/ios-plist.d.ts +3 -0
- package/dist/src/build/prescan/checks/ios-profiles.d.ts +21 -0
- package/dist/src/build/prescan/checks/shared-remote.d.ts +3 -0
- package/dist/src/build/prescan/checks/shared.d.ts +4 -0
- package/dist/src/build/prescan/checks/store-access.d.ts +20 -0
- package/dist/src/build/prescan/command.d.ts +52 -0
- package/dist/src/build/prescan/context.d.ts +15 -0
- package/dist/src/build/prescan/engine.d.ts +7 -0
- package/dist/src/build/prescan/gradle.d.ts +65 -0
- package/dist/src/build/prescan/manifest.d.ts +61 -0
- package/dist/src/build/prescan/prompt.d.ts +15 -0
- package/dist/src/build/prescan/registry.d.ts +2 -0
- package/dist/src/build/prescan/report.d.ts +6 -0
- package/dist/src/build/prescan/types.d.ts +50 -0
- package/dist/src/build/prescan/upload-intent.d.ts +3 -0
- package/dist/src/schemas/build.d.ts +3 -0
- package/dist/src/schemas/sdk.d.ts +2 -0
- package/dist/src/sdk.js +438 -401
- package/dist/src/support/support-upload-prompt.d.ts +17 -0
- package/package.json +4 -2
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const SUPPORT_UPLOAD_PROMPT = "Also upload these logs to Capgo support so our team can help? They'll follow up by email.";
|
|
2
|
+
export declare function supportUploadConfirmation(url?: string): string;
|
|
3
|
+
export type SupportUploadOutcome = 'declined' | 'uploaded' | 'unavailable' | 'failed';
|
|
4
|
+
export interface OfferSupportUploadDeps {
|
|
5
|
+
confirm: (message: string) => Promise<boolean>;
|
|
6
|
+
buildFiles: () => ({
|
|
7
|
+
gzPath: string;
|
|
8
|
+
} | null) | Promise<{
|
|
9
|
+
gzPath: string;
|
|
10
|
+
} | null>;
|
|
11
|
+
upload: (gzPath: string) => Promise<{
|
|
12
|
+
id: string;
|
|
13
|
+
url: string;
|
|
14
|
+
} | null>;
|
|
15
|
+
print: (message: string) => void;
|
|
16
|
+
}
|
|
17
|
+
export declare function offerSupportUploadBeforeAi(deps: OfferSupportUploadDeps): Promise<SupportUploadOutcome>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.
|
|
4
|
+
"version": "8.16.0",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"check-posix-paths": "node test/check-posix-paths.js",
|
|
66
66
|
"generate-docs": "node dist/index.js generate-docs README.md",
|
|
67
67
|
"test:bundle": "bun test/test-bundle.mjs",
|
|
68
|
+
"test:prescan": "bun test test/prescan/",
|
|
68
69
|
"test:functional": "bun test/test-functional.mjs",
|
|
69
70
|
"test:semver": "bun test/test-semver-validation.mjs",
|
|
70
71
|
"test:version-edge-cases": "bun test/test-version-validation.mjs",
|
|
@@ -155,7 +156,7 @@
|
|
|
155
156
|
"test:ios-verify-app": "bun test/test-ios-verify-app.mjs",
|
|
156
157
|
"test:platform-flow-contract": "bun test/test-platform-flow-contract.mjs",
|
|
157
158
|
"test:tail-engine-shared": "bun test/test-tail-engine-shared.mjs",
|
|
158
|
-
"test": "bun run build && bun run test:helper-dce && 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:fail-on-incompatible && 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:preview-qr && bun run test:mcp-analytics && bun run test:mcp-instructions && bun run test:mcp-live-update-onboarding && bun run test:mcp-stdout-guard && bun run test:mcp-platform-select && bun run test:mcp-explain-scopes && bun run test:mcp-oauth-reopen && bun run test:mcp-broker-oauth && bun run test:mcp-broker-session && bun run test:mcp-credentials-manage && bun run test:mcp-resume-prompt && bun run test:mcp-build-job && bun run test:mcp-build-tools && 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:init-replay && bun run test:prompt-preferences && bun run test:esm-sdk && bun run test:mcp && bun run test:mcp-no-key-handshake && bun run test:auth-session && bun run test:version-detection && bun run test:platform-paths && bun run test:project-type-detection && bun run test:payload-split && bun run test:manifest-path-encoding && bun run test:macos-signing && bun run test:asc-key-protocol && bun run test:apple-api-import-helpers && bun run test:apple-api-verify-key && bun run test:bundle-id-detector && bun run test:apple-api-app-list && bun run test:app-verification && bun run test:pbxproj-parser && bun run test:ai-log-capture && bun run test:ai-analyze-flow && bun run test:cicd-failure-help && bun run test:ai-sse-parser && bun run test:ai-render-markdown && bun run test:ai-stream-markdown && bun run test:ai-onboarding-mode && bun run test:ai-fit && bun run test:platform-layout && bun run test:frame-fit && bun run test:onboarding-min-size && bun run test:min-size-gate && bun run test:shell-size-gate && bun run test:build-log-sanitize && bun run test:build-output-viewport && bun run test:diff-viewer-viewport && bun run test:build-complete-exit && bun run test:ai-analyze-stream && bun run test:support-mailto && bun run test:support-redact && bun run test:support-internal-log && bun run test:support-help-menu && bun run test:support-contact && bun run test:support-bundle-files && bun run test:self-update && bun run test:update-prompt && bun run test:apple-api-cert-create && bun run test:android-tail-engine && bun run test:android-tail-render && bun run test:android-tail-routing && bun run test:dev-gate-stripped && bun run test:frame-fit-ios-shared && bun run test:ios-confirm-app-id && bun run test:ios-create-new && bun run test:ios-e2e && bun run test:ios-flow-contract && bun run test:ios-import-discovery && bun run test:ios-import-export && bun run test:ios-import-pickers && bun run test:ios-import-recovery && bun run test:ios-recovery && bun run test:ios-resume && bun run test:ios-tail-handoff && bun run test:ios-tui-render && bun run test:p8-error && bun run test:ios-tui-routing && bun run test:ios-updater-sync-validation && bun run test:ios-verify-app && bun run test:platform-flow-contract && bun run test:tail-engine-shared",
|
|
159
|
+
"test": "bun run build && bun run test:helper-dce && 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:fail-on-incompatible && 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:preview-qr && bun run test:mcp-analytics && bun run test:mcp-instructions && bun run test:mcp-live-update-onboarding && bun run test:mcp-stdout-guard && bun run test:mcp-platform-select && bun run test:mcp-explain-scopes && bun run test:mcp-oauth-reopen && bun run test:mcp-broker-oauth && bun run test:mcp-broker-session && bun run test:mcp-credentials-manage && bun run test:mcp-resume-prompt && bun run test:mcp-build-job && bun run test:mcp-build-tools && 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:init-replay && bun run test:prompt-preferences && bun run test:esm-sdk && bun run test:mcp && bun run test:mcp-no-key-handshake && bun run test:auth-session && bun run test:version-detection && bun run test:platform-paths && bun run test:project-type-detection && bun run test:payload-split && bun run test:manifest-path-encoding && bun run test:macos-signing && bun run test:asc-key-protocol && bun run test:apple-api-import-helpers && bun run test:apple-api-verify-key && bun run test:bundle-id-detector && bun run test:apple-api-app-list && bun run test:app-verification && bun run test:pbxproj-parser && bun run test:ai-log-capture && bun run test:ai-analyze-flow && bun run test:cicd-failure-help && bun run test:ai-sse-parser && bun run test:ai-render-markdown && bun run test:ai-stream-markdown && bun run test:ai-onboarding-mode && bun run test:ai-fit && bun run test:platform-layout && bun run test:frame-fit && bun run test:onboarding-min-size && bun run test:min-size-gate && bun run test:shell-size-gate && bun run test:build-log-sanitize && bun run test:build-output-viewport && bun run test:diff-viewer-viewport && bun run test:build-complete-exit && bun run test:ai-analyze-stream && bun run test:support-mailto && bun run test:support-redact && bun run test:support-internal-log && bun run test:support-help-menu && bun run test:support-contact && bun run test:support-upload-prompt && bun run test:support-bundle-files && bun run test:self-update && bun run test:update-prompt && bun run test:apple-api-cert-create && bun run test:android-tail-engine && bun run test:android-tail-render && bun run test:android-tail-routing && bun run test:dev-gate-stripped && bun run test:frame-fit-ios-shared && bun run test:ios-confirm-app-id && bun run test:ios-create-new && bun run test:ios-e2e && bun run test:ios-flow-contract && bun run test:ios-import-discovery && bun run test:ios-import-export && bun run test:ios-import-pickers && bun run test:ios-import-recovery && bun run test:ios-recovery && bun run test:ios-resume && bun run test:ios-tail-handoff && bun run test:ios-tui-render && bun run test:p8-error && bun run test:ios-tui-routing && bun run test:ios-updater-sync-validation && bun run test:ios-verify-app && bun run test:platform-flow-contract && bun run test:tail-engine-shared && bun run test:prescan",
|
|
159
160
|
"test:build-platform-selection": "bun test/test-build-platform-selection.mjs",
|
|
160
161
|
"test:ai-log-capture": "bun test/test-ai-log-capture.mjs",
|
|
161
162
|
"test:ai-analyze-flow": "bun test/test-ai-analyze-flow.mjs",
|
|
@@ -180,6 +181,7 @@
|
|
|
180
181
|
"test:support-internal-log": "bun test/test-support-internal-log.mjs",
|
|
181
182
|
"test:support-help-menu": "bun test/test-support-help-menu.mjs",
|
|
182
183
|
"test:support-contact": "bun test/test-support-contact.mjs",
|
|
184
|
+
"test:support-upload-prompt": "bun test/test-support-upload-prompt.mjs",
|
|
183
185
|
"test:support-bundle-files": "bun test/test-support-bundle-files.mjs",
|
|
184
186
|
"test:mcp-live-update-onboarding": "bun test/test-mcp-live-update-onboarding.mjs"
|
|
185
187
|
},
|