@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/index.js +532 -532
- package/dist/package.json +1 -1
- package/dist/src/app/list.d.ts +2 -0
- package/dist/src/build/prescan/checks/android-project.d.ts +1 -0
- package/dist/src/build/prescan/gradle.d.ts +2 -0
- package/dist/src/sdk.js +304 -304
- package/dist/src/types/supabase.types.d.ts +14 -0
- package/dist/src/utils.d.ts +14 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
package/dist/src/app/list.d.ts
CHANGED
|
@@ -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 {};
|