@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/index.js +426 -426
- package/dist/package.json +1 -1
- package/dist/src/mcp/tool-schemas.d.ts +1 -1
- package/dist/src/schemas/build.d.ts +2 -2
- package/dist/src/schemas/sdk.d.ts +1 -1
- package/dist/src/sdk.js +239 -239
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -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<{
|