@capgo/cli 7.84.10 → 7.85.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": "7.84.10",
4
+ "version": "7.85.0",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",
@@ -19,6 +19,7 @@ interface SaveCredentialsOptions {
19
19
  keystoreKeyPassword?: string;
20
20
  keystoreStorePassword?: string;
21
21
  playConfig?: string;
22
+ androidFlavor?: string;
22
23
  }
23
24
  /**
24
25
  * Provisioning map entry: stores the base64-encoded profile and its extracted name
@@ -48,9 +48,11 @@ export declare const buildRequestOptionsSchema: z.ZodObject<{
48
48
  keystoreKeyPassword: z.ZodOptional<z.ZodString>;
49
49
  keystoreStorePassword: z.ZodOptional<z.ZodString>;
50
50
  playConfigJson: z.ZodOptional<z.ZodString>;
51
+ androidFlavor: z.ZodOptional<z.ZodString>;
51
52
  outputUpload: z.ZodOptional<z.ZodBoolean>;
52
53
  outputRetention: z.ZodOptional<z.ZodString>;
53
54
  skipBuildNumberBump: z.ZodOptional<z.ZodBoolean>;
55
+ playstoreUpload: z.ZodOptional<z.ZodBoolean>;
54
56
  verbose: z.ZodOptional<z.ZodBoolean>;
55
57
  }, z.core.$strip>;
56
58
  export type BuildRequestOptions = z.infer<typeof buildRequestOptionsSchema>;
@@ -99,6 +101,7 @@ export declare const buildOptionsPayloadSchema: z.ZodObject<{
99
101
  androidSourceDir: z.ZodOptional<z.ZodString>;
100
102
  androidAppDir: z.ZodOptional<z.ZodString>;
101
103
  androidProjectDir: z.ZodOptional<z.ZodString>;
104
+ androidFlavor: z.ZodOptional<z.ZodString>;
102
105
  outputUploadEnabled: z.ZodBoolean;
103
106
  outputRetentionSeconds: z.ZodNumber;
104
107
  skipBuildNumberBump: z.ZodBoolean;