@capgo/cli 7.94.3 → 7.94.4
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 +508 -488
- package/dist/package.json +2 -1
- package/dist/src/api/channels.d.ts +5 -5
- package/dist/src/sdk.js +339 -308
- package/dist/src/utils.d.ts +2 -2
- package/package.json +2 -1
package/dist/src/utils.d.ts
CHANGED
|
@@ -3627,7 +3627,7 @@ export declare function findProjectType(options?: {
|
|
|
3627
3627
|
export declare function findMainFileForProjectType(projectType: string, isTypeScript: boolean): string | null;
|
|
3628
3628
|
export declare function findBuildCommandForProjectType(projectType: string): Promise<"build" | "generate">;
|
|
3629
3629
|
export declare function findMainFile(silent?: boolean): Promise<string>;
|
|
3630
|
-
export declare function updateOrCreateVersion(supabase: SupabaseClient<Database>, update: Database['public']['Tables']['app_versions']['Insert']): Promise<import("@supabase/
|
|
3630
|
+
export declare function updateOrCreateVersion(supabase: SupabaseClient<Database>, update: Database['public']['Tables']['app_versions']['Insert']): Promise<import("@supabase/supabase-js").PostgrestSingleResponse<null>>;
|
|
3631
3631
|
export declare function uploadUrl(supabase: SupabaseClient<Database>, appId: string, name: string): Promise<string>;
|
|
3632
3632
|
export declare const BROTLI_MIN_UPDATER_VERSION_V5 = "5.10.0";
|
|
3633
3633
|
export declare const BROTLI_MIN_UPDATER_VERSION_V6 = "6.25.0";
|
|
@@ -3644,7 +3644,7 @@ export declare function zipFileUnix(filePath: string): Buffer<ArrayBuffer>;
|
|
|
3644
3644
|
export declare function zipFileWindows(filePath: string): Promise<Buffer>;
|
|
3645
3645
|
export declare function uploadTUS(apikey: string, data: Buffer, orgId: string, appId: string, name: string, spinner: ReturnType<typeof spinnerC>, localConfig: CapgoConfig, chunkSize: number): Promise<boolean>;
|
|
3646
3646
|
export declare function deletedFailedVersion(supabase: SupabaseClient<Database>, appId: string, name: string): Promise<void>;
|
|
3647
|
-
export declare function updateOrCreateChannel(supabase: SupabaseClient<Database>, update: Database['public']['Tables']['channels']['Insert']): Promise<import("@supabase/
|
|
3647
|
+
export declare function updateOrCreateChannel(supabase: SupabaseClient<Database>, update: Database['public']['Tables']['channels']['Insert']): Promise<import("@supabase/supabase-js").PostgrestSingleResponse<{
|
|
3648
3648
|
allow_dev: boolean;
|
|
3649
3649
|
allow_device: boolean;
|
|
3650
3650
|
allow_device_self_set: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.94.
|
|
4
|
+
"version": "7.94.4",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -107,6 +107,7 @@
|
|
|
107
107
|
"@types/qrcode": "^1.5.6",
|
|
108
108
|
"@types/react": "^18.3.28",
|
|
109
109
|
"@types/tmp": "^0.2.6",
|
|
110
|
+
"@types/ws": "^8.18.1",
|
|
110
111
|
"@vercel/ncc": "^0.38.4",
|
|
111
112
|
"adm-zip": "^0.5.16",
|
|
112
113
|
"ci-info": "^4.3.1",
|