@capgo/cli 8.19.0 → 8.20.1

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.19.0",
4
+ "version": "8.20.1",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",
@@ -63,6 +63,10 @@ export declare const buildRequestOptionsSchema: z.ZodObject<{
63
63
  outputRecord: z.ZodOptional<z.ZodString>;
64
64
  skipBuildNumberBump: z.ZodOptional<z.ZodBoolean>;
65
65
  playstoreUpload: z.ZodOptional<z.ZodBoolean>;
66
+ submitToStoreReview: z.ZodOptional<z.ZodBoolean>;
67
+ storeReleaseName: z.ZodOptional<z.ZodString>;
68
+ storeReleaseNotes: z.ZodOptional<z.ZodString>;
69
+ iosTestflightGroups: z.ZodOptional<z.ZodString>;
66
70
  verbose: z.ZodOptional<z.ZodBoolean>;
67
71
  aiAnalytics: z.ZodOptional<z.ZodBoolean>;
68
72
  sendLogsToSupport: z.ZodOptional<z.ZodBoolean>;
@@ -127,6 +131,10 @@ export declare const buildOptionsPayloadSchema: z.ZodObject<{
127
131
  outputUploadEnabled: z.ZodBoolean;
128
132
  outputRetentionSeconds: z.ZodNumber;
129
133
  skipBuildNumberBump: z.ZodBoolean;
134
+ submitToStoreReview: z.ZodBoolean;
135
+ storeReleaseName: z.ZodOptional<z.ZodString>;
136
+ storeReleaseNotes: z.ZodOptional<z.ZodString>;
137
+ iosTestflightGroups: z.ZodOptional<z.ZodString>;
130
138
  }, z.core.$strip>;
131
139
  export type BuildOptionsPayload = z.infer<typeof buildOptionsPayloadSchema>;
132
140
  export declare const credentialFileSchema: z.ZodObject<{