@capgo/cli 7.88.2 → 7.88.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 +318 -318
- package/dist/package.json +1 -1
- package/dist/src/api/update.d.ts +7 -0
- package/dist/src/init/runtime.d.ts +7 -0
- package/dist/src/sdk.js +220 -220
- package/dist/src/utils.d.ts +4 -8
- package/package.json +1 -1
package/dist/src/utils.d.ts
CHANGED
|
@@ -1952,13 +1952,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1952
1952
|
validated_at?: string;
|
|
1953
1953
|
};
|
|
1954
1954
|
Update: {
|
|
1955
|
-
created_at
|
|
1956
|
-
/**
|
|
1957
|
-
* Calculate checksums for iOS and Android native code in a dependency folder.
|
|
1958
|
-
* Includes both native source files and platform configuration files
|
|
1959
|
-
* (podspec, Package.swift, build.gradle) that define platform dependencies.
|
|
1960
|
-
*/
|
|
1961
|
-
?: string;
|
|
1955
|
+
created_at?: string;
|
|
1962
1956
|
id?: number;
|
|
1963
1957
|
org_id?: string;
|
|
1964
1958
|
policy_hash?: string;
|
|
@@ -3620,7 +3614,9 @@ export declare function checkPlanValid(supabase: SupabaseClient<Database>, orgId
|
|
|
3620
3614
|
export declare function checkPlanValidUpload(supabase: SupabaseClient<Database>, orgId: string, apikey: string, appId?: string, warning?: boolean): Promise<void>;
|
|
3621
3615
|
export declare function findSavedKey(quiet?: boolean): string;
|
|
3622
3616
|
export declare function getContentType(filename: string): string;
|
|
3623
|
-
export declare function findProjectType(
|
|
3617
|
+
export declare function findProjectType(options?: {
|
|
3618
|
+
quiet?: boolean;
|
|
3619
|
+
}): Promise<"unknown" | "angular-ts" | "angular-js" | "nuxtjs-ts" | "nuxtjs-js" | "nextjs-ts" | "nextjs-js" | "sveltekit-ts" | "sveltekit-js" | "svelte-ts" | "svelte-js" | "vue-ts" | "vue-js" | "react-ts" | "react-js">;
|
|
3624
3620
|
export declare function findMainFileForProjectType(projectType: string, isTypeScript: boolean): string | null;
|
|
3625
3621
|
export declare function findBuildCommandForProjectType(projectType: string): Promise<"build" | "generate">;
|
|
3626
3622
|
export declare function findMainFile(): Promise<string>;
|