@capgo/cli 8.42.2 → 8.42.4
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 +549 -549
- package/dist/package.json +3 -2
- package/dist/src/posthog.d.ts +2 -0
- package/dist/src/sdk.js +227 -227
- package/dist/src/utils.d.ts +18 -6
- package/package.json +3 -2
package/dist/src/utils.d.ts
CHANGED
|
@@ -35,6 +35,8 @@ export declare const UPLOAD_TIMEOUT_ERROR_NAME = "BundleUploadTimeoutError";
|
|
|
35
35
|
/** User-facing error when the standard HTTP PUT upload exceeds its wall-clock timeout. */
|
|
36
36
|
export declare function uploadTimeoutMessage(timeoutMs: number): string;
|
|
37
37
|
export declare const PACKNAME = "package.json";
|
|
38
|
+
/** Stable PostHog fingerprint for incomplete Capgo server config before Supabase client creation. */
|
|
39
|
+
export declare const CAPGO_SERVER_CONFIG_MISSING_MESSAGE = "Cannot connect to server please try again later";
|
|
38
40
|
export type ArrayElement<ArrayType extends readonly unknown[]> = ArrayType extends readonly (infer ElementType)[] ? ElementType : never;
|
|
39
41
|
export type Organization = ArrayElement<Database['public']['Functions']['get_orgs_v7']['Returns']>;
|
|
40
42
|
export declare const regexSemver: RegExp;
|
|
@@ -492,9 +494,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
492
494
|
};
|
|
493
495
|
Insert: {
|
|
494
496
|
allow_device_custom_id?: boolean;
|
|
495
|
-
allow_preview
|
|
496
|
-
/** Tag Type */
|
|
497
|
-
? /** Tag Type */: boolean;
|
|
497
|
+
allow_preview?: boolean;
|
|
498
498
|
android_store_url?: string | null;
|
|
499
499
|
app_id: string;
|
|
500
500
|
build_timeout_seconds?: number;
|
|
@@ -1212,7 +1212,9 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1212
1212
|
run_on_dow?: number | null;
|
|
1213
1213
|
second_interval?: number | null;
|
|
1214
1214
|
target?: string;
|
|
1215
|
-
task_type
|
|
1215
|
+
task_type
|
|
1216
|
+
/** Capgo cloud files worker; ignored when resolving to self-host /functions/v1 */
|
|
1217
|
+
? /** Capgo cloud files worker; ignored when resolving to self-host /functions/v1 */: Database["public"]["Enums"]["cron_task_type"];
|
|
1216
1218
|
updated_at?: string;
|
|
1217
1219
|
};
|
|
1218
1220
|
Relationships: [];
|
|
@@ -2758,7 +2760,11 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
2758
2760
|
churn_reason?: string | null;
|
|
2759
2761
|
created_at?: string;
|
|
2760
2762
|
customer_country?: string | null;
|
|
2761
|
-
customer_id
|
|
2763
|
+
customer_id
|
|
2764
|
+
/**
|
|
2765
|
+
* Read directory recursively and return full paths for all files
|
|
2766
|
+
*/
|
|
2767
|
+
?: string;
|
|
2762
2768
|
id?: number;
|
|
2763
2769
|
is_good_plan?: boolean | null;
|
|
2764
2770
|
last_stripe_event_at?: string | null;
|
|
@@ -3285,7 +3291,11 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
3285
3291
|
delivery_version?: string;
|
|
3286
3292
|
duration_ms?: number | null;
|
|
3287
3293
|
event_type: string;
|
|
3288
|
-
id
|
|
3294
|
+
id
|
|
3295
|
+
/**
|
|
3296
|
+
* Simple compatibility check (backward compatible)
|
|
3297
|
+
*/
|
|
3298
|
+
?: string;
|
|
3289
3299
|
max_attempts?: number;
|
|
3290
3300
|
next_retry_at?: string | null;
|
|
3291
3301
|
org_id: string;
|
|
@@ -5944,4 +5954,6 @@ interface PromptAndSyncOptions {
|
|
|
5944
5954
|
validateIosUpdater?: boolean;
|
|
5945
5955
|
packageJsonPath?: string;
|
|
5946
5956
|
}
|
|
5957
|
+
export type IosUpdaterSyncValidation = ReturnType<typeof validateIosUpdaterSync>;
|
|
5958
|
+
export declare function throwIfIosUpdaterSyncInvalid(syncValidation: IosUpdaterSyncValidation, platformRunner: string, onFailure?: () => void): void;
|
|
5947
5959
|
export declare function promptAndSyncCapacitor(isInit?: boolean, orgId?: string, apikey?: string, options?: PromptAndSyncOptions): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.42.
|
|
4
|
+
"version": "8.42.4",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -109,6 +109,7 @@
|
|
|
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",
|
|
@@ -167,7 +168,7 @@
|
|
|
167
168
|
"test:android-version": "bun test/test-android-version.mjs",
|
|
168
169
|
"test:platform-flow-contract": "bun test/test-platform-flow-contract.mjs",
|
|
169
170
|
"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",
|
|
171
|
+
"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: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",
|
|
171
172
|
"test:build-platform-selection": "bun test/test-build-platform-selection.mjs",
|
|
172
173
|
"test:builder-project-discovery": "bun test/test-builder-project-discovery.mjs",
|
|
173
174
|
"test:ai-log-capture": "bun test/test-ai-log-capture.mjs",
|