@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.
- package/dist/index.js +311 -311
- package/dist/package.json +1 -1
- package/dist/src/sdk.js +224 -224
- package/dist/src/utils.d.ts +20 -1
- package/package.json +1 -1
package/dist/src/utils.d.ts
CHANGED
|
@@ -3731,4 +3731,23 @@ export declare function checkCompatibilityNativePackages(supabase: SupabaseClien
|
|
|
3731
3731
|
android_checksum?: string | undefined;
|
|
3732
3732
|
}[];
|
|
3733
3733
|
}>;
|
|
3734
|
-
export
|
|
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>;
|