@capgo/cli 8.26.0 → 8.27.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.26.0",
4
+ "version": "8.27.0",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",
@@ -5,6 +5,7 @@ interface SaveCredentialsOptions {
5
5
  outputUpload?: boolean;
6
6
  outputRetention?: string;
7
7
  skipBuildNumberBump?: boolean;
8
+ skipMarketingVersionBump?: boolean;
8
9
  certificate?: string;
9
10
  iosProvisioningProfile?: string[];
10
11
  overwriteIosProvisioningMap?: boolean;
@@ -70,6 +70,7 @@ export declare const buildRequestOptionsSchema: z.ZodObject<{
70
70
  outputRetention: z.ZodOptional<z.ZodString>;
71
71
  outputRecord: z.ZodOptional<z.ZodString>;
72
72
  skipBuildNumberBump: z.ZodOptional<z.ZodBoolean>;
73
+ skipMarketingVersionBump: z.ZodOptional<z.ZodBoolean>;
73
74
  syncIosVersion: z.ZodOptional<z.ZodBoolean>;
74
75
  playstoreUpload: z.ZodOptional<z.ZodBoolean>;
75
76
  submitToStoreReview: z.ZodOptional<z.ZodBoolean>;
@@ -143,6 +144,7 @@ export declare const buildOptionsPayloadSchema: z.ZodObject<{
143
144
  outputUploadEnabled: z.ZodBoolean;
144
145
  outputRetentionSeconds: z.ZodNumber;
145
146
  skipBuildNumberBump: z.ZodBoolean;
147
+ skipMarketingVersionBump: z.ZodBoolean;
146
148
  submitToStoreReview: z.ZodBoolean;
147
149
  storeReleaseName: z.ZodOptional<z.ZodString>;
148
150
  storeReleaseNotes: z.ZodOptional<z.ZodString>;