@eldrforge/core 0.1.3 → 0.1.4
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 +15 -1
- package/dist/index.js.map +1 -1
- package/dist/src/types.d.ts +58 -0
- package/dist/src/types.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -2719,8 +2719,22 @@ const ConfigSchema = z.object({
|
|
|
2719
2719
|
}).optional(),
|
|
2720
2720
|
updates: z.object({
|
|
2721
2721
|
scope: z.string().optional(),
|
|
2722
|
+
scopes: z.array(z.string()).optional(),
|
|
2722
2723
|
directories: z.array(z.string()).optional(),
|
|
2723
|
-
interProject: z.boolean().optional()
|
|
2724
|
+
interProject: z.boolean().optional(),
|
|
2725
|
+
report: z.boolean().optional(),
|
|
2726
|
+
analyze: z.boolean().optional(),
|
|
2727
|
+
strategy: z.enum([
|
|
2728
|
+
'latest',
|
|
2729
|
+
'conservative',
|
|
2730
|
+
'compatible'
|
|
2731
|
+
]).optional()
|
|
2732
|
+
}).optional(),
|
|
2733
|
+
pull: z.object({
|
|
2734
|
+
remote: z.string().optional(),
|
|
2735
|
+
branch: z.string().optional(),
|
|
2736
|
+
autoStash: z.boolean().optional(),
|
|
2737
|
+
autoResolve: z.boolean().optional()
|
|
2724
2738
|
}).optional(),
|
|
2725
2739
|
excludedPatterns: z.array(z.string()).optional(),
|
|
2726
2740
|
traits: z.any().optional(),
|