@capgo/cli 7.84.7 → 7.84.8

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": "7.84.7",
4
+ "version": "7.84.8",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",
@@ -13,3 +13,5 @@ export declare function check2FAComplianceForApp(supabase: SupabaseClient<Databa
13
13
  export declare function checkAppExistsAndHasPermissionOrgErr(supabase: SupabaseClient<Database>, apikey: string, appid: string, requiredPermission: OrganizationPerm, silent?: boolean, skip2FACheck?: boolean): Promise<OrganizationPerm>;
14
14
  export type { AppOptions as Options } from '../schemas/app';
15
15
  export declare const newIconPath = "assets/icon.png";
16
+ export declare const defaultAppIconPath = "public/capgo.png";
17
+ export declare function getAppIconStoragePath(organizationUid: string, appId: string): string;
@@ -6,6 +6,7 @@ export declare function addAppInternal(initialAppId: string, options: AppOptions
6
6
  organizationUid: string;
7
7
  userId: string;
8
8
  name: string;
9
+ iconUrl: string;
9
10
  signedURL: string;
10
11
  }>;
11
12
  export declare function addApp(appId: string, options: AppOptions): Promise<void>;