@capgo/cli 8.33.4 → 8.34.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
3
  "type": "module",
4
- "version": "8.33.4",
4
+ "version": "8.34.0",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",
@@ -22,6 +22,7 @@ export declare function listAppInternal(options: OptionsBase, silent?: boolean):
22
22
  rollout_paused_version_names: string[];
23
23
  name: string | null;
24
24
  need_onboarding: boolean;
25
+ onboarding: import("../types/supabase.types").Json;
25
26
  onboarding_completed_at: string | null;
26
27
  owner_org: string;
27
28
  retention: number;
@@ -54,6 +55,7 @@ export declare function listApp(options: OptionsBase, silent?: boolean): Promise
54
55
  rollout_paused_version_names: string[];
55
56
  name: string | null;
56
57
  need_onboarding: boolean;
58
+ onboarding: import("../types/supabase.types").Json;
57
59
  onboarding_completed_at: string | null;
58
60
  owner_org: string;
59
61
  retention: number;
@@ -25,4 +25,5 @@ export declare const localPropertiesCommitted: PrescanCheck;
25
25
  export declare const sdkFloors: PrescanCheck;
26
26
  export declare const targetSdkPlay: PrescanCheck;
27
27
  export declare const minSdkCapacitor: PrescanCheck;
28
+ export declare const minSdkDependencies: PrescanCheck;
28
29
  export declare const versionFields: PrescanCheck;
@@ -62,4 +62,6 @@ export declare function variablesGradle(projectDir: string): Record<string, numb
62
62
  * while ignoring per-flavor overrides.
63
63
  */
64
64
  export declare function resolveSdk(projectDir: string, dim: SdkDimension): number | null;
65
+ /** Android module directories from android/capacitor.settings.gradle `projectDir` entries. */
66
+ export declare function capacitorPluginAndroidDirs(projectDir: string): string[];
65
67
  export {};