@capgo/cli 8.32.1 → 8.32.3

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": "8.32.1",
4
+ "version": "8.32.3",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",
@@ -21,6 +21,8 @@ export interface Finding {
21
21
  export interface ScanContext {
22
22
  appId: string;
23
23
  platform: Platform;
24
+ /** Operating system running the prescan, used for host-specific local checks. */
25
+ hostPlatform: NodeJS.Platform;
24
26
  projectDir: string;
25
27
  config?: CapacitorConfig;
26
28
  /** merged credentials, env-var style keys (BUILD_CERTIFICATE_BASE64, ANDROID_KEYSTORE_FILE, ...) */
@@ -16,6 +16,7 @@ export declare const incompatibilityReasonSchema: z.ZodEnum<{
16
16
  ios_code_changed: "ios_code_changed";
17
17
  android_code_changed: "android_code_changed";
18
18
  both_platforms_changed: "both_platforms_changed";
19
+ platform_checksum_metadata_changed: "platform_checksum_metadata_changed";
19
20
  }>;
20
21
  export type IncompatibilityReason = z.infer<typeof incompatibilityReasonSchema>;
21
22
  export declare const compatibilitySchema: z.ZodObject<{
@@ -40,6 +41,7 @@ export declare const compatibilityDetailsSchema: z.ZodObject<{
40
41
  ios_code_changed: "ios_code_changed";
41
42
  android_code_changed: "android_code_changed";
42
43
  both_platforms_changed: "both_platforms_changed";
44
+ platform_checksum_metadata_changed: "platform_checksum_metadata_changed";
43
45
  }>>;
44
46
  message: z.ZodString;
45
47
  }, z.core.$strip>;