@capgo/cli 8.19.0 → 8.20.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/README.md +4 -0
- package/dist/index.js +447 -447
- package/dist/package.json +1 -1
- package/dist/src/schemas/build.d.ts +8 -0
- package/dist/src/sdk.js +140 -140
- package/package.json +1 -1
- package/skills/native-builds/SKILL.md +4 -0
package/dist/package.json
CHANGED
|
@@ -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<{
|