@capgo/cli 7.74.1 → 7.74.2

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.
@@ -3731,4 +3731,23 @@ export declare function checkCompatibilityNativePackages(supabase: SupabaseClien
3731
3731
  android_checksum?: string | undefined;
3732
3732
  }[];
3733
3733
  }>;
3734
- export declare function promptAndSyncCapacitor(isInit?: boolean, orgId?: string, apikey?: string): Promise<void>;
3734
+ export interface IosUpdaterSyncValidationResult {
3735
+ shouldCheck: boolean;
3736
+ valid: boolean;
3737
+ details: string[];
3738
+ }
3739
+ /**
3740
+ * Validate whether the iOS native project is correctly synced for capacitor-updater.
3741
+ *
3742
+ * `shouldCheck` is `false` when no iOS project is present or no updater signals are detected
3743
+ * (no dependency declaration, installed package, or native references). `shouldCheck` is `true`
3744
+ * as soon as any signal indicates updater should be wired, then both dependency definitions
3745
+ * (`Podfile` or SPM `Package.swift`) and generated native outputs (`Podfile.lock`,
3746
+ * `Package.resolved`, or `capacitor.plugins.json`) must include updater markers for `valid` to be `true`.
3747
+ */
3748
+ export declare function validateIosUpdaterSync(rootDir?: string, packageJsonPath?: string): IosUpdaterSyncValidationResult;
3749
+ interface PromptAndSyncOptions {
3750
+ validateIosUpdater?: boolean;
3751
+ packageJsonPath?: string;
3752
+ }
3753
+ export declare function promptAndSyncCapacitor(isInit?: boolean, orgId?: string, apikey?: string, options?: PromptAndSyncOptions): Promise<void>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
3
  "type": "module",
4
- "version": "7.74.1",
4
+ "version": "7.74.2",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",