@capgo/cli 8.31.7 → 8.32.0

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.31.7",
4
+ "version": "8.32.0",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",
@@ -7,5 +7,6 @@ export interface OpenedP12 {
7
7
  /** Open the saved P12; throws on wrong password / garbage. Exported for reuse by pairing check. */
8
8
  export declare function openP12(base64: string, password: string): OpenedP12;
9
9
  export declare const p12Opens: PrescanCheck;
10
+ export declare const p12LegacyEncryption: PrescanCheck;
10
11
  export declare const p12Expiry: PrescanCheck;
11
12
  export declare const ascKeyValid: PrescanCheck;
@@ -1,4 +1,6 @@
1
1
  import type { PrescanCheck } from './types';
2
2
  /** New iOS expansion checks become build-blocking at this UTC instant. */
3
3
  export declare const IOS_PRESCAN_EXPANSION_ENFORCE_AFTER = "2026-08-14T00:00:00.000Z";
4
+ /** Legacy P12 encryption becomes mandatory for macOS runner compatibility at this UTC instant. */
5
+ export declare const IOS_P12_LEGACY_ENFORCE_AFTER = "2026-08-17T00:00:00.000Z";
4
6
  export declare const ALL_CHECKS: PrescanCheck[];