@capgo/cli 8.3.1 → 8.4.1
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 +608 -608
- package/dist/package.json +26 -2
- package/dist/src/build/mobileprovision-parser.d.ts +9 -0
- package/dist/src/build/onboarding/android/flow.d.ts +505 -0
- package/dist/src/build/onboarding/android/keystore.d.ts +18 -0
- package/dist/src/build/onboarding/android/oauth-google.d.ts +31 -0
- package/dist/src/build/onboarding/android/oauth-scopes.d.ts +4 -0
- package/dist/src/build/onboarding/android/types.d.ts +42 -1
- package/dist/src/build/onboarding/apple-api.d.ts +5 -1
- package/dist/src/build/onboarding/env-export.d.ts +12 -1
- package/dist/src/build/onboarding/flow/android-flow.d.ts +3 -0
- package/dist/src/build/onboarding/flow/contract.d.ts +24 -0
- package/dist/src/build/onboarding/flow/ios-flow.d.ts +3 -0
- package/dist/src/build/onboarding/ios/flow.d.ts +650 -0
- package/dist/src/build/onboarding/ios/progress.d.ts +2 -0
- package/dist/src/build/onboarding/mcp/app-id-validation.d.ts +8 -0
- package/dist/src/build/onboarding/mcp/contract.d.ts +51 -0
- package/dist/src/build/onboarding/mcp/engine.d.ts +131 -0
- package/dist/src/build/onboarding/mcp/explanations.d.ts +4 -0
- package/dist/src/build/onboarding/mcp/oauth-session.d.ts +29 -0
- package/dist/src/build/onboarding/mcp/onboarding-tools.d.ts +17 -0
- package/dist/src/build/onboarding/mcp/step-input.d.ts +45 -0
- package/dist/src/build/onboarding/mcp/terminal-launch.d.ts +22 -0
- package/dist/src/build/onboarding/tail/flow.d.ts +283 -0
- package/dist/src/build/onboarding/tail-types.d.ts +29 -0
- package/dist/src/build/onboarding/types.d.ts +82 -1
- package/dist/src/build/onboarding/ui/p8-error.d.ts +13 -0
- package/dist/src/build/output-record.d.ts +17 -0
- package/dist/src/schemas/onboarding.d.ts +41 -0
- package/dist/src/sdk.js +226 -226
- package/package.json +26 -2
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.4.1",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -109,12 +109,36 @@
|
|
|
109
109
|
"test:apple-api-import-helpers": "bun test/test-apple-api-import-helpers.mjs",
|
|
110
110
|
"test:bundle-id-detector": "bun test/test-bundle-id-detector.mjs",
|
|
111
111
|
"test:apple-api-app-list": "bun test/test-apple-api-app-list.mjs",
|
|
112
|
+
"test:apple-api-cert-create": "bun test/test-apple-api-cert-create.mjs",
|
|
112
113
|
"test:app-verification": "bun test/test-app-verification.mjs",
|
|
113
114
|
"test:pbxproj-parser": "bun test/test-pbxproj-parser.mjs",
|
|
114
115
|
"test:manifest-path-encoding": "bun test/test-manifest-path-encoding.mjs",
|
|
115
116
|
"test:self-update": "bun test/test-self-update.mjs",
|
|
116
117
|
"test:update-prompt": "bun test/test-update-prompt.mjs",
|
|
117
|
-
"test
|
|
118
|
+
"test:android-tail-engine": "bun test/test-android-tail-engine.mjs",
|
|
119
|
+
"test:android-tail-render": "bun test/test-android-tail-render.mjs",
|
|
120
|
+
"test:android-tail-routing": "bun test/test-android-tail-routing.mjs",
|
|
121
|
+
"test:dev-gate-stripped": "bun test/test-dev-gate-stripped.mjs",
|
|
122
|
+
"test:frame-fit-ios-shared": "bun test/test-frame-fit-ios-shared.mjs",
|
|
123
|
+
"test:ios-confirm-app-id": "bun test/test-ios-confirm-app-id.mjs",
|
|
124
|
+
"test:ios-create-new": "bun test/test-ios-create-new.mjs",
|
|
125
|
+
"test:ios-e2e": "bun test/test-ios-e2e.mjs",
|
|
126
|
+
"test:ios-flow-contract": "bun test/test-ios-flow-contract.mjs",
|
|
127
|
+
"test:ios-import-discovery": "bun test/test-ios-import-discovery.mjs",
|
|
128
|
+
"test:ios-import-export": "bun test/test-ios-import-export.mjs",
|
|
129
|
+
"test:ios-import-pickers": "bun test/test-ios-import-pickers.mjs",
|
|
130
|
+
"test:ios-import-recovery": "bun test/test-ios-import-recovery.mjs",
|
|
131
|
+
"test:ios-recovery": "bun test/test-ios-recovery.mjs",
|
|
132
|
+
"test:ios-resume": "bun test/test-ios-resume.mjs",
|
|
133
|
+
"test:ios-tail-handoff": "bun test/test-ios-tail-handoff.mjs",
|
|
134
|
+
"test:ios-tui-render": "bun test/test-ios-tui-render.mjs",
|
|
135
|
+
"test:p8-error": "bun test/test-p8-error.mjs",
|
|
136
|
+
"test:ios-tui-routing": "bun test/test-ios-tui-routing.mjs",
|
|
137
|
+
"test:ios-updater-sync-validation": "bun test/test-ios-updater-sync-validation.mjs",
|
|
138
|
+
"test:ios-verify-app": "bun test/test-ios-verify-app.mjs",
|
|
139
|
+
"test:platform-flow-contract": "bun test/test-platform-flow-contract.mjs",
|
|
140
|
+
"test:tail-engine-shared": "bun test/test-tail-engine-shared.mjs",
|
|
141
|
+
"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: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: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: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",
|
|
118
142
|
"test:build-platform-selection": "bun test/test-build-platform-selection.mjs",
|
|
119
143
|
"test:ai-log-capture": "bun test/test-ai-log-capture.mjs",
|
|
120
144
|
"test:ai-analyze-flow": "bun test/test-ai-analyze-flow.mjs",
|