@capgo/cli 8.32.1 → 8.32.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 +444 -444
- package/dist/package.json +1 -1
- package/dist/src/build/prescan/types.d.ts +2 -0
- package/dist/src/sdk.js +225 -225
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -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, ...) */
|