@capgo/cli 8.31.1 → 8.31.3
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 +409 -409
- package/dist/package.json +4 -3
- package/dist/src/sdk.js +210 -210
- package/dist/src/types/supabase.types.d.ts +12 -11
- package/dist/src/utils.d.ts +26 -12
- package/package.json +4 -3
|
@@ -1023,7 +1023,6 @@ export type Database = {
|
|
|
1023
1023
|
created_at: string;
|
|
1024
1024
|
description: string | null;
|
|
1025
1025
|
enabled: boolean;
|
|
1026
|
-
healthcheck_url: string | null;
|
|
1027
1026
|
hour_interval: number | null;
|
|
1028
1027
|
id: number;
|
|
1029
1028
|
minute_interval: number | null;
|
|
@@ -1044,7 +1043,6 @@ export type Database = {
|
|
|
1044
1043
|
created_at?: string;
|
|
1045
1044
|
description?: string | null;
|
|
1046
1045
|
enabled?: boolean;
|
|
1047
|
-
healthcheck_url?: string | null;
|
|
1048
1046
|
hour_interval?: number | null;
|
|
1049
1047
|
id?: number;
|
|
1050
1048
|
minute_interval?: number | null;
|
|
@@ -1065,7 +1063,6 @@ export type Database = {
|
|
|
1065
1063
|
created_at?: string;
|
|
1066
1064
|
description?: string | null;
|
|
1067
1065
|
enabled?: boolean;
|
|
1068
|
-
healthcheck_url?: string | null;
|
|
1069
1066
|
hour_interval?: number | null;
|
|
1070
1067
|
id?: number;
|
|
1071
1068
|
minute_interval?: number | null;
|
|
@@ -4481,6 +4478,18 @@ export type Database = {
|
|
|
4481
4478
|
};
|
|
4482
4479
|
Returns: boolean;
|
|
4483
4480
|
};
|
|
4481
|
+
has_usage_credits_org: {
|
|
4482
|
+
Args: {
|
|
4483
|
+
orgid: string;
|
|
4484
|
+
};
|
|
4485
|
+
Returns: boolean;
|
|
4486
|
+
} | {
|
|
4487
|
+
Args: {
|
|
4488
|
+
appid: string;
|
|
4489
|
+
orgid: string;
|
|
4490
|
+
};
|
|
4491
|
+
Returns: boolean;
|
|
4492
|
+
};
|
|
4484
4493
|
internal_request_db_user_names: {
|
|
4485
4494
|
Args: never;
|
|
4486
4495
|
Returns: string[];
|
|
@@ -4816,14 +4825,6 @@ export type Database = {
|
|
|
4816
4825
|
};
|
|
4817
4826
|
Returns: undefined;
|
|
4818
4827
|
};
|
|
4819
|
-
process_queue_with_healthcheck: {
|
|
4820
|
-
Args: {
|
|
4821
|
-
batch_size: number;
|
|
4822
|
-
healthcheck_url: string;
|
|
4823
|
-
queue_names: string[];
|
|
4824
|
-
};
|
|
4825
|
-
Returns: undefined;
|
|
4826
|
-
};
|
|
4827
4828
|
process_stats_email_monthly: {
|
|
4828
4829
|
Args: never;
|
|
4829
4830
|
Returns: undefined;
|
package/dist/src/utils.d.ts
CHANGED
|
@@ -1108,7 +1108,6 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1108
1108
|
created_at: string;
|
|
1109
1109
|
description: string | null;
|
|
1110
1110
|
enabled: boolean;
|
|
1111
|
-
healthcheck_url: string | null;
|
|
1112
1111
|
hour_interval: number | null;
|
|
1113
1112
|
id: number;
|
|
1114
1113
|
minute_interval: number | null;
|
|
@@ -1129,7 +1128,6 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1129
1128
|
created_at?: string;
|
|
1130
1129
|
description?: string | null;
|
|
1131
1130
|
enabled?: boolean;
|
|
1132
|
-
healthcheck_url?: string | null;
|
|
1133
1131
|
hour_interval?: number | null;
|
|
1134
1132
|
id?: number;
|
|
1135
1133
|
minute_interval?: number | null;
|
|
@@ -1150,7 +1148,6 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1150
1148
|
created_at?: string;
|
|
1151
1149
|
description?: string | null;
|
|
1152
1150
|
enabled?: boolean;
|
|
1153
|
-
healthcheck_url?: string | null;
|
|
1154
1151
|
hour_interval?: number | null;
|
|
1155
1152
|
id?: number;
|
|
1156
1153
|
minute_interval?: number | null;
|
|
@@ -1833,7 +1830,12 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1833
1830
|
plan_maker_conversion_rate?: number;
|
|
1834
1831
|
plan_maker_monthly?: number;
|
|
1835
1832
|
plan_maker_yearly?: number;
|
|
1836
|
-
plan_solo
|
|
1833
|
+
plan_solo
|
|
1834
|
+
/**
|
|
1835
|
+
* Writes delta manifest rows through the backend (file_size stays 0 until R2 size lookup).
|
|
1836
|
+
* Prefer this over writing app_versions.manifest jsonb — old CLIs still use that legacy path.
|
|
1837
|
+
*/
|
|
1838
|
+
?: number | null;
|
|
1837
1839
|
plan_solo_conversion_rate?: number;
|
|
1838
1840
|
plan_solo_monthly?: number;
|
|
1839
1841
|
plan_solo_yearly?: number;
|
|
@@ -4486,6 +4488,18 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
4486
4488
|
};
|
|
4487
4489
|
Returns: boolean;
|
|
4488
4490
|
};
|
|
4491
|
+
has_usage_credits_org: {
|
|
4492
|
+
Args: {
|
|
4493
|
+
orgid: string;
|
|
4494
|
+
};
|
|
4495
|
+
Returns: boolean;
|
|
4496
|
+
} | {
|
|
4497
|
+
Args: {
|
|
4498
|
+
appid: string;
|
|
4499
|
+
orgid: string;
|
|
4500
|
+
};
|
|
4501
|
+
Returns: boolean;
|
|
4502
|
+
};
|
|
4489
4503
|
internal_request_db_user_names: {
|
|
4490
4504
|
Args: never;
|
|
4491
4505
|
Returns: string[];
|
|
@@ -4821,14 +4835,6 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
4821
4835
|
};
|
|
4822
4836
|
Returns: undefined;
|
|
4823
4837
|
};
|
|
4824
|
-
process_queue_with_healthcheck: {
|
|
4825
|
-
Args: {
|
|
4826
|
-
batch_size: number;
|
|
4827
|
-
healthcheck_url: string;
|
|
4828
|
-
queue_names: string[];
|
|
4829
|
-
};
|
|
4830
|
-
Returns: undefined;
|
|
4831
|
-
};
|
|
4832
4838
|
process_stats_email_monthly: {
|
|
4833
4839
|
Args: never;
|
|
4834
4840
|
Returns: undefined;
|
|
@@ -5638,6 +5644,14 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
5638
5644
|
}>>;
|
|
5639
5645
|
export declare function isPayingOrg(supabase: SupabaseClient<Database>, orgId: string): Promise<boolean>;
|
|
5640
5646
|
export declare function isTrialOrg(supabase: SupabaseClient<Database>, orgId: string): Promise<number>;
|
|
5647
|
+
export declare function hasOrgUsageCredits(supabase: SupabaseClient<Database>, orgId: string, appId?: string): Promise<boolean>;
|
|
5648
|
+
/** Trial upgrade nag is for unpaid trial orgs only — skip when paying or using credits. */
|
|
5649
|
+
export declare function shouldWarnTrialExpiry(options: {
|
|
5650
|
+
trialDays: number;
|
|
5651
|
+
isPaying: boolean;
|
|
5652
|
+
hasCredits: boolean;
|
|
5653
|
+
warning?: boolean;
|
|
5654
|
+
}): boolean;
|
|
5641
5655
|
export declare function isAllowedActionOrg(supabase: SupabaseClient<Database>, orgId: string): Promise<boolean>;
|
|
5642
5656
|
export declare function isAllowedActionAppIdApiKey(supabase: SupabaseClient<Database>, appId: string, apikey: string): Promise<boolean>;
|
|
5643
5657
|
export declare function checkRemoteCliMessages(supabase: SupabaseClient<Database>, orgId: string, cliVersion: string): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.31.
|
|
4
|
+
"version": "8.31.3",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
"test:ios-marketing-version": "bun test/test-ios-marketing-version.mjs",
|
|
161
161
|
"test:platform-flow-contract": "bun test/test-platform-flow-contract.mjs",
|
|
162
162
|
"test:tail-engine-shared": "bun test/test-tail-engine-shared.mjs",
|
|
163
|
-
"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:native-dependencies && 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: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: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-monorepo-targeting && 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:ios-marketing-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",
|
|
163
|
+
"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:native-dependencies && 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: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: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-monorepo-targeting && 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:ios-marketing-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",
|
|
164
164
|
"test:build-platform-selection": "bun test/test-build-platform-selection.mjs",
|
|
165
165
|
"test:ai-log-capture": "bun test/test-ai-log-capture.mjs",
|
|
166
166
|
"test:ai-analyze-flow": "bun test/test-ai-analyze-flow.mjs",
|
|
@@ -202,7 +202,8 @@
|
|
|
202
202
|
"test:appflow-fetch": "bun test/test-appflow-fetch.mjs",
|
|
203
203
|
"test:appflow-sa-decode": "bun test/test-appflow-sa-decode.mjs",
|
|
204
204
|
"test:app-permission-helper": "bun test/test-app-permission-helper.mjs",
|
|
205
|
-
"test:organization-set-api-host": "bun test/test-organization-set-api-host.mjs"
|
|
205
|
+
"test:organization-set-api-host": "bun test/test-organization-set-api-host.mjs",
|
|
206
|
+
"test:trial-warning": "bun test/test-trial-warning.mjs"
|
|
206
207
|
},
|
|
207
208
|
"dependencies": {
|
|
208
209
|
"@inkjs/ui": "^2.0.0",
|