@capgo/cli 8.50.0 → 8.50.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
3
  "type": "module",
4
- "version": "8.50.0",
4
+ "version": "8.50.2",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",
@@ -157,7 +157,7 @@ export declare const mcpRequestBuildInputSchema: z.ZodObject<{
157
157
  path: z.ZodOptional<z.ZodString>;
158
158
  nodeModules: z.ZodOptional<z.ZodString>;
159
159
  cache: z.ZodOptional<z.ZodBoolean>;
160
- cacheKey: z.ZodOptional<z.ZodString>;
160
+ cacheKey: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
161
161
  }, z.core.$strip>;
162
162
  export declare const mcpGenerateEncryptionKeysInputSchema: z.ZodObject<{
163
163
  force: z.ZodOptional<z.ZodBoolean>;
@@ -28,7 +28,7 @@ export declare const buildCredentialsSchema: z.ZodObject<{
28
28
  }, z.core.$catchall<z.ZodOptional<z.ZodString>>>;
29
29
  export type BuildCredentials = z.infer<typeof buildCredentialsSchema>;
30
30
  export declare const buildCacheOptionSchema: z.ZodOptional<z.ZodBoolean>;
31
- export declare const buildCacheKeyOptionSchema: z.ZodOptional<z.ZodString>;
31
+ export declare const buildCacheKeyOptionSchema: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
32
32
  export declare const buildRequestOptionsSchema: z.ZodObject<{
33
33
  apikey: z.ZodString;
34
34
  supaHost: z.ZodOptional<z.ZodString>;
@@ -111,7 +111,7 @@ export declare const buildRequestOptionsSchema: z.ZodObject<{
111
111
  failOnWarnings: z.ZodOptional<z.ZodBoolean>;
112
112
  builderJourneyId: z.ZodOptional<z.ZodString>;
113
113
  cache: z.ZodOptional<z.ZodBoolean>;
114
- cacheKey: z.ZodOptional<z.ZodString>;
114
+ cacheKey: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
115
115
  }, z.core.$strip>;
116
116
  export type BuildRequestOptions = z.infer<typeof buildRequestOptionsSchema>;
117
117
  export declare const buildNeededOptionsSchema: z.ZodObject<{
@@ -408,7 +408,7 @@ export declare const requestBuildOptionsSchema: z.ZodObject<{
408
408
  prescanSkip: z.ZodOptional<z.ZodArray<z.ZodString>>;
409
409
  prescanWarn: z.ZodOptional<z.ZodArray<z.ZodString>>;
410
410
  cache: z.ZodOptional<z.ZodBoolean>;
411
- cacheKey: z.ZodOptional<z.ZodString>;
411
+ cacheKey: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
412
412
  }, z.core.$strip>;
413
413
  export type RequestBuildOptions = z.infer<typeof requestBuildOptionsSchema>;
414
414
  export declare const currentBundleOptionsSchema: z.ZodObject<{