@grunnverk/core 1.5.5 → 1.5.6
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/src/types.d.ts +103 -1009
- package/dist/src/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/src/types.d.ts
CHANGED
|
@@ -6,9 +6,13 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6
6
|
debug: z.ZodOptional<z.ZodBoolean>;
|
|
7
7
|
overrides: z.ZodOptional<z.ZodBoolean>;
|
|
8
8
|
model: z.ZodOptional<z.ZodString>;
|
|
9
|
-
openaiReasoning: z.ZodOptional<z.ZodEnum<
|
|
9
|
+
openaiReasoning: z.ZodOptional<z.ZodEnum<{
|
|
10
|
+
low: "low";
|
|
11
|
+
medium: "medium";
|
|
12
|
+
high: "high";
|
|
13
|
+
}>>;
|
|
10
14
|
openaiMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
11
|
-
contextDirectories: z.ZodOptional<z.ZodArray<z.ZodString
|
|
15
|
+
contextDirectories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12
16
|
outputDirectory: z.ZodOptional<z.ZodString>;
|
|
13
17
|
preferencesDirectory: z.ZodOptional<z.ZodString>;
|
|
14
18
|
commit: z.ZodOptional<z.ZodObject<{
|
|
@@ -17,100 +21,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
17
21
|
sendit: z.ZodOptional<z.ZodBoolean>;
|
|
18
22
|
interactive: z.ZodOptional<z.ZodBoolean>;
|
|
19
23
|
amend: z.ZodOptional<z.ZodBoolean>;
|
|
20
|
-
push: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
24
|
+
push: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>;
|
|
21
25
|
messageLimit: z.ZodOptional<z.ZodNumber>;
|
|
22
26
|
context: z.ZodOptional<z.ZodString>;
|
|
23
|
-
contextFiles: z.ZodOptional<z.ZodArray<z.ZodString
|
|
27
|
+
contextFiles: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
24
28
|
direction: z.ZodOptional<z.ZodString>;
|
|
25
29
|
skipFileCheck: z.ZodOptional<z.ZodBoolean>;
|
|
26
30
|
maxDiffBytes: z.ZodOptional<z.ZodNumber>;
|
|
27
31
|
model: z.ZodOptional<z.ZodString>;
|
|
28
|
-
openaiReasoning: z.ZodOptional<z.ZodEnum<
|
|
32
|
+
openaiReasoning: z.ZodOptional<z.ZodEnum<{
|
|
33
|
+
low: "low";
|
|
34
|
+
medium: "medium";
|
|
35
|
+
high: "high";
|
|
36
|
+
}>>;
|
|
29
37
|
openaiMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
30
38
|
maxAgenticIterations: z.ZodOptional<z.ZodNumber>;
|
|
31
39
|
allowCommitSplitting: z.ZodOptional<z.ZodBoolean>;
|
|
32
40
|
autoSplit: z.ZodOptional<z.ZodBoolean>;
|
|
33
41
|
toolTimeout: z.ZodOptional<z.ZodNumber>;
|
|
34
42
|
selfReflection: z.ZodOptional<z.ZodBoolean>;
|
|
35
|
-
},
|
|
36
|
-
model?: string | undefined;
|
|
37
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
38
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
39
|
-
push?: string | boolean | undefined;
|
|
40
|
-
add?: boolean | undefined;
|
|
41
|
-
cached?: boolean | undefined;
|
|
42
|
-
sendit?: boolean | undefined;
|
|
43
|
-
interactive?: boolean | undefined;
|
|
44
|
-
amend?: boolean | undefined;
|
|
45
|
-
messageLimit?: number | undefined;
|
|
46
|
-
context?: string | undefined;
|
|
47
|
-
contextFiles?: string[] | undefined;
|
|
48
|
-
direction?: string | undefined;
|
|
49
|
-
skipFileCheck?: boolean | undefined;
|
|
50
|
-
maxDiffBytes?: number | undefined;
|
|
51
|
-
maxAgenticIterations?: number | undefined;
|
|
52
|
-
allowCommitSplitting?: boolean | undefined;
|
|
53
|
-
autoSplit?: boolean | undefined;
|
|
54
|
-
toolTimeout?: number | undefined;
|
|
55
|
-
selfReflection?: boolean | undefined;
|
|
56
|
-
}, {
|
|
57
|
-
model?: string | undefined;
|
|
58
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
59
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
60
|
-
push?: string | boolean | undefined;
|
|
61
|
-
add?: boolean | undefined;
|
|
62
|
-
cached?: boolean | undefined;
|
|
63
|
-
sendit?: boolean | undefined;
|
|
64
|
-
interactive?: boolean | undefined;
|
|
65
|
-
amend?: boolean | undefined;
|
|
66
|
-
messageLimit?: number | undefined;
|
|
67
|
-
context?: string | undefined;
|
|
68
|
-
contextFiles?: string[] | undefined;
|
|
69
|
-
direction?: string | undefined;
|
|
70
|
-
skipFileCheck?: boolean | undefined;
|
|
71
|
-
maxDiffBytes?: number | undefined;
|
|
72
|
-
maxAgenticIterations?: number | undefined;
|
|
73
|
-
allowCommitSplitting?: boolean | undefined;
|
|
74
|
-
autoSplit?: boolean | undefined;
|
|
75
|
-
toolTimeout?: number | undefined;
|
|
76
|
-
selfReflection?: boolean | undefined;
|
|
77
|
-
}>>;
|
|
43
|
+
}, z.core.$strip>>;
|
|
78
44
|
audioCommit: z.ZodOptional<z.ZodObject<{
|
|
79
45
|
maxRecordingTime: z.ZodOptional<z.ZodNumber>;
|
|
80
46
|
audioDevice: z.ZodOptional<z.ZodString>;
|
|
81
47
|
file: z.ZodOptional<z.ZodString>;
|
|
82
48
|
keepTemp: z.ZodOptional<z.ZodBoolean>;
|
|
83
49
|
model: z.ZodOptional<z.ZodString>;
|
|
84
|
-
openaiReasoning: z.ZodOptional<z.ZodEnum<
|
|
50
|
+
openaiReasoning: z.ZodOptional<z.ZodEnum<{
|
|
51
|
+
low: "low";
|
|
52
|
+
medium: "medium";
|
|
53
|
+
high: "high";
|
|
54
|
+
}>>;
|
|
85
55
|
openaiMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
86
|
-
},
|
|
87
|
-
model?: string | undefined;
|
|
88
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
89
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
90
|
-
maxRecordingTime?: number | undefined;
|
|
91
|
-
audioDevice?: string | undefined;
|
|
92
|
-
file?: string | undefined;
|
|
93
|
-
keepTemp?: boolean | undefined;
|
|
94
|
-
}, {
|
|
95
|
-
model?: string | undefined;
|
|
96
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
97
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
98
|
-
maxRecordingTime?: number | undefined;
|
|
99
|
-
audioDevice?: string | undefined;
|
|
100
|
-
file?: string | undefined;
|
|
101
|
-
keepTemp?: boolean | undefined;
|
|
102
|
-
}>>;
|
|
56
|
+
}, z.core.$strip>>;
|
|
103
57
|
release: z.ZodOptional<z.ZodObject<{
|
|
104
58
|
from: z.ZodOptional<z.ZodString>;
|
|
105
59
|
to: z.ZodOptional<z.ZodString>;
|
|
106
60
|
messageLimit: z.ZodOptional<z.ZodNumber>;
|
|
107
61
|
context: z.ZodOptional<z.ZodString>;
|
|
108
|
-
contextFiles: z.ZodOptional<z.ZodArray<z.ZodString
|
|
62
|
+
contextFiles: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
109
63
|
interactive: z.ZodOptional<z.ZodBoolean>;
|
|
110
64
|
focus: z.ZodOptional<z.ZodString>;
|
|
111
65
|
maxDiffBytes: z.ZodOptional<z.ZodNumber>;
|
|
112
66
|
model: z.ZodOptional<z.ZodString>;
|
|
113
|
-
openaiReasoning: z.ZodOptional<z.ZodEnum<
|
|
67
|
+
openaiReasoning: z.ZodOptional<z.ZodEnum<{
|
|
68
|
+
low: "low";
|
|
69
|
+
medium: "medium";
|
|
70
|
+
high: "high";
|
|
71
|
+
}>>;
|
|
114
72
|
openaiMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
115
73
|
noMilestones: z.ZodOptional<z.ZodBoolean>;
|
|
116
74
|
fromMain: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -118,43 +76,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
118
76
|
version: z.ZodOptional<z.ZodString>;
|
|
119
77
|
maxAgenticIterations: z.ZodOptional<z.ZodNumber>;
|
|
120
78
|
selfReflection: z.ZodOptional<z.ZodBoolean>;
|
|
121
|
-
},
|
|
122
|
-
model?: string | undefined;
|
|
123
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
124
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
125
|
-
interactive?: boolean | undefined;
|
|
126
|
-
messageLimit?: number | undefined;
|
|
127
|
-
context?: string | undefined;
|
|
128
|
-
contextFiles?: string[] | undefined;
|
|
129
|
-
maxDiffBytes?: number | undefined;
|
|
130
|
-
maxAgenticIterations?: number | undefined;
|
|
131
|
-
selfReflection?: boolean | undefined;
|
|
132
|
-
from?: string | undefined;
|
|
133
|
-
to?: string | undefined;
|
|
134
|
-
focus?: string | undefined;
|
|
135
|
-
noMilestones?: boolean | undefined;
|
|
136
|
-
fromMain?: boolean | undefined;
|
|
137
|
-
currentBranch?: string | undefined;
|
|
138
|
-
version?: string | undefined;
|
|
139
|
-
}, {
|
|
140
|
-
model?: string | undefined;
|
|
141
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
142
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
143
|
-
interactive?: boolean | undefined;
|
|
144
|
-
messageLimit?: number | undefined;
|
|
145
|
-
context?: string | undefined;
|
|
146
|
-
contextFiles?: string[] | undefined;
|
|
147
|
-
maxDiffBytes?: number | undefined;
|
|
148
|
-
maxAgenticIterations?: number | undefined;
|
|
149
|
-
selfReflection?: boolean | undefined;
|
|
150
|
-
from?: string | undefined;
|
|
151
|
-
to?: string | undefined;
|
|
152
|
-
focus?: string | undefined;
|
|
153
|
-
noMilestones?: boolean | undefined;
|
|
154
|
-
fromMain?: boolean | undefined;
|
|
155
|
-
currentBranch?: string | undefined;
|
|
156
|
-
version?: string | undefined;
|
|
157
|
-
}>>;
|
|
79
|
+
}, z.core.$strip>>;
|
|
158
80
|
review: z.ZodOptional<z.ZodObject<{
|
|
159
81
|
includeCommitHistory: z.ZodOptional<z.ZodBoolean>;
|
|
160
82
|
includeRecentDiffs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -170,49 +92,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
170
92
|
editorTimeout: z.ZodOptional<z.ZodNumber>;
|
|
171
93
|
maxContextErrors: z.ZodOptional<z.ZodNumber>;
|
|
172
94
|
model: z.ZodOptional<z.ZodString>;
|
|
173
|
-
openaiReasoning: z.ZodOptional<z.ZodEnum<
|
|
95
|
+
openaiReasoning: z.ZodOptional<z.ZodEnum<{
|
|
96
|
+
low: "low";
|
|
97
|
+
medium: "medium";
|
|
98
|
+
high: "high";
|
|
99
|
+
}>>;
|
|
174
100
|
openaiMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
175
101
|
file: z.ZodOptional<z.ZodString>;
|
|
176
102
|
directory: z.ZodOptional<z.ZodString>;
|
|
177
|
-
},
|
|
178
|
-
model?: string | undefined;
|
|
179
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
180
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
181
|
-
sendit?: boolean | undefined;
|
|
182
|
-
context?: string | undefined;
|
|
183
|
-
file?: string | undefined;
|
|
184
|
-
includeCommitHistory?: boolean | undefined;
|
|
185
|
-
includeRecentDiffs?: boolean | undefined;
|
|
186
|
-
includeReleaseNotes?: boolean | undefined;
|
|
187
|
-
includeGithubIssues?: boolean | undefined;
|
|
188
|
-
commitHistoryLimit?: number | undefined;
|
|
189
|
-
diffHistoryLimit?: number | undefined;
|
|
190
|
-
releaseNotesLimit?: number | undefined;
|
|
191
|
-
githubIssuesLimit?: number | undefined;
|
|
192
|
-
note?: string | undefined;
|
|
193
|
-
editorTimeout?: number | undefined;
|
|
194
|
-
maxContextErrors?: number | undefined;
|
|
195
|
-
directory?: string | undefined;
|
|
196
|
-
}, {
|
|
197
|
-
model?: string | undefined;
|
|
198
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
199
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
200
|
-
sendit?: boolean | undefined;
|
|
201
|
-
context?: string | undefined;
|
|
202
|
-
file?: string | undefined;
|
|
203
|
-
includeCommitHistory?: boolean | undefined;
|
|
204
|
-
includeRecentDiffs?: boolean | undefined;
|
|
205
|
-
includeReleaseNotes?: boolean | undefined;
|
|
206
|
-
includeGithubIssues?: boolean | undefined;
|
|
207
|
-
commitHistoryLimit?: number | undefined;
|
|
208
|
-
diffHistoryLimit?: number | undefined;
|
|
209
|
-
releaseNotesLimit?: number | undefined;
|
|
210
|
-
githubIssuesLimit?: number | undefined;
|
|
211
|
-
note?: string | undefined;
|
|
212
|
-
editorTimeout?: number | undefined;
|
|
213
|
-
maxContextErrors?: number | undefined;
|
|
214
|
-
directory?: string | undefined;
|
|
215
|
-
}>>;
|
|
103
|
+
}, z.core.$strip>>;
|
|
216
104
|
audioReview: z.ZodOptional<z.ZodObject<{
|
|
217
105
|
includeCommitHistory: z.ZodOptional<z.ZodBoolean>;
|
|
218
106
|
includeRecentDiffs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -230,64 +118,30 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
230
118
|
directory: z.ZodOptional<z.ZodString>;
|
|
231
119
|
keepTemp: z.ZodOptional<z.ZodBoolean>;
|
|
232
120
|
model: z.ZodOptional<z.ZodString>;
|
|
233
|
-
openaiReasoning: z.ZodOptional<z.ZodEnum<
|
|
121
|
+
openaiReasoning: z.ZodOptional<z.ZodEnum<{
|
|
122
|
+
low: "low";
|
|
123
|
+
medium: "medium";
|
|
124
|
+
high: "high";
|
|
125
|
+
}>>;
|
|
234
126
|
openaiMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
235
|
-
},
|
|
236
|
-
model?: string | undefined;
|
|
237
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
238
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
239
|
-
sendit?: boolean | undefined;
|
|
240
|
-
context?: string | undefined;
|
|
241
|
-
maxRecordingTime?: number | undefined;
|
|
242
|
-
audioDevice?: string | undefined;
|
|
243
|
-
file?: string | undefined;
|
|
244
|
-
keepTemp?: boolean | undefined;
|
|
245
|
-
includeCommitHistory?: boolean | undefined;
|
|
246
|
-
includeRecentDiffs?: boolean | undefined;
|
|
247
|
-
includeReleaseNotes?: boolean | undefined;
|
|
248
|
-
includeGithubIssues?: boolean | undefined;
|
|
249
|
-
commitHistoryLimit?: number | undefined;
|
|
250
|
-
diffHistoryLimit?: number | undefined;
|
|
251
|
-
releaseNotesLimit?: number | undefined;
|
|
252
|
-
githubIssuesLimit?: number | undefined;
|
|
253
|
-
directory?: string | undefined;
|
|
254
|
-
}, {
|
|
255
|
-
model?: string | undefined;
|
|
256
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
257
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
258
|
-
sendit?: boolean | undefined;
|
|
259
|
-
context?: string | undefined;
|
|
260
|
-
maxRecordingTime?: number | undefined;
|
|
261
|
-
audioDevice?: string | undefined;
|
|
262
|
-
file?: string | undefined;
|
|
263
|
-
keepTemp?: boolean | undefined;
|
|
264
|
-
includeCommitHistory?: boolean | undefined;
|
|
265
|
-
includeRecentDiffs?: boolean | undefined;
|
|
266
|
-
includeReleaseNotes?: boolean | undefined;
|
|
267
|
-
includeGithubIssues?: boolean | undefined;
|
|
268
|
-
commitHistoryLimit?: number | undefined;
|
|
269
|
-
diffHistoryLimit?: number | undefined;
|
|
270
|
-
releaseNotesLimit?: number | undefined;
|
|
271
|
-
githubIssuesLimit?: number | undefined;
|
|
272
|
-
directory?: string | undefined;
|
|
273
|
-
}>>;
|
|
127
|
+
}, z.core.$strip>>;
|
|
274
128
|
precommit: z.ZodOptional<z.ZodObject<{
|
|
275
129
|
fix: z.ZodOptional<z.ZodBoolean>;
|
|
276
|
-
},
|
|
277
|
-
fix?: boolean | undefined;
|
|
278
|
-
}, {
|
|
279
|
-
fix?: boolean | undefined;
|
|
280
|
-
}>>;
|
|
130
|
+
}, z.core.$strip>>;
|
|
281
131
|
publish: z.ZodOptional<z.ZodObject<{
|
|
282
|
-
mergeMethod: z.ZodOptional<z.ZodEnum<
|
|
132
|
+
mergeMethod: z.ZodOptional<z.ZodEnum<{
|
|
133
|
+
merge: "merge";
|
|
134
|
+
squash: "squash";
|
|
135
|
+
rebase: "rebase";
|
|
136
|
+
}>>;
|
|
283
137
|
from: z.ZodOptional<z.ZodString>;
|
|
284
138
|
targetVersion: z.ZodOptional<z.ZodString>;
|
|
285
139
|
interactive: z.ZodOptional<z.ZodBoolean>;
|
|
286
140
|
skipAlreadyPublished: z.ZodOptional<z.ZodBoolean>;
|
|
287
141
|
forceRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
288
|
-
dependencyUpdatePatterns: z.ZodOptional<z.ZodArray<z.ZodString
|
|
289
|
-
scopedDependencyUpdates: z.ZodOptional<z.ZodArray<z.ZodString
|
|
290
|
-
requiredEnvVars: z.ZodOptional<z.ZodArray<z.ZodString
|
|
142
|
+
dependencyUpdatePatterns: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
143
|
+
scopedDependencyUpdates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
144
|
+
requiredEnvVars: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
291
145
|
linkWorkspacePackages: z.ZodOptional<z.ZodBoolean>;
|
|
292
146
|
unlinkWorkspacePackages: z.ZodOptional<z.ZodBoolean>;
|
|
293
147
|
checksTimeout: z.ZodOptional<z.ZodNumber>;
|
|
@@ -296,7 +150,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
296
150
|
sendit: z.ZodOptional<z.ZodBoolean>;
|
|
297
151
|
waitForReleaseWorkflows: z.ZodOptional<z.ZodBoolean>;
|
|
298
152
|
releaseWorkflowsTimeout: z.ZodOptional<z.ZodNumber>;
|
|
299
|
-
releaseWorkflowNames: z.ZodOptional<z.ZodArray<z.ZodString
|
|
153
|
+
releaseWorkflowNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
300
154
|
targetBranch: z.ZodOptional<z.ZodString>;
|
|
301
155
|
noMilestones: z.ZodOptional<z.ZodBoolean>;
|
|
302
156
|
fromMain: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -305,140 +159,41 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
305
159
|
agenticPublish: z.ZodOptional<z.ZodBoolean>;
|
|
306
160
|
agenticPublishMaxIterations: z.ZodOptional<z.ZodNumber>;
|
|
307
161
|
skipLinkCleanup: z.ZodOptional<z.ZodBoolean>;
|
|
308
|
-
},
|
|
309
|
-
sendit?: boolean | undefined;
|
|
310
|
-
interactive?: boolean | undefined;
|
|
311
|
-
from?: string | undefined;
|
|
312
|
-
noMilestones?: boolean | undefined;
|
|
313
|
-
fromMain?: boolean | undefined;
|
|
314
|
-
mergeMethod?: "merge" | "squash" | "rebase" | undefined;
|
|
315
|
-
targetVersion?: string | undefined;
|
|
316
|
-
skipAlreadyPublished?: boolean | undefined;
|
|
317
|
-
forceRepublish?: boolean | undefined;
|
|
318
|
-
dependencyUpdatePatterns?: string[] | undefined;
|
|
319
|
-
scopedDependencyUpdates?: string[] | undefined;
|
|
320
|
-
requiredEnvVars?: string[] | undefined;
|
|
321
|
-
linkWorkspacePackages?: boolean | undefined;
|
|
322
|
-
unlinkWorkspacePackages?: boolean | undefined;
|
|
323
|
-
checksTimeout?: number | undefined;
|
|
324
|
-
skipUserConfirmation?: boolean | undefined;
|
|
325
|
-
syncTarget?: boolean | undefined;
|
|
326
|
-
waitForReleaseWorkflows?: boolean | undefined;
|
|
327
|
-
releaseWorkflowsTimeout?: number | undefined;
|
|
328
|
-
releaseWorkflowNames?: string[] | undefined;
|
|
329
|
-
targetBranch?: string | undefined;
|
|
330
|
-
skipPrePublishMerge?: boolean | undefined;
|
|
331
|
-
updateDeps?: string | undefined;
|
|
332
|
-
agenticPublish?: boolean | undefined;
|
|
333
|
-
agenticPublishMaxIterations?: number | undefined;
|
|
334
|
-
skipLinkCleanup?: boolean | undefined;
|
|
335
|
-
}, {
|
|
336
|
-
sendit?: boolean | undefined;
|
|
337
|
-
interactive?: boolean | undefined;
|
|
338
|
-
from?: string | undefined;
|
|
339
|
-
noMilestones?: boolean | undefined;
|
|
340
|
-
fromMain?: boolean | undefined;
|
|
341
|
-
mergeMethod?: "merge" | "squash" | "rebase" | undefined;
|
|
342
|
-
targetVersion?: string | undefined;
|
|
343
|
-
skipAlreadyPublished?: boolean | undefined;
|
|
344
|
-
forceRepublish?: boolean | undefined;
|
|
345
|
-
dependencyUpdatePatterns?: string[] | undefined;
|
|
346
|
-
scopedDependencyUpdates?: string[] | undefined;
|
|
347
|
-
requiredEnvVars?: string[] | undefined;
|
|
348
|
-
linkWorkspacePackages?: boolean | undefined;
|
|
349
|
-
unlinkWorkspacePackages?: boolean | undefined;
|
|
350
|
-
checksTimeout?: number | undefined;
|
|
351
|
-
skipUserConfirmation?: boolean | undefined;
|
|
352
|
-
syncTarget?: boolean | undefined;
|
|
353
|
-
waitForReleaseWorkflows?: boolean | undefined;
|
|
354
|
-
releaseWorkflowsTimeout?: number | undefined;
|
|
355
|
-
releaseWorkflowNames?: string[] | undefined;
|
|
356
|
-
targetBranch?: string | undefined;
|
|
357
|
-
skipPrePublishMerge?: boolean | undefined;
|
|
358
|
-
updateDeps?: string | undefined;
|
|
359
|
-
agenticPublish?: boolean | undefined;
|
|
360
|
-
agenticPublishMaxIterations?: number | undefined;
|
|
361
|
-
skipLinkCleanup?: boolean | undefined;
|
|
362
|
-
}>>;
|
|
162
|
+
}, z.core.$strip>>;
|
|
363
163
|
branches: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
364
164
|
targetBranch: z.ZodOptional<z.ZodString>;
|
|
365
165
|
developmentBranch: z.ZodOptional<z.ZodBoolean>;
|
|
366
166
|
version: z.ZodOptional<z.ZodObject<{
|
|
367
|
-
type: z.ZodEnum<
|
|
167
|
+
type: z.ZodEnum<{
|
|
168
|
+
release: "release";
|
|
169
|
+
prerelease: "prerelease";
|
|
170
|
+
}>;
|
|
368
171
|
increment: z.ZodOptional<z.ZodBoolean>;
|
|
369
|
-
incrementLevel: z.ZodOptional<z.ZodEnum<
|
|
172
|
+
incrementLevel: z.ZodOptional<z.ZodEnum<{
|
|
173
|
+
patch: "patch";
|
|
174
|
+
minor: "minor";
|
|
175
|
+
major: "major";
|
|
176
|
+
}>>;
|
|
370
177
|
tag: z.ZodOptional<z.ZodString>;
|
|
371
|
-
},
|
|
372
|
-
|
|
373
|
-
increment?: boolean | undefined;
|
|
374
|
-
incrementLevel?: "patch" | "minor" | "major" | undefined;
|
|
375
|
-
tag?: string | undefined;
|
|
376
|
-
}, {
|
|
377
|
-
type: "release" | "prerelease";
|
|
378
|
-
increment?: boolean | undefined;
|
|
379
|
-
incrementLevel?: "patch" | "minor" | "major" | undefined;
|
|
380
|
-
tag?: string | undefined;
|
|
381
|
-
}>>;
|
|
382
|
-
}, "strip", z.ZodTypeAny, {
|
|
383
|
-
version?: {
|
|
384
|
-
type: "release" | "prerelease";
|
|
385
|
-
increment?: boolean | undefined;
|
|
386
|
-
incrementLevel?: "patch" | "minor" | "major" | undefined;
|
|
387
|
-
tag?: string | undefined;
|
|
388
|
-
} | undefined;
|
|
389
|
-
targetBranch?: string | undefined;
|
|
390
|
-
developmentBranch?: boolean | undefined;
|
|
391
|
-
}, {
|
|
392
|
-
version?: {
|
|
393
|
-
type: "release" | "prerelease";
|
|
394
|
-
increment?: boolean | undefined;
|
|
395
|
-
incrementLevel?: "patch" | "minor" | "major" | undefined;
|
|
396
|
-
tag?: string | undefined;
|
|
397
|
-
} | undefined;
|
|
398
|
-
targetBranch?: string | undefined;
|
|
399
|
-
developmentBranch?: boolean | undefined;
|
|
400
|
-
}>>>;
|
|
178
|
+
}, z.core.$strip>>;
|
|
179
|
+
}, z.core.$strip>>>;
|
|
401
180
|
link: z.ZodOptional<z.ZodObject<{
|
|
402
181
|
scopeRoots: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
403
182
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
404
183
|
packageArgument: z.ZodOptional<z.ZodString>;
|
|
405
|
-
externals: z.ZodOptional<z.ZodArray<z.ZodString
|
|
406
|
-
},
|
|
407
|
-
dryRun?: boolean | undefined;
|
|
408
|
-
scopeRoots?: Record<string, string> | undefined;
|
|
409
|
-
packageArgument?: string | undefined;
|
|
410
|
-
externals?: string[] | undefined;
|
|
411
|
-
}, {
|
|
412
|
-
dryRun?: boolean | undefined;
|
|
413
|
-
scopeRoots?: Record<string, string> | undefined;
|
|
414
|
-
packageArgument?: string | undefined;
|
|
415
|
-
externals?: string[] | undefined;
|
|
416
|
-
}>>;
|
|
184
|
+
externals: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
185
|
+
}, z.core.$strip>>;
|
|
417
186
|
unlink: z.ZodOptional<z.ZodObject<{
|
|
418
187
|
scopeRoots: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
419
188
|
workspaceFile: z.ZodOptional<z.ZodString>;
|
|
420
189
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
421
190
|
cleanNodeModules: z.ZodOptional<z.ZodBoolean>;
|
|
422
191
|
packageArgument: z.ZodOptional<z.ZodString>;
|
|
423
|
-
externals: z.ZodOptional<z.ZodArray<z.ZodString
|
|
424
|
-
},
|
|
425
|
-
dryRun?: boolean | undefined;
|
|
426
|
-
scopeRoots?: Record<string, string> | undefined;
|
|
427
|
-
packageArgument?: string | undefined;
|
|
428
|
-
externals?: string[] | undefined;
|
|
429
|
-
workspaceFile?: string | undefined;
|
|
430
|
-
cleanNodeModules?: boolean | undefined;
|
|
431
|
-
}, {
|
|
432
|
-
dryRun?: boolean | undefined;
|
|
433
|
-
scopeRoots?: Record<string, string> | undefined;
|
|
434
|
-
packageArgument?: string | undefined;
|
|
435
|
-
externals?: string[] | undefined;
|
|
436
|
-
workspaceFile?: string | undefined;
|
|
437
|
-
cleanNodeModules?: boolean | undefined;
|
|
438
|
-
}>>;
|
|
192
|
+
externals: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
193
|
+
}, z.core.$strip>>;
|
|
439
194
|
tree: z.ZodOptional<z.ZodObject<{
|
|
440
|
-
directories: z.ZodOptional<z.ZodArray<z.ZodString
|
|
441
|
-
exclude: z.ZodOptional<z.ZodArray<z.ZodString
|
|
195
|
+
directories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
196
|
+
exclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
442
197
|
startFrom: z.ZodOptional<z.ZodString>;
|
|
443
198
|
stopAt: z.ZodOptional<z.ZodString>;
|
|
444
199
|
cmd: z.ZodOptional<z.ZodString>;
|
|
@@ -448,7 +203,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
448
203
|
promote: z.ZodOptional<z.ZodString>;
|
|
449
204
|
packageArgument: z.ZodOptional<z.ZodString>;
|
|
450
205
|
cleanNodeModules: z.ZodOptional<z.ZodBoolean>;
|
|
451
|
-
externals: z.ZodOptional<z.ZodArray<z.ZodString
|
|
206
|
+
externals: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
452
207
|
fix: z.ZodOptional<z.ZodBoolean>;
|
|
453
208
|
parallel: z.ZodOptional<z.ZodBoolean>;
|
|
454
209
|
maxConcurrency: z.ZodOptional<z.ZodNumber>;
|
|
@@ -457,48 +212,27 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
457
212
|
initialDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
458
213
|
maxDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
459
214
|
backoffMultiplier: z.ZodOptional<z.ZodNumber>;
|
|
460
|
-
retriableErrors: z.ZodOptional<z.ZodArray<z.ZodString
|
|
461
|
-
},
|
|
462
|
-
maxAttempts?: number | undefined;
|
|
463
|
-
initialDelayMs?: number | undefined;
|
|
464
|
-
maxDelayMs?: number | undefined;
|
|
465
|
-
backoffMultiplier?: number | undefined;
|
|
466
|
-
retriableErrors?: string[] | undefined;
|
|
467
|
-
}, {
|
|
468
|
-
maxAttempts?: number | undefined;
|
|
469
|
-
initialDelayMs?: number | undefined;
|
|
470
|
-
maxDelayMs?: number | undefined;
|
|
471
|
-
backoffMultiplier?: number | undefined;
|
|
472
|
-
retriableErrors?: string[] | undefined;
|
|
473
|
-
}>>;
|
|
215
|
+
retriableErrors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
216
|
+
}, z.core.$strip>>;
|
|
474
217
|
recovery: z.ZodOptional<z.ZodObject<{
|
|
475
|
-
checkpointInterval: z.ZodOptional<z.ZodEnum<
|
|
218
|
+
checkpointInterval: z.ZodOptional<z.ZodEnum<{
|
|
219
|
+
package: "package";
|
|
220
|
+
batch: "batch";
|
|
221
|
+
}>>;
|
|
476
222
|
autoRetry: z.ZodOptional<z.ZodBoolean>;
|
|
477
223
|
continueOnError: z.ZodOptional<z.ZodBoolean>;
|
|
478
|
-
},
|
|
479
|
-
checkpointInterval?: "package" | "batch" | undefined;
|
|
480
|
-
autoRetry?: boolean | undefined;
|
|
481
|
-
continueOnError?: boolean | undefined;
|
|
482
|
-
}, {
|
|
483
|
-
checkpointInterval?: "package" | "batch" | undefined;
|
|
484
|
-
autoRetry?: boolean | undefined;
|
|
485
|
-
continueOnError?: boolean | undefined;
|
|
486
|
-
}>>;
|
|
224
|
+
}, z.core.$strip>>;
|
|
487
225
|
monitoring: z.ZodOptional<z.ZodObject<{
|
|
488
226
|
showProgress: z.ZodOptional<z.ZodBoolean>;
|
|
489
227
|
showMetrics: z.ZodOptional<z.ZodBoolean>;
|
|
490
|
-
logLevel: z.ZodOptional<z.ZodEnum<
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
},
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
logLevel?: "verbose" | "minimal" | "normal" | undefined;
|
|
499
|
-
}>>;
|
|
500
|
-
markCompleted: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
501
|
-
skipPackages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
228
|
+
logLevel: z.ZodOptional<z.ZodEnum<{
|
|
229
|
+
verbose: "verbose";
|
|
230
|
+
minimal: "minimal";
|
|
231
|
+
normal: "normal";
|
|
232
|
+
}>>;
|
|
233
|
+
}, z.core.$strip>>;
|
|
234
|
+
markCompleted: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
235
|
+
skipPackages: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
502
236
|
retryFailed: z.ZodOptional<z.ZodBoolean>;
|
|
503
237
|
skipFailed: z.ZodOptional<z.ZodBoolean>;
|
|
504
238
|
resetPackage: z.ZodOptional<z.ZodString>;
|
|
@@ -506,698 +240,58 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
506
240
|
auditBranches: z.ZodOptional<z.ZodBoolean>;
|
|
507
241
|
validateState: z.ZodOptional<z.ZodBoolean>;
|
|
508
242
|
order: z.ZodOptional<z.ZodBoolean>;
|
|
509
|
-
},
|
|
510
|
-
status?: boolean | undefined;
|
|
511
|
-
fix?: boolean | undefined;
|
|
512
|
-
packageArgument?: string | undefined;
|
|
513
|
-
externals?: string[] | undefined;
|
|
514
|
-
cleanNodeModules?: boolean | undefined;
|
|
515
|
-
directories?: string[] | undefined;
|
|
516
|
-
exclude?: string[] | undefined;
|
|
517
|
-
startFrom?: string | undefined;
|
|
518
|
-
stopAt?: string | undefined;
|
|
519
|
-
cmd?: string | undefined;
|
|
520
|
-
builtInCommand?: string | undefined;
|
|
521
|
-
continue?: boolean | undefined;
|
|
522
|
-
promote?: string | undefined;
|
|
523
|
-
parallel?: boolean | undefined;
|
|
524
|
-
maxConcurrency?: number | undefined;
|
|
525
|
-
retry?: {
|
|
526
|
-
maxAttempts?: number | undefined;
|
|
527
|
-
initialDelayMs?: number | undefined;
|
|
528
|
-
maxDelayMs?: number | undefined;
|
|
529
|
-
backoffMultiplier?: number | undefined;
|
|
530
|
-
retriableErrors?: string[] | undefined;
|
|
531
|
-
} | undefined;
|
|
532
|
-
recovery?: {
|
|
533
|
-
checkpointInterval?: "package" | "batch" | undefined;
|
|
534
|
-
autoRetry?: boolean | undefined;
|
|
535
|
-
continueOnError?: boolean | undefined;
|
|
536
|
-
} | undefined;
|
|
537
|
-
monitoring?: {
|
|
538
|
-
showProgress?: boolean | undefined;
|
|
539
|
-
showMetrics?: boolean | undefined;
|
|
540
|
-
logLevel?: "verbose" | "minimal" | "normal" | undefined;
|
|
541
|
-
} | undefined;
|
|
542
|
-
markCompleted?: string[] | undefined;
|
|
543
|
-
skipPackages?: string[] | undefined;
|
|
544
|
-
retryFailed?: boolean | undefined;
|
|
545
|
-
skipFailed?: boolean | undefined;
|
|
546
|
-
resetPackage?: string | undefined;
|
|
547
|
-
statusParallel?: boolean | undefined;
|
|
548
|
-
auditBranches?: boolean | undefined;
|
|
549
|
-
validateState?: boolean | undefined;
|
|
550
|
-
order?: boolean | undefined;
|
|
551
|
-
}, {
|
|
552
|
-
status?: boolean | undefined;
|
|
553
|
-
fix?: boolean | undefined;
|
|
554
|
-
packageArgument?: string | undefined;
|
|
555
|
-
externals?: string[] | undefined;
|
|
556
|
-
cleanNodeModules?: boolean | undefined;
|
|
557
|
-
directories?: string[] | undefined;
|
|
558
|
-
exclude?: string[] | undefined;
|
|
559
|
-
startFrom?: string | undefined;
|
|
560
|
-
stopAt?: string | undefined;
|
|
561
|
-
cmd?: string | undefined;
|
|
562
|
-
builtInCommand?: string | undefined;
|
|
563
|
-
continue?: boolean | undefined;
|
|
564
|
-
promote?: string | undefined;
|
|
565
|
-
parallel?: boolean | undefined;
|
|
566
|
-
maxConcurrency?: number | undefined;
|
|
567
|
-
retry?: {
|
|
568
|
-
maxAttempts?: number | undefined;
|
|
569
|
-
initialDelayMs?: number | undefined;
|
|
570
|
-
maxDelayMs?: number | undefined;
|
|
571
|
-
backoffMultiplier?: number | undefined;
|
|
572
|
-
retriableErrors?: string[] | undefined;
|
|
573
|
-
} | undefined;
|
|
574
|
-
recovery?: {
|
|
575
|
-
checkpointInterval?: "package" | "batch" | undefined;
|
|
576
|
-
autoRetry?: boolean | undefined;
|
|
577
|
-
continueOnError?: boolean | undefined;
|
|
578
|
-
} | undefined;
|
|
579
|
-
monitoring?: {
|
|
580
|
-
showProgress?: boolean | undefined;
|
|
581
|
-
showMetrics?: boolean | undefined;
|
|
582
|
-
logLevel?: "verbose" | "minimal" | "normal" | undefined;
|
|
583
|
-
} | undefined;
|
|
584
|
-
markCompleted?: string[] | undefined;
|
|
585
|
-
skipPackages?: string[] | undefined;
|
|
586
|
-
retryFailed?: boolean | undefined;
|
|
587
|
-
skipFailed?: boolean | undefined;
|
|
588
|
-
resetPackage?: string | undefined;
|
|
589
|
-
statusParallel?: boolean | undefined;
|
|
590
|
-
auditBranches?: boolean | undefined;
|
|
591
|
-
validateState?: boolean | undefined;
|
|
592
|
-
order?: boolean | undefined;
|
|
593
|
-
}>>;
|
|
243
|
+
}, z.core.$strip>>;
|
|
594
244
|
development: z.ZodOptional<z.ZodObject<{
|
|
595
245
|
targetVersion: z.ZodOptional<z.ZodString>;
|
|
596
246
|
noMilestones: z.ZodOptional<z.ZodBoolean>;
|
|
597
247
|
tagWorkingBranch: z.ZodOptional<z.ZodBoolean>;
|
|
598
248
|
createRetroactiveTags: z.ZodOptional<z.ZodBoolean>;
|
|
599
249
|
workingTagPrefix: z.ZodOptional<z.ZodString>;
|
|
600
|
-
},
|
|
601
|
-
noMilestones?: boolean | undefined;
|
|
602
|
-
targetVersion?: string | undefined;
|
|
603
|
-
tagWorkingBranch?: boolean | undefined;
|
|
604
|
-
createRetroactiveTags?: boolean | undefined;
|
|
605
|
-
workingTagPrefix?: string | undefined;
|
|
606
|
-
}, {
|
|
607
|
-
noMilestones?: boolean | undefined;
|
|
608
|
-
targetVersion?: string | undefined;
|
|
609
|
-
tagWorkingBranch?: boolean | undefined;
|
|
610
|
-
createRetroactiveTags?: boolean | undefined;
|
|
611
|
-
workingTagPrefix?: string | undefined;
|
|
612
|
-
}>>;
|
|
250
|
+
}, z.core.$strip>>;
|
|
613
251
|
versions: z.ZodOptional<z.ZodObject<{
|
|
614
252
|
subcommand: z.ZodOptional<z.ZodString>;
|
|
615
|
-
directories: z.ZodOptional<z.ZodArray<z.ZodString
|
|
616
|
-
},
|
|
617
|
-
directories?: string[] | undefined;
|
|
618
|
-
subcommand?: string | undefined;
|
|
619
|
-
}, {
|
|
620
|
-
directories?: string[] | undefined;
|
|
621
|
-
subcommand?: string | undefined;
|
|
622
|
-
}>>;
|
|
253
|
+
directories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
254
|
+
}, z.core.$strip>>;
|
|
623
255
|
updates: z.ZodOptional<z.ZodObject<{
|
|
624
256
|
scope: z.ZodOptional<z.ZodString>;
|
|
625
|
-
scopes: z.ZodOptional<z.ZodArray<z.ZodString
|
|
626
|
-
directories: z.ZodOptional<z.ZodArray<z.ZodString
|
|
257
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
258
|
+
directories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
627
259
|
interProject: z.ZodOptional<z.ZodBoolean>;
|
|
628
260
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
629
261
|
analyze: z.ZodOptional<z.ZodBoolean>;
|
|
630
|
-
strategy: z.ZodOptional<z.ZodEnum<
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
report?: boolean | undefined;
|
|
637
|
-
analyze?: boolean | undefined;
|
|
638
|
-
strategy?: "latest" | "conservative" | "compatible" | undefined;
|
|
639
|
-
}, {
|
|
640
|
-
directories?: string[] | undefined;
|
|
641
|
-
scope?: string | undefined;
|
|
642
|
-
scopes?: string[] | undefined;
|
|
643
|
-
interProject?: boolean | undefined;
|
|
644
|
-
report?: boolean | undefined;
|
|
645
|
-
analyze?: boolean | undefined;
|
|
646
|
-
strategy?: "latest" | "conservative" | "compatible" | undefined;
|
|
647
|
-
}>>;
|
|
262
|
+
strategy: z.ZodOptional<z.ZodEnum<{
|
|
263
|
+
latest: "latest";
|
|
264
|
+
conservative: "conservative";
|
|
265
|
+
compatible: "compatible";
|
|
266
|
+
}>>;
|
|
267
|
+
}, z.core.$strip>>;
|
|
648
268
|
pull: z.ZodOptional<z.ZodObject<{
|
|
649
269
|
remote: z.ZodOptional<z.ZodString>;
|
|
650
270
|
branch: z.ZodOptional<z.ZodString>;
|
|
651
271
|
autoStash: z.ZodOptional<z.ZodBoolean>;
|
|
652
272
|
autoResolve: z.ZodOptional<z.ZodBoolean>;
|
|
653
|
-
},
|
|
654
|
-
|
|
655
|
-
branch?: string | undefined;
|
|
656
|
-
autoStash?: boolean | undefined;
|
|
657
|
-
autoResolve?: boolean | undefined;
|
|
658
|
-
}, {
|
|
659
|
-
remote?: string | undefined;
|
|
660
|
-
branch?: string | undefined;
|
|
661
|
-
autoStash?: boolean | undefined;
|
|
662
|
-
autoResolve?: boolean | undefined;
|
|
663
|
-
}>>;
|
|
664
|
-
excludedPatterns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
273
|
+
}, z.core.$strip>>;
|
|
274
|
+
excludedPatterns: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
665
275
|
traits: z.ZodOptional<z.ZodAny>;
|
|
666
276
|
stopContext: z.ZodOptional<z.ZodObject<{
|
|
667
277
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
668
|
-
strings: z.ZodOptional<z.ZodArray<z.ZodString
|
|
278
|
+
strings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
669
279
|
patterns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
670
280
|
regex: z.ZodString;
|
|
671
281
|
flags: z.ZodOptional<z.ZodString>;
|
|
672
282
|
description: z.ZodOptional<z.ZodString>;
|
|
673
|
-
},
|
|
674
|
-
regex: string;
|
|
675
|
-
flags?: string | undefined;
|
|
676
|
-
description?: string | undefined;
|
|
677
|
-
}, {
|
|
678
|
-
regex: string;
|
|
679
|
-
flags?: string | undefined;
|
|
680
|
-
description?: string | undefined;
|
|
681
|
-
}>, "many">>;
|
|
283
|
+
}, z.core.$strip>>>;
|
|
682
284
|
caseSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
683
285
|
replacement: z.ZodOptional<z.ZodString>;
|
|
684
286
|
warnOnFilter: z.ZodOptional<z.ZodBoolean>;
|
|
685
|
-
},
|
|
686
|
-
|
|
687
|
-
strings?: string[] | undefined;
|
|
688
|
-
patterns?: {
|
|
689
|
-
regex: string;
|
|
690
|
-
flags?: string | undefined;
|
|
691
|
-
description?: string | undefined;
|
|
692
|
-
}[] | undefined;
|
|
693
|
-
caseSensitive?: boolean | undefined;
|
|
694
|
-
replacement?: string | undefined;
|
|
695
|
-
warnOnFilter?: boolean | undefined;
|
|
696
|
-
}, {
|
|
697
|
-
enabled?: boolean | undefined;
|
|
698
|
-
strings?: string[] | undefined;
|
|
699
|
-
patterns?: {
|
|
700
|
-
regex: string;
|
|
701
|
-
flags?: string | undefined;
|
|
702
|
-
description?: string | undefined;
|
|
703
|
-
}[] | undefined;
|
|
704
|
-
caseSensitive?: boolean | undefined;
|
|
705
|
-
replacement?: string | undefined;
|
|
706
|
-
warnOnFilter?: boolean | undefined;
|
|
707
|
-
}>>;
|
|
708
|
-
}, "strip", z.ZodTypeAny, {
|
|
709
|
-
dryRun?: boolean | undefined;
|
|
710
|
-
verbose?: boolean | undefined;
|
|
711
|
-
debug?: boolean | undefined;
|
|
712
|
-
overrides?: boolean | undefined;
|
|
713
|
-
model?: string | undefined;
|
|
714
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
715
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
716
|
-
contextDirectories?: string[] | undefined;
|
|
717
|
-
outputDirectory?: string | undefined;
|
|
718
|
-
preferencesDirectory?: string | undefined;
|
|
719
|
-
commit?: {
|
|
720
|
-
model?: string | undefined;
|
|
721
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
722
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
723
|
-
push?: string | boolean | undefined;
|
|
724
|
-
add?: boolean | undefined;
|
|
725
|
-
cached?: boolean | undefined;
|
|
726
|
-
sendit?: boolean | undefined;
|
|
727
|
-
interactive?: boolean | undefined;
|
|
728
|
-
amend?: boolean | undefined;
|
|
729
|
-
messageLimit?: number | undefined;
|
|
730
|
-
context?: string | undefined;
|
|
731
|
-
contextFiles?: string[] | undefined;
|
|
732
|
-
direction?: string | undefined;
|
|
733
|
-
skipFileCheck?: boolean | undefined;
|
|
734
|
-
maxDiffBytes?: number | undefined;
|
|
735
|
-
maxAgenticIterations?: number | undefined;
|
|
736
|
-
allowCommitSplitting?: boolean | undefined;
|
|
737
|
-
autoSplit?: boolean | undefined;
|
|
738
|
-
toolTimeout?: number | undefined;
|
|
739
|
-
selfReflection?: boolean | undefined;
|
|
740
|
-
} | undefined;
|
|
741
|
-
audioCommit?: {
|
|
742
|
-
model?: string | undefined;
|
|
743
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
744
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
745
|
-
maxRecordingTime?: number | undefined;
|
|
746
|
-
audioDevice?: string | undefined;
|
|
747
|
-
file?: string | undefined;
|
|
748
|
-
keepTemp?: boolean | undefined;
|
|
749
|
-
} | undefined;
|
|
750
|
-
release?: {
|
|
751
|
-
model?: string | undefined;
|
|
752
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
753
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
754
|
-
interactive?: boolean | undefined;
|
|
755
|
-
messageLimit?: number | undefined;
|
|
756
|
-
context?: string | undefined;
|
|
757
|
-
contextFiles?: string[] | undefined;
|
|
758
|
-
maxDiffBytes?: number | undefined;
|
|
759
|
-
maxAgenticIterations?: number | undefined;
|
|
760
|
-
selfReflection?: boolean | undefined;
|
|
761
|
-
from?: string | undefined;
|
|
762
|
-
to?: string | undefined;
|
|
763
|
-
focus?: string | undefined;
|
|
764
|
-
noMilestones?: boolean | undefined;
|
|
765
|
-
fromMain?: boolean | undefined;
|
|
766
|
-
currentBranch?: string | undefined;
|
|
767
|
-
version?: string | undefined;
|
|
768
|
-
} | undefined;
|
|
769
|
-
review?: {
|
|
770
|
-
model?: string | undefined;
|
|
771
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
772
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
773
|
-
sendit?: boolean | undefined;
|
|
774
|
-
context?: string | undefined;
|
|
775
|
-
file?: string | undefined;
|
|
776
|
-
includeCommitHistory?: boolean | undefined;
|
|
777
|
-
includeRecentDiffs?: boolean | undefined;
|
|
778
|
-
includeReleaseNotes?: boolean | undefined;
|
|
779
|
-
includeGithubIssues?: boolean | undefined;
|
|
780
|
-
commitHistoryLimit?: number | undefined;
|
|
781
|
-
diffHistoryLimit?: number | undefined;
|
|
782
|
-
releaseNotesLimit?: number | undefined;
|
|
783
|
-
githubIssuesLimit?: number | undefined;
|
|
784
|
-
note?: string | undefined;
|
|
785
|
-
editorTimeout?: number | undefined;
|
|
786
|
-
maxContextErrors?: number | undefined;
|
|
787
|
-
directory?: string | undefined;
|
|
788
|
-
} | undefined;
|
|
789
|
-
audioReview?: {
|
|
790
|
-
model?: string | undefined;
|
|
791
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
792
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
793
|
-
sendit?: boolean | undefined;
|
|
794
|
-
context?: string | undefined;
|
|
795
|
-
maxRecordingTime?: number | undefined;
|
|
796
|
-
audioDevice?: string | undefined;
|
|
797
|
-
file?: string | undefined;
|
|
798
|
-
keepTemp?: boolean | undefined;
|
|
799
|
-
includeCommitHistory?: boolean | undefined;
|
|
800
|
-
includeRecentDiffs?: boolean | undefined;
|
|
801
|
-
includeReleaseNotes?: boolean | undefined;
|
|
802
|
-
includeGithubIssues?: boolean | undefined;
|
|
803
|
-
commitHistoryLimit?: number | undefined;
|
|
804
|
-
diffHistoryLimit?: number | undefined;
|
|
805
|
-
releaseNotesLimit?: number | undefined;
|
|
806
|
-
githubIssuesLimit?: number | undefined;
|
|
807
|
-
directory?: string | undefined;
|
|
808
|
-
} | undefined;
|
|
809
|
-
precommit?: {
|
|
810
|
-
fix?: boolean | undefined;
|
|
811
|
-
} | undefined;
|
|
812
|
-
publish?: {
|
|
813
|
-
sendit?: boolean | undefined;
|
|
814
|
-
interactive?: boolean | undefined;
|
|
815
|
-
from?: string | undefined;
|
|
816
|
-
noMilestones?: boolean | undefined;
|
|
817
|
-
fromMain?: boolean | undefined;
|
|
818
|
-
mergeMethod?: "merge" | "squash" | "rebase" | undefined;
|
|
819
|
-
targetVersion?: string | undefined;
|
|
820
|
-
skipAlreadyPublished?: boolean | undefined;
|
|
821
|
-
forceRepublish?: boolean | undefined;
|
|
822
|
-
dependencyUpdatePatterns?: string[] | undefined;
|
|
823
|
-
scopedDependencyUpdates?: string[] | undefined;
|
|
824
|
-
requiredEnvVars?: string[] | undefined;
|
|
825
|
-
linkWorkspacePackages?: boolean | undefined;
|
|
826
|
-
unlinkWorkspacePackages?: boolean | undefined;
|
|
827
|
-
checksTimeout?: number | undefined;
|
|
828
|
-
skipUserConfirmation?: boolean | undefined;
|
|
829
|
-
syncTarget?: boolean | undefined;
|
|
830
|
-
waitForReleaseWorkflows?: boolean | undefined;
|
|
831
|
-
releaseWorkflowsTimeout?: number | undefined;
|
|
832
|
-
releaseWorkflowNames?: string[] | undefined;
|
|
833
|
-
targetBranch?: string | undefined;
|
|
834
|
-
skipPrePublishMerge?: boolean | undefined;
|
|
835
|
-
updateDeps?: string | undefined;
|
|
836
|
-
agenticPublish?: boolean | undefined;
|
|
837
|
-
agenticPublishMaxIterations?: number | undefined;
|
|
838
|
-
skipLinkCleanup?: boolean | undefined;
|
|
839
|
-
} | undefined;
|
|
840
|
-
branches?: Record<string, {
|
|
841
|
-
version?: {
|
|
842
|
-
type: "release" | "prerelease";
|
|
843
|
-
increment?: boolean | undefined;
|
|
844
|
-
incrementLevel?: "patch" | "minor" | "major" | undefined;
|
|
845
|
-
tag?: string | undefined;
|
|
846
|
-
} | undefined;
|
|
847
|
-
targetBranch?: string | undefined;
|
|
848
|
-
developmentBranch?: boolean | undefined;
|
|
849
|
-
}> | undefined;
|
|
850
|
-
link?: {
|
|
851
|
-
dryRun?: boolean | undefined;
|
|
852
|
-
scopeRoots?: Record<string, string> | undefined;
|
|
853
|
-
packageArgument?: string | undefined;
|
|
854
|
-
externals?: string[] | undefined;
|
|
855
|
-
} | undefined;
|
|
856
|
-
unlink?: {
|
|
857
|
-
dryRun?: boolean | undefined;
|
|
858
|
-
scopeRoots?: Record<string, string> | undefined;
|
|
859
|
-
packageArgument?: string | undefined;
|
|
860
|
-
externals?: string[] | undefined;
|
|
861
|
-
workspaceFile?: string | undefined;
|
|
862
|
-
cleanNodeModules?: boolean | undefined;
|
|
863
|
-
} | undefined;
|
|
864
|
-
tree?: {
|
|
865
|
-
status?: boolean | undefined;
|
|
866
|
-
fix?: boolean | undefined;
|
|
867
|
-
packageArgument?: string | undefined;
|
|
868
|
-
externals?: string[] | undefined;
|
|
869
|
-
cleanNodeModules?: boolean | undefined;
|
|
870
|
-
directories?: string[] | undefined;
|
|
871
|
-
exclude?: string[] | undefined;
|
|
872
|
-
startFrom?: string | undefined;
|
|
873
|
-
stopAt?: string | undefined;
|
|
874
|
-
cmd?: string | undefined;
|
|
875
|
-
builtInCommand?: string | undefined;
|
|
876
|
-
continue?: boolean | undefined;
|
|
877
|
-
promote?: string | undefined;
|
|
878
|
-
parallel?: boolean | undefined;
|
|
879
|
-
maxConcurrency?: number | undefined;
|
|
880
|
-
retry?: {
|
|
881
|
-
maxAttempts?: number | undefined;
|
|
882
|
-
initialDelayMs?: number | undefined;
|
|
883
|
-
maxDelayMs?: number | undefined;
|
|
884
|
-
backoffMultiplier?: number | undefined;
|
|
885
|
-
retriableErrors?: string[] | undefined;
|
|
886
|
-
} | undefined;
|
|
887
|
-
recovery?: {
|
|
888
|
-
checkpointInterval?: "package" | "batch" | undefined;
|
|
889
|
-
autoRetry?: boolean | undefined;
|
|
890
|
-
continueOnError?: boolean | undefined;
|
|
891
|
-
} | undefined;
|
|
892
|
-
monitoring?: {
|
|
893
|
-
showProgress?: boolean | undefined;
|
|
894
|
-
showMetrics?: boolean | undefined;
|
|
895
|
-
logLevel?: "verbose" | "minimal" | "normal" | undefined;
|
|
896
|
-
} | undefined;
|
|
897
|
-
markCompleted?: string[] | undefined;
|
|
898
|
-
skipPackages?: string[] | undefined;
|
|
899
|
-
retryFailed?: boolean | undefined;
|
|
900
|
-
skipFailed?: boolean | undefined;
|
|
901
|
-
resetPackage?: string | undefined;
|
|
902
|
-
statusParallel?: boolean | undefined;
|
|
903
|
-
auditBranches?: boolean | undefined;
|
|
904
|
-
validateState?: boolean | undefined;
|
|
905
|
-
order?: boolean | undefined;
|
|
906
|
-
} | undefined;
|
|
907
|
-
development?: {
|
|
908
|
-
noMilestones?: boolean | undefined;
|
|
909
|
-
targetVersion?: string | undefined;
|
|
910
|
-
tagWorkingBranch?: boolean | undefined;
|
|
911
|
-
createRetroactiveTags?: boolean | undefined;
|
|
912
|
-
workingTagPrefix?: string | undefined;
|
|
913
|
-
} | undefined;
|
|
914
|
-
versions?: {
|
|
915
|
-
directories?: string[] | undefined;
|
|
916
|
-
subcommand?: string | undefined;
|
|
917
|
-
} | undefined;
|
|
918
|
-
updates?: {
|
|
919
|
-
directories?: string[] | undefined;
|
|
920
|
-
scope?: string | undefined;
|
|
921
|
-
scopes?: string[] | undefined;
|
|
922
|
-
interProject?: boolean | undefined;
|
|
923
|
-
report?: boolean | undefined;
|
|
924
|
-
analyze?: boolean | undefined;
|
|
925
|
-
strategy?: "latest" | "conservative" | "compatible" | undefined;
|
|
926
|
-
} | undefined;
|
|
927
|
-
pull?: {
|
|
928
|
-
remote?: string | undefined;
|
|
929
|
-
branch?: string | undefined;
|
|
930
|
-
autoStash?: boolean | undefined;
|
|
931
|
-
autoResolve?: boolean | undefined;
|
|
932
|
-
} | undefined;
|
|
933
|
-
excludedPatterns?: string[] | undefined;
|
|
934
|
-
traits?: any;
|
|
935
|
-
stopContext?: {
|
|
936
|
-
enabled?: boolean | undefined;
|
|
937
|
-
strings?: string[] | undefined;
|
|
938
|
-
patterns?: {
|
|
939
|
-
regex: string;
|
|
940
|
-
flags?: string | undefined;
|
|
941
|
-
description?: string | undefined;
|
|
942
|
-
}[] | undefined;
|
|
943
|
-
caseSensitive?: boolean | undefined;
|
|
944
|
-
replacement?: string | undefined;
|
|
945
|
-
warnOnFilter?: boolean | undefined;
|
|
946
|
-
} | undefined;
|
|
947
|
-
}, {
|
|
948
|
-
dryRun?: boolean | undefined;
|
|
949
|
-
verbose?: boolean | undefined;
|
|
950
|
-
debug?: boolean | undefined;
|
|
951
|
-
overrides?: boolean | undefined;
|
|
952
|
-
model?: string | undefined;
|
|
953
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
954
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
955
|
-
contextDirectories?: string[] | undefined;
|
|
956
|
-
outputDirectory?: string | undefined;
|
|
957
|
-
preferencesDirectory?: string | undefined;
|
|
958
|
-
commit?: {
|
|
959
|
-
model?: string | undefined;
|
|
960
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
961
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
962
|
-
push?: string | boolean | undefined;
|
|
963
|
-
add?: boolean | undefined;
|
|
964
|
-
cached?: boolean | undefined;
|
|
965
|
-
sendit?: boolean | undefined;
|
|
966
|
-
interactive?: boolean | undefined;
|
|
967
|
-
amend?: boolean | undefined;
|
|
968
|
-
messageLimit?: number | undefined;
|
|
969
|
-
context?: string | undefined;
|
|
970
|
-
contextFiles?: string[] | undefined;
|
|
971
|
-
direction?: string | undefined;
|
|
972
|
-
skipFileCheck?: boolean | undefined;
|
|
973
|
-
maxDiffBytes?: number | undefined;
|
|
974
|
-
maxAgenticIterations?: number | undefined;
|
|
975
|
-
allowCommitSplitting?: boolean | undefined;
|
|
976
|
-
autoSplit?: boolean | undefined;
|
|
977
|
-
toolTimeout?: number | undefined;
|
|
978
|
-
selfReflection?: boolean | undefined;
|
|
979
|
-
} | undefined;
|
|
980
|
-
audioCommit?: {
|
|
981
|
-
model?: string | undefined;
|
|
982
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
983
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
984
|
-
maxRecordingTime?: number | undefined;
|
|
985
|
-
audioDevice?: string | undefined;
|
|
986
|
-
file?: string | undefined;
|
|
987
|
-
keepTemp?: boolean | undefined;
|
|
988
|
-
} | undefined;
|
|
989
|
-
release?: {
|
|
990
|
-
model?: string | undefined;
|
|
991
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
992
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
993
|
-
interactive?: boolean | undefined;
|
|
994
|
-
messageLimit?: number | undefined;
|
|
995
|
-
context?: string | undefined;
|
|
996
|
-
contextFiles?: string[] | undefined;
|
|
997
|
-
maxDiffBytes?: number | undefined;
|
|
998
|
-
maxAgenticIterations?: number | undefined;
|
|
999
|
-
selfReflection?: boolean | undefined;
|
|
1000
|
-
from?: string | undefined;
|
|
1001
|
-
to?: string | undefined;
|
|
1002
|
-
focus?: string | undefined;
|
|
1003
|
-
noMilestones?: boolean | undefined;
|
|
1004
|
-
fromMain?: boolean | undefined;
|
|
1005
|
-
currentBranch?: string | undefined;
|
|
1006
|
-
version?: string | undefined;
|
|
1007
|
-
} | undefined;
|
|
1008
|
-
review?: {
|
|
1009
|
-
model?: string | undefined;
|
|
1010
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
1011
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
1012
|
-
sendit?: boolean | undefined;
|
|
1013
|
-
context?: string | undefined;
|
|
1014
|
-
file?: string | undefined;
|
|
1015
|
-
includeCommitHistory?: boolean | undefined;
|
|
1016
|
-
includeRecentDiffs?: boolean | undefined;
|
|
1017
|
-
includeReleaseNotes?: boolean | undefined;
|
|
1018
|
-
includeGithubIssues?: boolean | undefined;
|
|
1019
|
-
commitHistoryLimit?: number | undefined;
|
|
1020
|
-
diffHistoryLimit?: number | undefined;
|
|
1021
|
-
releaseNotesLimit?: number | undefined;
|
|
1022
|
-
githubIssuesLimit?: number | undefined;
|
|
1023
|
-
note?: string | undefined;
|
|
1024
|
-
editorTimeout?: number | undefined;
|
|
1025
|
-
maxContextErrors?: number | undefined;
|
|
1026
|
-
directory?: string | undefined;
|
|
1027
|
-
} | undefined;
|
|
1028
|
-
audioReview?: {
|
|
1029
|
-
model?: string | undefined;
|
|
1030
|
-
openaiReasoning?: "low" | "medium" | "high" | undefined;
|
|
1031
|
-
openaiMaxOutputTokens?: number | undefined;
|
|
1032
|
-
sendit?: boolean | undefined;
|
|
1033
|
-
context?: string | undefined;
|
|
1034
|
-
maxRecordingTime?: number | undefined;
|
|
1035
|
-
audioDevice?: string | undefined;
|
|
1036
|
-
file?: string | undefined;
|
|
1037
|
-
keepTemp?: boolean | undefined;
|
|
1038
|
-
includeCommitHistory?: boolean | undefined;
|
|
1039
|
-
includeRecentDiffs?: boolean | undefined;
|
|
1040
|
-
includeReleaseNotes?: boolean | undefined;
|
|
1041
|
-
includeGithubIssues?: boolean | undefined;
|
|
1042
|
-
commitHistoryLimit?: number | undefined;
|
|
1043
|
-
diffHistoryLimit?: number | undefined;
|
|
1044
|
-
releaseNotesLimit?: number | undefined;
|
|
1045
|
-
githubIssuesLimit?: number | undefined;
|
|
1046
|
-
directory?: string | undefined;
|
|
1047
|
-
} | undefined;
|
|
1048
|
-
precommit?: {
|
|
1049
|
-
fix?: boolean | undefined;
|
|
1050
|
-
} | undefined;
|
|
1051
|
-
publish?: {
|
|
1052
|
-
sendit?: boolean | undefined;
|
|
1053
|
-
interactive?: boolean | undefined;
|
|
1054
|
-
from?: string | undefined;
|
|
1055
|
-
noMilestones?: boolean | undefined;
|
|
1056
|
-
fromMain?: boolean | undefined;
|
|
1057
|
-
mergeMethod?: "merge" | "squash" | "rebase" | undefined;
|
|
1058
|
-
targetVersion?: string | undefined;
|
|
1059
|
-
skipAlreadyPublished?: boolean | undefined;
|
|
1060
|
-
forceRepublish?: boolean | undefined;
|
|
1061
|
-
dependencyUpdatePatterns?: string[] | undefined;
|
|
1062
|
-
scopedDependencyUpdates?: string[] | undefined;
|
|
1063
|
-
requiredEnvVars?: string[] | undefined;
|
|
1064
|
-
linkWorkspacePackages?: boolean | undefined;
|
|
1065
|
-
unlinkWorkspacePackages?: boolean | undefined;
|
|
1066
|
-
checksTimeout?: number | undefined;
|
|
1067
|
-
skipUserConfirmation?: boolean | undefined;
|
|
1068
|
-
syncTarget?: boolean | undefined;
|
|
1069
|
-
waitForReleaseWorkflows?: boolean | undefined;
|
|
1070
|
-
releaseWorkflowsTimeout?: number | undefined;
|
|
1071
|
-
releaseWorkflowNames?: string[] | undefined;
|
|
1072
|
-
targetBranch?: string | undefined;
|
|
1073
|
-
skipPrePublishMerge?: boolean | undefined;
|
|
1074
|
-
updateDeps?: string | undefined;
|
|
1075
|
-
agenticPublish?: boolean | undefined;
|
|
1076
|
-
agenticPublishMaxIterations?: number | undefined;
|
|
1077
|
-
skipLinkCleanup?: boolean | undefined;
|
|
1078
|
-
} | undefined;
|
|
1079
|
-
branches?: Record<string, {
|
|
1080
|
-
version?: {
|
|
1081
|
-
type: "release" | "prerelease";
|
|
1082
|
-
increment?: boolean | undefined;
|
|
1083
|
-
incrementLevel?: "patch" | "minor" | "major" | undefined;
|
|
1084
|
-
tag?: string | undefined;
|
|
1085
|
-
} | undefined;
|
|
1086
|
-
targetBranch?: string | undefined;
|
|
1087
|
-
developmentBranch?: boolean | undefined;
|
|
1088
|
-
}> | undefined;
|
|
1089
|
-
link?: {
|
|
1090
|
-
dryRun?: boolean | undefined;
|
|
1091
|
-
scopeRoots?: Record<string, string> | undefined;
|
|
1092
|
-
packageArgument?: string | undefined;
|
|
1093
|
-
externals?: string[] | undefined;
|
|
1094
|
-
} | undefined;
|
|
1095
|
-
unlink?: {
|
|
1096
|
-
dryRun?: boolean | undefined;
|
|
1097
|
-
scopeRoots?: Record<string, string> | undefined;
|
|
1098
|
-
packageArgument?: string | undefined;
|
|
1099
|
-
externals?: string[] | undefined;
|
|
1100
|
-
workspaceFile?: string | undefined;
|
|
1101
|
-
cleanNodeModules?: boolean | undefined;
|
|
1102
|
-
} | undefined;
|
|
1103
|
-
tree?: {
|
|
1104
|
-
status?: boolean | undefined;
|
|
1105
|
-
fix?: boolean | undefined;
|
|
1106
|
-
packageArgument?: string | undefined;
|
|
1107
|
-
externals?: string[] | undefined;
|
|
1108
|
-
cleanNodeModules?: boolean | undefined;
|
|
1109
|
-
directories?: string[] | undefined;
|
|
1110
|
-
exclude?: string[] | undefined;
|
|
1111
|
-
startFrom?: string | undefined;
|
|
1112
|
-
stopAt?: string | undefined;
|
|
1113
|
-
cmd?: string | undefined;
|
|
1114
|
-
builtInCommand?: string | undefined;
|
|
1115
|
-
continue?: boolean | undefined;
|
|
1116
|
-
promote?: string | undefined;
|
|
1117
|
-
parallel?: boolean | undefined;
|
|
1118
|
-
maxConcurrency?: number | undefined;
|
|
1119
|
-
retry?: {
|
|
1120
|
-
maxAttempts?: number | undefined;
|
|
1121
|
-
initialDelayMs?: number | undefined;
|
|
1122
|
-
maxDelayMs?: number | undefined;
|
|
1123
|
-
backoffMultiplier?: number | undefined;
|
|
1124
|
-
retriableErrors?: string[] | undefined;
|
|
1125
|
-
} | undefined;
|
|
1126
|
-
recovery?: {
|
|
1127
|
-
checkpointInterval?: "package" | "batch" | undefined;
|
|
1128
|
-
autoRetry?: boolean | undefined;
|
|
1129
|
-
continueOnError?: boolean | undefined;
|
|
1130
|
-
} | undefined;
|
|
1131
|
-
monitoring?: {
|
|
1132
|
-
showProgress?: boolean | undefined;
|
|
1133
|
-
showMetrics?: boolean | undefined;
|
|
1134
|
-
logLevel?: "verbose" | "minimal" | "normal" | undefined;
|
|
1135
|
-
} | undefined;
|
|
1136
|
-
markCompleted?: string[] | undefined;
|
|
1137
|
-
skipPackages?: string[] | undefined;
|
|
1138
|
-
retryFailed?: boolean | undefined;
|
|
1139
|
-
skipFailed?: boolean | undefined;
|
|
1140
|
-
resetPackage?: string | undefined;
|
|
1141
|
-
statusParallel?: boolean | undefined;
|
|
1142
|
-
auditBranches?: boolean | undefined;
|
|
1143
|
-
validateState?: boolean | undefined;
|
|
1144
|
-
order?: boolean | undefined;
|
|
1145
|
-
} | undefined;
|
|
1146
|
-
development?: {
|
|
1147
|
-
noMilestones?: boolean | undefined;
|
|
1148
|
-
targetVersion?: string | undefined;
|
|
1149
|
-
tagWorkingBranch?: boolean | undefined;
|
|
1150
|
-
createRetroactiveTags?: boolean | undefined;
|
|
1151
|
-
workingTagPrefix?: string | undefined;
|
|
1152
|
-
} | undefined;
|
|
1153
|
-
versions?: {
|
|
1154
|
-
directories?: string[] | undefined;
|
|
1155
|
-
subcommand?: string | undefined;
|
|
1156
|
-
} | undefined;
|
|
1157
|
-
updates?: {
|
|
1158
|
-
directories?: string[] | undefined;
|
|
1159
|
-
scope?: string | undefined;
|
|
1160
|
-
scopes?: string[] | undefined;
|
|
1161
|
-
interProject?: boolean | undefined;
|
|
1162
|
-
report?: boolean | undefined;
|
|
1163
|
-
analyze?: boolean | undefined;
|
|
1164
|
-
strategy?: "latest" | "conservative" | "compatible" | undefined;
|
|
1165
|
-
} | undefined;
|
|
1166
|
-
pull?: {
|
|
1167
|
-
remote?: string | undefined;
|
|
1168
|
-
branch?: string | undefined;
|
|
1169
|
-
autoStash?: boolean | undefined;
|
|
1170
|
-
autoResolve?: boolean | undefined;
|
|
1171
|
-
} | undefined;
|
|
1172
|
-
excludedPatterns?: string[] | undefined;
|
|
1173
|
-
traits?: any;
|
|
1174
|
-
stopContext?: {
|
|
1175
|
-
enabled?: boolean | undefined;
|
|
1176
|
-
strings?: string[] | undefined;
|
|
1177
|
-
patterns?: {
|
|
1178
|
-
regex: string;
|
|
1179
|
-
flags?: string | undefined;
|
|
1180
|
-
description?: string | undefined;
|
|
1181
|
-
}[] | undefined;
|
|
1182
|
-
caseSensitive?: boolean | undefined;
|
|
1183
|
-
replacement?: string | undefined;
|
|
1184
|
-
warnOnFilter?: boolean | undefined;
|
|
1185
|
-
} | undefined;
|
|
1186
|
-
}>;
|
|
287
|
+
}, z.core.$strip>>;
|
|
288
|
+
}, z.core.$strip>;
|
|
1187
289
|
export declare const SecureConfigSchema: z.ZodObject<{
|
|
1188
290
|
openaiApiKey: z.ZodOptional<z.ZodString>;
|
|
1189
|
-
},
|
|
1190
|
-
openaiApiKey?: string | undefined;
|
|
1191
|
-
}, {
|
|
1192
|
-
openaiApiKey?: string | undefined;
|
|
1193
|
-
}>;
|
|
291
|
+
}, z.core.$strip>;
|
|
1194
292
|
export declare const CommandConfigSchema: z.ZodObject<{
|
|
1195
293
|
commandName: z.ZodOptional<z.ZodString>;
|
|
1196
|
-
},
|
|
1197
|
-
commandName?: string | undefined;
|
|
1198
|
-
}, {
|
|
1199
|
-
commandName?: string | undefined;
|
|
1200
|
-
}>;
|
|
294
|
+
}, z.core.$strip>;
|
|
1201
295
|
export type Config = z.infer<typeof ConfigSchema> & Cardigantime.Config & {
|
|
1202
296
|
discoveredConfigDirs?: string[];
|
|
1203
297
|
};
|
package/dist/src/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,YAAY,MAAM,2BAA2B,CAAC;AAC1D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grunnverk/core",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.6",
|
|
4
4
|
"description": "Core utilities for kodrdriv command packages",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"glob": "^11.0.2",
|
|
53
53
|
"openai": "^6.15.0",
|
|
54
54
|
"winston": "^3.17.0",
|
|
55
|
-
"zod": "^3.
|
|
55
|
+
"zod": "^4.3.6"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@eslint/eslintrc": "^3.3.1",
|