@capgo/cli 8.42.2 → 8.43.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 +736 -729
- package/dist/package.json +8 -4
- package/dist/src/app/info.d.ts +36 -0
- package/dist/src/channel/add.d.ts +12 -0
- package/dist/src/config/index.d.ts +3 -1
- package/dist/src/posthog.d.ts +2 -0
- package/dist/src/schemas/sdk.d.ts +1 -0
- package/dist/src/sdk.js +317 -310
- package/dist/src/shared/network-error.d.ts +6 -0
- package/dist/src/shared/two-factor-compliance.d.ts +13 -0
- package/dist/src/types/supabase.types.d.ts +3 -0
- package/dist/src/utils.d.ts +12 -4
- package/package.json +8 -4
package/dist/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.
|
|
4
|
+
"version": "8.43.0",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"test:regex": "bun test/test-regex-validation.mjs",
|
|
73
73
|
"test:upload": "bun test/test-upload-validation.mjs",
|
|
74
74
|
"test:fail-on-incompatible": "bun test/test-fail-on-incompatible.mjs",
|
|
75
|
-
"test:native-dependencies": "bun test/test-native-dependencies.mjs",
|
|
75
|
+
"test:native-dependencies": "bun test/test-native-dependencies.mjs && bun test/test-get-remote-dependencies.mjs",
|
|
76
76
|
"test:package-json-guard": "bun test/test-package-json-guard.mjs",
|
|
77
77
|
"test:credentials": "bun test/test-credentials.mjs",
|
|
78
78
|
"test:asc-key-protocol": "bun test/test-asc-key-protocol.mjs",
|
|
@@ -109,17 +109,20 @@
|
|
|
109
109
|
"test:app-list-output-text": "bun test/test-app-list-output-text.mjs",
|
|
110
110
|
"test:doctor-analytics": "bun test/test-doctor-analytics.mjs",
|
|
111
111
|
"test:posthog-exception": "bun test/test-posthog-exception.mjs",
|
|
112
|
+
"test:create-supabase-client": "bun test/test-create-supabase-client.mjs",
|
|
112
113
|
"test:onboarding-recovery": "bun test/test-onboarding-recovery.mjs",
|
|
113
114
|
"test:onboarding-progress": "bun test/test-onboarding-progress.mjs",
|
|
114
115
|
"test:onboarding-run-targets": "bun test/test-onboarding-run-targets.mjs",
|
|
115
116
|
"test:run-device-command": "bun test/test-run-device-command.mjs",
|
|
116
117
|
"test:init-app-conflict": "bun test/test-init-app-conflict.mjs",
|
|
118
|
+
"test:channel-add-exists": "bun test/test-channel-add-exists.mjs",
|
|
117
119
|
"test:wait-log": "bun test/test-wait-log.mjs",
|
|
118
120
|
"test:init-guardrails": "bun test/test-init-guardrails.mjs",
|
|
119
121
|
"test:init-replay": "bun test/test-init-replay.mjs",
|
|
120
122
|
"test:init-telemetry": "bun test/test-init-telemetry.mjs",
|
|
121
123
|
"test:capacitor-config-target": "bun test/test-capacitor-config-target.mjs",
|
|
122
|
-
"test:
|
|
124
|
+
"test:cli-user-error-config": "bun test/test-cli-user-error-config.mjs",
|
|
125
|
+
"test:init-monorepo-targeting": "bun run test:capacitor-config-target && bun run test:cli-user-error-config && bun test/test-init-monorepo-targeting.mjs",
|
|
123
126
|
"test:prompt-preferences": "bun test/test-prompt-preferences.mjs",
|
|
124
127
|
"test:esm-sdk": "node test/test-sdk-esm.mjs",
|
|
125
128
|
"test:auth-session": "bun test/test-auth-session.mjs",
|
|
@@ -167,7 +170,7 @@
|
|
|
167
170
|
"test:android-version": "bun test/test-android-version.mjs",
|
|
168
171
|
"test:platform-flow-contract": "bun test/test-platform-flow-contract.mjs",
|
|
169
172
|
"test:tail-engine-shared": "bun test/test-tail-engine-shared.mjs",
|
|
170
|
-
"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:auto-bump-version && bun run test:auto-bump-ai-diff && bun run test:version-edge-cases && bun run test:regex && bun run test:upload && bun run test:fail-on-incompatible && bun run test:native-dependencies && bun run test:package-json-guard && 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:cli-headers && bun run test:authenticated-command-invocation && 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:app-set-options && 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:app-list-output-text && bun run test:doctor-analytics && bun run test:posthog-exception && bun run test:build-platform-selection && bun run test:builder-project-discovery && 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-monorepo-targeting && bun run test:init-app-conflict && bun run test:wait-log && bun run test:init-guardrails && bun run test:init-replay && bun run test:init-telemetry && 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:ios-marketing-version && bun run test:android-version && bun run test:platform-flow-contract && bun run test:tail-engine-shared && bun run test:prescan && bun run test:android-reporting-api && bun run test:android-app-verification && bun run test:android-rename && bun run test:appflow-auth && bun run test:appflow-api-map && bun run test:appflow-validate && bun run test:appflow-flow && bun run test:appflow-gapfill && bun run test:appflow-engine && bun run test:appflow-tail && bun run test:appflow-fetch && bun run test:appflow-sa-decode && bun run test:app-permission-helper && bun run test:organization-set-api-host && bun run test:trial-warning && bun run test:plan-validation",
|
|
173
|
+
"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:auto-bump-version && bun run test:auto-bump-ai-diff && bun run test:version-edge-cases && bun run test:regex && bun run test:upload && bun run test:fail-on-incompatible && bun run test:native-dependencies && bun run test:package-json-guard && 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:cli-headers && bun run test:authenticated-command-invocation && 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:app-set-options && 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:app-list-output-text && bun run test:doctor-analytics && bun run test:posthog-exception && bun run test:create-supabase-client && bun run test:build-platform-selection && bun run test:builder-project-discovery && 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-monorepo-targeting && bun run test:init-app-conflict && bun run test:channel-add-exists && bun run test:wait-log && bun run test:init-guardrails && bun run test:init-replay && bun run test:init-telemetry && 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:ios-marketing-version && bun run test:android-version && bun run test:platform-flow-contract && bun run test:tail-engine-shared && bun run test:prescan && bun run test:android-reporting-api && bun run test:android-app-verification && bun run test:android-rename && bun run test:appflow-auth && bun run test:appflow-api-map && bun run test:appflow-validate && bun run test:appflow-flow && bun run test:appflow-gapfill && bun run test:appflow-engine && bun run test:appflow-tail && bun run test:appflow-fetch && bun run test:appflow-sa-decode && bun run test:app-permission-helper && bun run test:2fa-compliance-network && bun run test:organization-set-api-host && bun run test:trial-warning && bun run test:plan-validation",
|
|
171
174
|
"test:build-platform-selection": "bun test/test-build-platform-selection.mjs",
|
|
172
175
|
"test:builder-project-discovery": "bun test/test-builder-project-discovery.mjs",
|
|
173
176
|
"test:ai-log-capture": "bun test/test-ai-log-capture.mjs",
|
|
@@ -210,6 +213,7 @@
|
|
|
210
213
|
"test:appflow-fetch": "bun test/test-appflow-fetch.mjs",
|
|
211
214
|
"test:appflow-sa-decode": "bun test/test-appflow-sa-decode.mjs",
|
|
212
215
|
"test:app-permission-helper": "bun test/test-app-permission-helper.mjs",
|
|
216
|
+
"test:2fa-compliance-network": "bun test/test-2fa-compliance-network.mjs",
|
|
213
217
|
"test:organization-set-api-host": "bun test/test-organization-set-api-host.mjs",
|
|
214
218
|
"test:trial-warning": "bun test/test-trial-warning.mjs",
|
|
215
219
|
"test:plan-validation": "bun test/test-plan-validation.mjs",
|
package/dist/src/app/info.d.ts
CHANGED
|
@@ -1,6 +1,42 @@
|
|
|
1
|
+
import { getPMAndCommand } from '../utils';
|
|
2
|
+
export declare const OUTDATED_DEPENDENCIES_ERROR = "Some dependencies are not up to date";
|
|
3
|
+
export interface OutdatedDependency {
|
|
4
|
+
name: string;
|
|
5
|
+
installed: string;
|
|
6
|
+
latest: string;
|
|
7
|
+
}
|
|
8
|
+
export type DoctorUpdateChoice = 'capgo-only' | 'all' | 'skip';
|
|
1
9
|
interface DoctorInfoOptions {
|
|
2
10
|
packageJson?: string;
|
|
3
11
|
}
|
|
12
|
+
export declare function parseDoctorPackageJsonPaths(packageJson?: string): string[] | undefined;
|
|
13
|
+
export declare function resolveDoctorProjectRoot(packageJson?: string): string;
|
|
14
|
+
export declare function groupOutdatedPackagesByPackageJson(packageJsonPaths: string[], packages: OutdatedDependency[], readDeclaredNames?: (packageJsonPath: string) => Set<string>): {
|
|
15
|
+
packageJsonPath: string;
|
|
16
|
+
packages: OutdatedDependency[];
|
|
17
|
+
}[];
|
|
18
|
+
export declare function shellQuotePath(path: string, shellPlatform?: NodeJS.Platform): string;
|
|
19
|
+
export declare function formatDoctorInstallHint(projectRoot: string, installCommand: string, shellPlatform?: NodeJS.Platform): string;
|
|
20
|
+
export declare function buildOutdatedInstallCommandsForDoctor(packageJson: string | undefined, packages: OutdatedDependency[], readDeclaredNames?: (packageJsonPath: string) => Set<string>, shellPlatform?: NodeJS.Platform): string;
|
|
21
|
+
export declare function runOutdatedDependencyUpdatesForDoctor(packageJson: string | undefined, packages: OutdatedDependency[], readDeclaredNames?: (packageJsonPath: string) => Set<string>): void;
|
|
22
|
+
export declare function getPMAndCommandForDir(projectRoot: string): {
|
|
23
|
+
pm: import("@capgo/find-package-manager").PackageManagerType;
|
|
24
|
+
command: import("@capgo/find-package-manager").InstallCommand;
|
|
25
|
+
installCommand: string;
|
|
26
|
+
runner: any;
|
|
27
|
+
};
|
|
28
|
+
export interface DoctorRecoveryResult {
|
|
29
|
+
recovered: boolean;
|
|
30
|
+
remainingOutdated: OutdatedDependency[];
|
|
31
|
+
}
|
|
32
|
+
export declare function listOutdatedDependencies(installed: Record<string, string>, latest: Record<string, string>): OutdatedDependency[];
|
|
33
|
+
export declare function partitionOutdatedDependencies(outdated: OutdatedDependency[]): {
|
|
34
|
+
capgo: OutdatedDependency[];
|
|
35
|
+
other: OutdatedDependency[];
|
|
36
|
+
};
|
|
37
|
+
export declare function packagesForDoctorUpdateChoice(choice: DoctorUpdateChoice, capgo: OutdatedDependency[], other: OutdatedDependency[]): OutdatedDependency[];
|
|
38
|
+
export declare function buildOutdatedInstallCommand(pm: ReturnType<typeof getPMAndCommand>, packages: OutdatedDependency[]): string;
|
|
39
|
+
export declare function runOutdatedDependencyUpdates(pm: ReturnType<typeof getPMAndCommand>, packages: OutdatedDependency[], projectRoot: string): void;
|
|
4
40
|
export declare function computeDoctorAnalyticsTags(installed: Record<string, string>, latest: Record<string, string>): {
|
|
5
41
|
is_outdated: boolean;
|
|
6
42
|
dependency_count: number;
|
|
@@ -1,4 +1,16 @@
|
|
|
1
|
+
import type { SupabaseClient } from '@supabase/supabase-js';
|
|
1
2
|
import type { ChannelAddOptions } from '../schemas/channel';
|
|
3
|
+
import type { Database } from '../types/supabase.types';
|
|
4
|
+
export declare function isChannelReadableByCaller(supabase: SupabaseClient<Database>, appId: string, channelName: string): Promise<boolean | null>;
|
|
5
|
+
export type ChannelAddDuplicateOutcome = 'duplicate_readable' | 'duplicate_inaccessible' | 'not_duplicate';
|
|
6
|
+
export declare function resolveChannelAddDuplicateOutcome(params: {
|
|
7
|
+
createError: unknown;
|
|
8
|
+
supabase: SupabaseClient<Database>;
|
|
9
|
+
appId: string;
|
|
10
|
+
channelName: string;
|
|
11
|
+
}, deps?: {
|
|
12
|
+
isChannelReadableByCaller?: typeof isChannelReadableByCaller;
|
|
13
|
+
}): Promise<ChannelAddDuplicateOutcome>;
|
|
2
14
|
export declare function addChannelInternal(channelId: string, appId: string, options: ChannelAddOptions, silent?: boolean): Promise<{
|
|
3
15
|
name: string;
|
|
4
16
|
}>;
|
|
@@ -12,7 +12,9 @@ export declare function getConfigWriteTarget(): string | undefined;
|
|
|
12
12
|
* redirect one another's writes while awaiting async work.
|
|
13
13
|
*/
|
|
14
14
|
export declare function withConfigWriteTarget<T>(filePath: string | undefined, action: () => T): T;
|
|
15
|
-
export declare function resolveCapacitorConfigTargetPath(value: string | undefined, initialCwd?: string
|
|
15
|
+
export declare function resolveCapacitorConfigTargetPath(value: string | undefined, initialCwd?: string, options?: {
|
|
16
|
+
logError?: boolean;
|
|
17
|
+
}): string | undefined;
|
|
16
18
|
export declare function loadConfigTarget(filePath: string): Promise<CapacitorConfig>;
|
|
17
19
|
export declare function loadConfig(): Promise<ExtConfigPairs | undefined>;
|
|
18
20
|
/**
|
package/dist/src/posthog.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import type { Command } from 'commander';
|
|
2
|
+
/** Stable message for broken/outdated native iOS projects after cap sync. */
|
|
3
|
+
export declare const IOS_SYNC_VALIDATION_FAILED_MESSAGE = "iOS sync validation failed. Delete your iOS folder, then rerun the add and sync commands above and retry.";
|
|
2
4
|
type CliPosthogExceptionKind = 'unhandled_error';
|
|
3
5
|
interface CapturePosthogExceptionPayload {
|
|
4
6
|
error: unknown;
|