@capgo/cli 7.111.7 → 7.112.1
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 +582 -652
- package/dist/package.json +1 -1
- package/dist/src/api/channels.d.ts +4 -4
- package/dist/src/sdk.js +273 -273
- package/dist/src/utils.d.ts +2 -2
- package/package.json +1 -1
package/dist/src/utils.d.ts
CHANGED
|
@@ -5296,7 +5296,7 @@ export declare function findProjectType(options?: {
|
|
|
5296
5296
|
export declare function findMainFileForProjectType(projectType: string, isTypeScript: boolean): string | null;
|
|
5297
5297
|
export declare function findBuildCommandForProjectType(projectType: string): Promise<"build" | "generate">;
|
|
5298
5298
|
export declare function findMainFile(silent?: boolean): Promise<string>;
|
|
5299
|
-
export declare function updateOrCreateVersion(supabase: SupabaseClient<Database>, update: Database['public']['Tables']['app_versions']['Insert']): Promise<import("@supabase/
|
|
5299
|
+
export declare function updateOrCreateVersion(supabase: SupabaseClient<Database>, update: Database['public']['Tables']['app_versions']['Insert']): Promise<import("@supabase/supabase-js").PostgrestSingleResponse<null>>;
|
|
5300
5300
|
export declare function uploadUrl(supabase: SupabaseClient<Database>, appId: string, name: string): Promise<string>;
|
|
5301
5301
|
export declare const BROTLI_MIN_UPDATER_VERSION_V5 = "5.10.0";
|
|
5302
5302
|
export declare const BROTLI_MIN_UPDATER_VERSION_V6 = "6.25.0";
|
|
@@ -5312,7 +5312,7 @@ export declare function zipFileUnix(filePath: string): Buffer<ArrayBuffer>;
|
|
|
5312
5312
|
export declare function zipFileWindows(filePath: string): Promise<Buffer>;
|
|
5313
5313
|
export declare function uploadTUS(apikey: string, data: Buffer, orgId: string, appId: string, name: string, spinner: ReturnType<typeof spinnerC>, localConfig: CapgoConfig, chunkSize: number): Promise<boolean>;
|
|
5314
5314
|
export declare function deletedFailedVersion(supabase: SupabaseClient<Database>, appId: string, name: string): Promise<void>;
|
|
5315
|
-
export declare function updateOrCreateChannel(supabase: SupabaseClient<Database>, update: Database['public']['Tables']['channels']['Insert']): Promise<import("@supabase/
|
|
5315
|
+
export declare function updateOrCreateChannel(supabase: SupabaseClient<Database>, update: Database['public']['Tables']['channels']['Insert']): Promise<import("@supabase/supabase-js").PostgrestSingleResponse<{
|
|
5316
5316
|
allow_dev: boolean;
|
|
5317
5317
|
allow_device: boolean;
|
|
5318
5318
|
allow_device_self_set: boolean;
|