@analyticscli/growth-engineer 0.1.0-preview.8 → 0.1.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/dist/config.d.ts +925 -45
- package/dist/config.js +58 -6
- package/dist/config.js.map +1 -1
- package/dist/index.js +134 -21
- package/dist/index.js.map +1 -1
- package/dist/runtime/export-asc-summary.mjs +295 -4
- package/dist/runtime/export-asc-summary.mjs.map +1 -1
- package/dist/runtime/export-coolify-summary.d.mts +2 -0
- package/dist/runtime/export-coolify-summary.mjs +230 -0
- package/dist/runtime/export-coolify-summary.mjs.map +1 -0
- package/dist/runtime/export-paddle-summary.d.mts +2 -0
- package/dist/runtime/export-paddle-summary.mjs +170 -0
- package/dist/runtime/export-paddle-summary.mjs.map +1 -0
- package/dist/runtime/export-sentry-summary.mjs +265 -38
- package/dist/runtime/export-sentry-summary.mjs.map +1 -1
- package/dist/runtime/export-seo-summary.d.mts +2 -0
- package/dist/runtime/export-seo-summary.mjs +503 -0
- package/dist/runtime/export-seo-summary.mjs.map +1 -0
- package/dist/runtime/openclaw-exporters-lib.d.mts +51 -0
- package/dist/runtime/openclaw-exporters-lib.mjs +769 -63
- package/dist/runtime/openclaw-exporters-lib.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-engineer.mjs +163 -4
- package/dist/runtime/openclaw-growth-engineer.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-env.mjs +5 -0
- package/dist/runtime/openclaw-growth-env.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-preflight.mjs +446 -30
- package/dist/runtime/openclaw-growth-preflight.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-runner.mjs +847 -150
- package/dist/runtime/openclaw-growth-runner.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-shared.d.mts +158 -3
- package/dist/runtime/openclaw-growth-shared.mjs +574 -8
- package/dist/runtime/openclaw-growth-shared.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-start.mjs +816 -41
- package/dist/runtime/openclaw-growth-start.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-status.mjs +100 -34
- package/dist/runtime/openclaw-growth-status.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-wizard.mjs +1997 -226
- package/dist/runtime/openclaw-growth-wizard.mjs.map +1 -1
- package/package.json +3 -1
- package/templates/config.example.json +128 -65
package/dist/config.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ declare const scheduleSchema: z.ZodDefault<z.ZodObject<{
|
|
|
44
44
|
cadences: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
45
45
|
key: z.ZodString;
|
|
46
46
|
title: z.ZodOptional<z.ZodString>;
|
|
47
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
47
48
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
48
49
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
49
50
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -54,6 +55,7 @@ declare const scheduleSchema: z.ZodDefault<z.ZodObject<{
|
|
|
54
55
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
55
56
|
key: z.ZodString;
|
|
56
57
|
title: z.ZodOptional<z.ZodString>;
|
|
58
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
57
59
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
58
60
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
59
61
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -64,6 +66,7 @@ declare const scheduleSchema: z.ZodDefault<z.ZodObject<{
|
|
|
64
66
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
65
67
|
key: z.ZodString;
|
|
66
68
|
title: z.ZodOptional<z.ZodString>;
|
|
69
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
67
70
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
68
71
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
69
72
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -80,6 +83,7 @@ declare const scheduleSchema: z.ZodDefault<z.ZodObject<{
|
|
|
80
83
|
cadences?: z.objectOutputType<{
|
|
81
84
|
key: z.ZodString;
|
|
82
85
|
title: z.ZodOptional<z.ZodString>;
|
|
86
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
83
87
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
84
88
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
85
89
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -96,6 +100,7 @@ declare const scheduleSchema: z.ZodDefault<z.ZodObject<{
|
|
|
96
100
|
cadences?: z.objectInputType<{
|
|
97
101
|
key: z.ZodString;
|
|
98
102
|
title: z.ZodOptional<z.ZodString>;
|
|
103
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
99
104
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
100
105
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
101
106
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -155,6 +160,62 @@ declare const secretsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
155
160
|
provider: z.ZodDefault<z.ZodString>;
|
|
156
161
|
id: z.ZodString;
|
|
157
162
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
163
|
+
paddleTokenEnv: z.ZodDefault<z.ZodString>;
|
|
164
|
+
paddleTokenRef: z.ZodOptional<z.ZodObject<{
|
|
165
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
166
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
167
|
+
id: z.ZodString;
|
|
168
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
169
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
170
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
171
|
+
id: z.ZodString;
|
|
172
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
173
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
174
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
175
|
+
id: z.ZodString;
|
|
176
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
177
|
+
gscTokenEnv: z.ZodDefault<z.ZodString>;
|
|
178
|
+
gscTokenRef: z.ZodOptional<z.ZodObject<{
|
|
179
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
180
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
181
|
+
id: z.ZodString;
|
|
182
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
183
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
184
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
185
|
+
id: z.ZodString;
|
|
186
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
187
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
188
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
189
|
+
id: z.ZodString;
|
|
190
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
191
|
+
dataforseoLoginEnv: z.ZodDefault<z.ZodString>;
|
|
192
|
+
dataforseoLoginRef: z.ZodOptional<z.ZodObject<{
|
|
193
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
194
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
195
|
+
id: z.ZodString;
|
|
196
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
197
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
198
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
199
|
+
id: z.ZodString;
|
|
200
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
201
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
202
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
203
|
+
id: z.ZodString;
|
|
204
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
205
|
+
dataforseoPasswordEnv: z.ZodDefault<z.ZodString>;
|
|
206
|
+
dataforseoPasswordRef: z.ZodOptional<z.ZodObject<{
|
|
207
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
208
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
209
|
+
id: z.ZodString;
|
|
210
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
211
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
212
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
213
|
+
id: z.ZodString;
|
|
214
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
215
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
216
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
217
|
+
id: z.ZodString;
|
|
218
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
158
219
|
sentryTokenEnv: z.ZodDefault<z.ZodString>;
|
|
159
220
|
sentryTokenRef: z.ZodOptional<z.ZodObject<{
|
|
160
221
|
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
@@ -169,6 +230,20 @@ declare const secretsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
169
230
|
provider: z.ZodDefault<z.ZodString>;
|
|
170
231
|
id: z.ZodString;
|
|
171
232
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
233
|
+
coolifyTokenEnv: z.ZodDefault<z.ZodString>;
|
|
234
|
+
coolifyTokenRef: z.ZodOptional<z.ZodObject<{
|
|
235
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
236
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
237
|
+
id: z.ZodString;
|
|
238
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
239
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
240
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
241
|
+
id: z.ZodString;
|
|
242
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
243
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
244
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
245
|
+
id: z.ZodString;
|
|
246
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
172
247
|
}, "strip", z.ZodTypeAny, {
|
|
173
248
|
githubTokenEnv?: string;
|
|
174
249
|
githubTokenRef?: {
|
|
@@ -194,6 +269,38 @@ declare const secretsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
194
269
|
} & {
|
|
195
270
|
[k: string]: unknown;
|
|
196
271
|
};
|
|
272
|
+
paddleTokenEnv?: string;
|
|
273
|
+
paddleTokenRef?: {
|
|
274
|
+
source?: "file" | "env" | "exec";
|
|
275
|
+
provider?: string;
|
|
276
|
+
id?: string;
|
|
277
|
+
} & {
|
|
278
|
+
[k: string]: unknown;
|
|
279
|
+
};
|
|
280
|
+
gscTokenEnv?: string;
|
|
281
|
+
gscTokenRef?: {
|
|
282
|
+
source?: "file" | "env" | "exec";
|
|
283
|
+
provider?: string;
|
|
284
|
+
id?: string;
|
|
285
|
+
} & {
|
|
286
|
+
[k: string]: unknown;
|
|
287
|
+
};
|
|
288
|
+
dataforseoLoginEnv?: string;
|
|
289
|
+
dataforseoLoginRef?: {
|
|
290
|
+
source?: "file" | "env" | "exec";
|
|
291
|
+
provider?: string;
|
|
292
|
+
id?: string;
|
|
293
|
+
} & {
|
|
294
|
+
[k: string]: unknown;
|
|
295
|
+
};
|
|
296
|
+
dataforseoPasswordEnv?: string;
|
|
297
|
+
dataforseoPasswordRef?: {
|
|
298
|
+
source?: "file" | "env" | "exec";
|
|
299
|
+
provider?: string;
|
|
300
|
+
id?: string;
|
|
301
|
+
} & {
|
|
302
|
+
[k: string]: unknown;
|
|
303
|
+
};
|
|
197
304
|
sentryTokenEnv?: string;
|
|
198
305
|
sentryTokenRef?: {
|
|
199
306
|
source?: "file" | "env" | "exec";
|
|
@@ -202,6 +309,14 @@ declare const secretsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
202
309
|
} & {
|
|
203
310
|
[k: string]: unknown;
|
|
204
311
|
};
|
|
312
|
+
coolifyTokenEnv?: string;
|
|
313
|
+
coolifyTokenRef?: {
|
|
314
|
+
source?: "file" | "env" | "exec";
|
|
315
|
+
provider?: string;
|
|
316
|
+
id?: string;
|
|
317
|
+
} & {
|
|
318
|
+
[k: string]: unknown;
|
|
319
|
+
};
|
|
205
320
|
}, {
|
|
206
321
|
githubTokenEnv?: string;
|
|
207
322
|
githubTokenRef?: {
|
|
@@ -227,6 +342,38 @@ declare const secretsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
227
342
|
} & {
|
|
228
343
|
[k: string]: unknown;
|
|
229
344
|
};
|
|
345
|
+
paddleTokenEnv?: string;
|
|
346
|
+
paddleTokenRef?: {
|
|
347
|
+
source?: "file" | "env" | "exec";
|
|
348
|
+
provider?: string;
|
|
349
|
+
id?: string;
|
|
350
|
+
} & {
|
|
351
|
+
[k: string]: unknown;
|
|
352
|
+
};
|
|
353
|
+
gscTokenEnv?: string;
|
|
354
|
+
gscTokenRef?: {
|
|
355
|
+
source?: "file" | "env" | "exec";
|
|
356
|
+
provider?: string;
|
|
357
|
+
id?: string;
|
|
358
|
+
} & {
|
|
359
|
+
[k: string]: unknown;
|
|
360
|
+
};
|
|
361
|
+
dataforseoLoginEnv?: string;
|
|
362
|
+
dataforseoLoginRef?: {
|
|
363
|
+
source?: "file" | "env" | "exec";
|
|
364
|
+
provider?: string;
|
|
365
|
+
id?: string;
|
|
366
|
+
} & {
|
|
367
|
+
[k: string]: unknown;
|
|
368
|
+
};
|
|
369
|
+
dataforseoPasswordEnv?: string;
|
|
370
|
+
dataforseoPasswordRef?: {
|
|
371
|
+
source?: "file" | "env" | "exec";
|
|
372
|
+
provider?: string;
|
|
373
|
+
id?: string;
|
|
374
|
+
} & {
|
|
375
|
+
[k: string]: unknown;
|
|
376
|
+
};
|
|
230
377
|
sentryTokenEnv?: string;
|
|
231
378
|
sentryTokenRef?: {
|
|
232
379
|
source?: "file" | "env" | "exec";
|
|
@@ -235,6 +382,14 @@ declare const secretsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
235
382
|
} & {
|
|
236
383
|
[k: string]: unknown;
|
|
237
384
|
};
|
|
385
|
+
coolifyTokenEnv?: string;
|
|
386
|
+
coolifyTokenRef?: {
|
|
387
|
+
source?: "file" | "env" | "exec";
|
|
388
|
+
provider?: string;
|
|
389
|
+
id?: string;
|
|
390
|
+
} & {
|
|
391
|
+
[k: string]: unknown;
|
|
392
|
+
};
|
|
238
393
|
}>>;
|
|
239
394
|
declare const templateConfigSchema: z.ZodObject<{
|
|
240
395
|
version: z.ZodDefault<z.ZodNumber>;
|
|
@@ -336,6 +491,80 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
336
491
|
secretEnv: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
337
492
|
hint: z.ZodOptional<z.ZodString>;
|
|
338
493
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
494
|
+
paddle: z.ZodDefault<z.ZodObject<{
|
|
495
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
496
|
+
mode: z.ZodOptional<z.ZodEnum<["command", "file"]>>;
|
|
497
|
+
command: z.ZodOptional<z.ZodString>;
|
|
498
|
+
path: z.ZodOptional<z.ZodString>;
|
|
499
|
+
cursorMode: z.ZodOptional<z.ZodEnum<["manual", "auto_since_last_fetch"]>>;
|
|
500
|
+
initialLookback: z.ZodOptional<z.ZodString>;
|
|
501
|
+
key: z.ZodOptional<z.ZodString>;
|
|
502
|
+
label: z.ZodOptional<z.ZodString>;
|
|
503
|
+
service: z.ZodOptional<z.ZodString>;
|
|
504
|
+
secretEnv: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
505
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
506
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
507
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
508
|
+
mode: z.ZodOptional<z.ZodEnum<["command", "file"]>>;
|
|
509
|
+
command: z.ZodOptional<z.ZodString>;
|
|
510
|
+
path: z.ZodOptional<z.ZodString>;
|
|
511
|
+
cursorMode: z.ZodOptional<z.ZodEnum<["manual", "auto_since_last_fetch"]>>;
|
|
512
|
+
initialLookback: z.ZodOptional<z.ZodString>;
|
|
513
|
+
key: z.ZodOptional<z.ZodString>;
|
|
514
|
+
label: z.ZodOptional<z.ZodString>;
|
|
515
|
+
service: z.ZodOptional<z.ZodString>;
|
|
516
|
+
secretEnv: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
517
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
518
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
519
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
520
|
+
mode: z.ZodOptional<z.ZodEnum<["command", "file"]>>;
|
|
521
|
+
command: z.ZodOptional<z.ZodString>;
|
|
522
|
+
path: z.ZodOptional<z.ZodString>;
|
|
523
|
+
cursorMode: z.ZodOptional<z.ZodEnum<["manual", "auto_since_last_fetch"]>>;
|
|
524
|
+
initialLookback: z.ZodOptional<z.ZodString>;
|
|
525
|
+
key: z.ZodOptional<z.ZodString>;
|
|
526
|
+
label: z.ZodOptional<z.ZodString>;
|
|
527
|
+
service: z.ZodOptional<z.ZodString>;
|
|
528
|
+
secretEnv: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
529
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
530
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
531
|
+
seo: z.ZodDefault<z.ZodObject<{
|
|
532
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
533
|
+
mode: z.ZodOptional<z.ZodEnum<["command", "file"]>>;
|
|
534
|
+
command: z.ZodOptional<z.ZodString>;
|
|
535
|
+
path: z.ZodOptional<z.ZodString>;
|
|
536
|
+
cursorMode: z.ZodOptional<z.ZodEnum<["manual", "auto_since_last_fetch"]>>;
|
|
537
|
+
initialLookback: z.ZodOptional<z.ZodString>;
|
|
538
|
+
key: z.ZodOptional<z.ZodString>;
|
|
539
|
+
label: z.ZodOptional<z.ZodString>;
|
|
540
|
+
service: z.ZodOptional<z.ZodString>;
|
|
541
|
+
secretEnv: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
542
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
543
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
544
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
545
|
+
mode: z.ZodOptional<z.ZodEnum<["command", "file"]>>;
|
|
546
|
+
command: z.ZodOptional<z.ZodString>;
|
|
547
|
+
path: z.ZodOptional<z.ZodString>;
|
|
548
|
+
cursorMode: z.ZodOptional<z.ZodEnum<["manual", "auto_since_last_fetch"]>>;
|
|
549
|
+
initialLookback: z.ZodOptional<z.ZodString>;
|
|
550
|
+
key: z.ZodOptional<z.ZodString>;
|
|
551
|
+
label: z.ZodOptional<z.ZodString>;
|
|
552
|
+
service: z.ZodOptional<z.ZodString>;
|
|
553
|
+
secretEnv: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
554
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
555
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
556
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
557
|
+
mode: z.ZodOptional<z.ZodEnum<["command", "file"]>>;
|
|
558
|
+
command: z.ZodOptional<z.ZodString>;
|
|
559
|
+
path: z.ZodOptional<z.ZodString>;
|
|
560
|
+
cursorMode: z.ZodOptional<z.ZodEnum<["manual", "auto_since_last_fetch"]>>;
|
|
561
|
+
initialLookback: z.ZodOptional<z.ZodString>;
|
|
562
|
+
key: z.ZodOptional<z.ZodString>;
|
|
563
|
+
label: z.ZodOptional<z.ZodString>;
|
|
564
|
+
service: z.ZodOptional<z.ZodString>;
|
|
565
|
+
secretEnv: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
566
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
567
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
339
568
|
sentry: z.ZodDefault<z.ZodObject<{
|
|
340
569
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
341
570
|
mode: z.ZodOptional<z.ZodEnum<["command", "file"]>>;
|
|
@@ -373,6 +602,43 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
373
602
|
secretEnv: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
374
603
|
hint: z.ZodOptional<z.ZodString>;
|
|
375
604
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
605
|
+
coolify: z.ZodDefault<z.ZodObject<{
|
|
606
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
607
|
+
mode: z.ZodOptional<z.ZodEnum<["command", "file"]>>;
|
|
608
|
+
command: z.ZodOptional<z.ZodString>;
|
|
609
|
+
path: z.ZodOptional<z.ZodString>;
|
|
610
|
+
cursorMode: z.ZodOptional<z.ZodEnum<["manual", "auto_since_last_fetch"]>>;
|
|
611
|
+
initialLookback: z.ZodOptional<z.ZodString>;
|
|
612
|
+
key: z.ZodOptional<z.ZodString>;
|
|
613
|
+
label: z.ZodOptional<z.ZodString>;
|
|
614
|
+
service: z.ZodOptional<z.ZodString>;
|
|
615
|
+
secretEnv: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
616
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
617
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
618
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
619
|
+
mode: z.ZodOptional<z.ZodEnum<["command", "file"]>>;
|
|
620
|
+
command: z.ZodOptional<z.ZodString>;
|
|
621
|
+
path: z.ZodOptional<z.ZodString>;
|
|
622
|
+
cursorMode: z.ZodOptional<z.ZodEnum<["manual", "auto_since_last_fetch"]>>;
|
|
623
|
+
initialLookback: z.ZodOptional<z.ZodString>;
|
|
624
|
+
key: z.ZodOptional<z.ZodString>;
|
|
625
|
+
label: z.ZodOptional<z.ZodString>;
|
|
626
|
+
service: z.ZodOptional<z.ZodString>;
|
|
627
|
+
secretEnv: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
628
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
629
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
630
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
631
|
+
mode: z.ZodOptional<z.ZodEnum<["command", "file"]>>;
|
|
632
|
+
command: z.ZodOptional<z.ZodString>;
|
|
633
|
+
path: z.ZodOptional<z.ZodString>;
|
|
634
|
+
cursorMode: z.ZodOptional<z.ZodEnum<["manual", "auto_since_last_fetch"]>>;
|
|
635
|
+
initialLookback: z.ZodOptional<z.ZodString>;
|
|
636
|
+
key: z.ZodOptional<z.ZodString>;
|
|
637
|
+
label: z.ZodOptional<z.ZodString>;
|
|
638
|
+
service: z.ZodOptional<z.ZodString>;
|
|
639
|
+
secretEnv: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
640
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
641
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
376
642
|
feedback: z.ZodDefault<z.ZodObject<{
|
|
377
643
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
378
644
|
mode: z.ZodOptional<z.ZodEnum<["command", "file"]>>;
|
|
@@ -478,6 +744,36 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
478
744
|
} & {
|
|
479
745
|
[k: string]: unknown;
|
|
480
746
|
};
|
|
747
|
+
paddle?: {
|
|
748
|
+
enabled?: boolean;
|
|
749
|
+
command?: string;
|
|
750
|
+
mode?: "command" | "file";
|
|
751
|
+
path?: string;
|
|
752
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
753
|
+
initialLookback?: string;
|
|
754
|
+
key?: string;
|
|
755
|
+
label?: string;
|
|
756
|
+
service?: string;
|
|
757
|
+
secretEnv?: string;
|
|
758
|
+
hint?: string;
|
|
759
|
+
} & {
|
|
760
|
+
[k: string]: unknown;
|
|
761
|
+
};
|
|
762
|
+
seo?: {
|
|
763
|
+
enabled?: boolean;
|
|
764
|
+
command?: string;
|
|
765
|
+
mode?: "command" | "file";
|
|
766
|
+
path?: string;
|
|
767
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
768
|
+
initialLookback?: string;
|
|
769
|
+
key?: string;
|
|
770
|
+
label?: string;
|
|
771
|
+
service?: string;
|
|
772
|
+
secretEnv?: string;
|
|
773
|
+
hint?: string;
|
|
774
|
+
} & {
|
|
775
|
+
[k: string]: unknown;
|
|
776
|
+
};
|
|
481
777
|
sentry?: {
|
|
482
778
|
enabled?: boolean;
|
|
483
779
|
command?: string;
|
|
@@ -493,6 +789,21 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
493
789
|
} & {
|
|
494
790
|
[k: string]: unknown;
|
|
495
791
|
};
|
|
792
|
+
coolify?: {
|
|
793
|
+
enabled?: boolean;
|
|
794
|
+
command?: string;
|
|
795
|
+
mode?: "command" | "file";
|
|
796
|
+
path?: string;
|
|
797
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
798
|
+
initialLookback?: string;
|
|
799
|
+
key?: string;
|
|
800
|
+
label?: string;
|
|
801
|
+
service?: string;
|
|
802
|
+
secretEnv?: string;
|
|
803
|
+
hint?: string;
|
|
804
|
+
} & {
|
|
805
|
+
[k: string]: unknown;
|
|
806
|
+
};
|
|
496
807
|
feedback?: {
|
|
497
808
|
enabled?: boolean;
|
|
498
809
|
command?: string;
|
|
@@ -552,6 +863,36 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
552
863
|
} & {
|
|
553
864
|
[k: string]: unknown;
|
|
554
865
|
};
|
|
866
|
+
paddle?: {
|
|
867
|
+
enabled?: boolean;
|
|
868
|
+
command?: string;
|
|
869
|
+
mode?: "command" | "file";
|
|
870
|
+
path?: string;
|
|
871
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
872
|
+
initialLookback?: string;
|
|
873
|
+
key?: string;
|
|
874
|
+
label?: string;
|
|
875
|
+
service?: string;
|
|
876
|
+
secretEnv?: string;
|
|
877
|
+
hint?: string;
|
|
878
|
+
} & {
|
|
879
|
+
[k: string]: unknown;
|
|
880
|
+
};
|
|
881
|
+
seo?: {
|
|
882
|
+
enabled?: boolean;
|
|
883
|
+
command?: string;
|
|
884
|
+
mode?: "command" | "file";
|
|
885
|
+
path?: string;
|
|
886
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
887
|
+
initialLookback?: string;
|
|
888
|
+
key?: string;
|
|
889
|
+
label?: string;
|
|
890
|
+
service?: string;
|
|
891
|
+
secretEnv?: string;
|
|
892
|
+
hint?: string;
|
|
893
|
+
} & {
|
|
894
|
+
[k: string]: unknown;
|
|
895
|
+
};
|
|
555
896
|
sentry?: {
|
|
556
897
|
enabled?: boolean;
|
|
557
898
|
command?: string;
|
|
@@ -567,6 +908,21 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
567
908
|
} & {
|
|
568
909
|
[k: string]: unknown;
|
|
569
910
|
};
|
|
911
|
+
coolify?: {
|
|
912
|
+
enabled?: boolean;
|
|
913
|
+
command?: string;
|
|
914
|
+
mode?: "command" | "file";
|
|
915
|
+
path?: string;
|
|
916
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
917
|
+
initialLookback?: string;
|
|
918
|
+
key?: string;
|
|
919
|
+
label?: string;
|
|
920
|
+
service?: string;
|
|
921
|
+
secretEnv?: string;
|
|
922
|
+
hint?: string;
|
|
923
|
+
} & {
|
|
924
|
+
[k: string]: unknown;
|
|
925
|
+
};
|
|
570
926
|
feedback?: {
|
|
571
927
|
enabled?: boolean;
|
|
572
928
|
command?: string;
|
|
@@ -604,6 +960,7 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
604
960
|
cadences: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
605
961
|
key: z.ZodString;
|
|
606
962
|
title: z.ZodOptional<z.ZodString>;
|
|
963
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
607
964
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
608
965
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
609
966
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -614,6 +971,7 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
614
971
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
615
972
|
key: z.ZodString;
|
|
616
973
|
title: z.ZodOptional<z.ZodString>;
|
|
974
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
617
975
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
618
976
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
619
977
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -624,6 +982,7 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
624
982
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
625
983
|
key: z.ZodString;
|
|
626
984
|
title: z.ZodOptional<z.ZodString>;
|
|
985
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
627
986
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
628
987
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
629
988
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -640,6 +999,7 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
640
999
|
cadences?: z.objectOutputType<{
|
|
641
1000
|
key: z.ZodString;
|
|
642
1001
|
title: z.ZodOptional<z.ZodString>;
|
|
1002
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
643
1003
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
644
1004
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
645
1005
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -656,6 +1016,7 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
656
1016
|
cadences?: z.objectInputType<{
|
|
657
1017
|
key: z.ZodString;
|
|
658
1018
|
title: z.ZodOptional<z.ZodString>;
|
|
1019
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
659
1020
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
660
1021
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
661
1022
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -672,6 +1033,40 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
672
1033
|
}, {
|
|
673
1034
|
proposalMode?: "mandatory" | "balanced" | "creative";
|
|
674
1035
|
}>>;
|
|
1036
|
+
actions: z.ZodDefault<z.ZodObject<{
|
|
1037
|
+
mode: z.ZodDefault<z.ZodEnum<["issue", "pull_request"]>>;
|
|
1038
|
+
outputDestinations: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1039
|
+
productionErrorMode: z.ZodDefault<z.ZodEnum<["alert", "issue", "pull_request"]>>;
|
|
1040
|
+
autoCreateIssues: z.ZodDefault<z.ZodBoolean>;
|
|
1041
|
+
autoCreatePullRequests: z.ZodDefault<z.ZodBoolean>;
|
|
1042
|
+
autoCreateWhenGitHubWriteAccess: z.ZodDefault<z.ZodBoolean>;
|
|
1043
|
+
disableAutoCreateGitHubArtifacts: z.ZodDefault<z.ZodBoolean>;
|
|
1044
|
+
draftPullRequests: z.ZodDefault<z.ZodBoolean>;
|
|
1045
|
+
proposalBranchPrefix: z.ZodDefault<z.ZodString>;
|
|
1046
|
+
usageMode: z.ZodDefault<z.ZodString>;
|
|
1047
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1048
|
+
mode: z.ZodDefault<z.ZodEnum<["issue", "pull_request"]>>;
|
|
1049
|
+
outputDestinations: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1050
|
+
productionErrorMode: z.ZodDefault<z.ZodEnum<["alert", "issue", "pull_request"]>>;
|
|
1051
|
+
autoCreateIssues: z.ZodDefault<z.ZodBoolean>;
|
|
1052
|
+
autoCreatePullRequests: z.ZodDefault<z.ZodBoolean>;
|
|
1053
|
+
autoCreateWhenGitHubWriteAccess: z.ZodDefault<z.ZodBoolean>;
|
|
1054
|
+
disableAutoCreateGitHubArtifacts: z.ZodDefault<z.ZodBoolean>;
|
|
1055
|
+
draftPullRequests: z.ZodDefault<z.ZodBoolean>;
|
|
1056
|
+
proposalBranchPrefix: z.ZodDefault<z.ZodString>;
|
|
1057
|
+
usageMode: z.ZodDefault<z.ZodString>;
|
|
1058
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1059
|
+
mode: z.ZodDefault<z.ZodEnum<["issue", "pull_request"]>>;
|
|
1060
|
+
outputDestinations: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1061
|
+
productionErrorMode: z.ZodDefault<z.ZodEnum<["alert", "issue", "pull_request"]>>;
|
|
1062
|
+
autoCreateIssues: z.ZodDefault<z.ZodBoolean>;
|
|
1063
|
+
autoCreatePullRequests: z.ZodDefault<z.ZodBoolean>;
|
|
1064
|
+
autoCreateWhenGitHubWriteAccess: z.ZodDefault<z.ZodBoolean>;
|
|
1065
|
+
disableAutoCreateGitHubArtifacts: z.ZodDefault<z.ZodBoolean>;
|
|
1066
|
+
draftPullRequests: z.ZodDefault<z.ZodBoolean>;
|
|
1067
|
+
proposalBranchPrefix: z.ZodDefault<z.ZodString>;
|
|
1068
|
+
usageMode: z.ZodDefault<z.ZodString>;
|
|
1069
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
675
1070
|
deliveries: z.ZodDefault<z.ZodObject<{
|
|
676
1071
|
openclawChat: z.ZodDefault<z.ZodObject<{
|
|
677
1072
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -734,17 +1129,38 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
734
1129
|
method?: "POST";
|
|
735
1130
|
headers?: Record<string, string>;
|
|
736
1131
|
}>>;
|
|
1132
|
+
command: z.ZodDefault<z.ZodObject<{
|
|
1133
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1134
|
+
label: z.ZodDefault<z.ZodString>;
|
|
1135
|
+
command: z.ZodDefault<z.ZodString>;
|
|
1136
|
+
}, "strip", z.ZodTypeAny, {
|
|
1137
|
+
enabled?: boolean;
|
|
1138
|
+
command?: string;
|
|
1139
|
+
label?: string;
|
|
1140
|
+
}, {
|
|
1141
|
+
enabled?: boolean;
|
|
1142
|
+
command?: string;
|
|
1143
|
+
label?: string;
|
|
1144
|
+
}>>;
|
|
737
1145
|
discord: z.ZodDefault<z.ZodObject<{
|
|
738
1146
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1147
|
+
label: z.ZodDefault<z.ZodString>;
|
|
739
1148
|
command: z.ZodDefault<z.ZodString>;
|
|
740
1149
|
}, "strip", z.ZodTypeAny, {
|
|
741
1150
|
enabled?: boolean;
|
|
742
1151
|
command?: string;
|
|
1152
|
+
label?: string;
|
|
743
1153
|
}, {
|
|
744
1154
|
enabled?: boolean;
|
|
745
1155
|
command?: string;
|
|
1156
|
+
label?: string;
|
|
746
1157
|
}>>;
|
|
747
1158
|
}, "strip", z.ZodTypeAny, {
|
|
1159
|
+
command?: {
|
|
1160
|
+
enabled?: boolean;
|
|
1161
|
+
command?: string;
|
|
1162
|
+
label?: string;
|
|
1163
|
+
};
|
|
748
1164
|
slack?: {
|
|
749
1165
|
enabled?: boolean;
|
|
750
1166
|
webhookEnv?: string;
|
|
@@ -771,8 +1187,14 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
771
1187
|
discord?: {
|
|
772
1188
|
enabled?: boolean;
|
|
773
1189
|
command?: string;
|
|
1190
|
+
label?: string;
|
|
774
1191
|
};
|
|
775
1192
|
}, {
|
|
1193
|
+
command?: {
|
|
1194
|
+
enabled?: boolean;
|
|
1195
|
+
command?: string;
|
|
1196
|
+
label?: string;
|
|
1197
|
+
};
|
|
776
1198
|
slack?: {
|
|
777
1199
|
enabled?: boolean;
|
|
778
1200
|
webhookEnv?: string;
|
|
@@ -799,6 +1221,7 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
799
1221
|
discord?: {
|
|
800
1222
|
enabled?: boolean;
|
|
801
1223
|
command?: string;
|
|
1224
|
+
label?: string;
|
|
802
1225
|
};
|
|
803
1226
|
}>>;
|
|
804
1227
|
charting: z.ZodDefault<z.ZodObject<{
|
|
@@ -1005,6 +1428,67 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1005
1428
|
}, z.ZodTypeAny, "passthrough">[];
|
|
1006
1429
|
};
|
|
1007
1430
|
}>>;
|
|
1431
|
+
automation: z.ZodDefault<z.ZodObject<{
|
|
1432
|
+
openclawCron: z.ZodDefault<z.ZodObject<{
|
|
1433
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1434
|
+
mode: z.ZodDefault<z.ZodEnum<["main", "isolated"]>>;
|
|
1435
|
+
schedule: z.ZodDefault<z.ZodString>;
|
|
1436
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
1437
|
+
name: z.ZodDefault<z.ZodString>;
|
|
1438
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1439
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1440
|
+
mode: z.ZodDefault<z.ZodEnum<["main", "isolated"]>>;
|
|
1441
|
+
schedule: z.ZodDefault<z.ZodString>;
|
|
1442
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
1443
|
+
name: z.ZodDefault<z.ZodString>;
|
|
1444
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1445
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1446
|
+
mode: z.ZodDefault<z.ZodEnum<["main", "isolated"]>>;
|
|
1447
|
+
schedule: z.ZodDefault<z.ZodString>;
|
|
1448
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
1449
|
+
name: z.ZodDefault<z.ZodString>;
|
|
1450
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1451
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1452
|
+
openclawCron: z.ZodDefault<z.ZodObject<{
|
|
1453
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1454
|
+
mode: z.ZodDefault<z.ZodEnum<["main", "isolated"]>>;
|
|
1455
|
+
schedule: z.ZodDefault<z.ZodString>;
|
|
1456
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
1457
|
+
name: z.ZodDefault<z.ZodString>;
|
|
1458
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1459
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1460
|
+
mode: z.ZodDefault<z.ZodEnum<["main", "isolated"]>>;
|
|
1461
|
+
schedule: z.ZodDefault<z.ZodString>;
|
|
1462
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
1463
|
+
name: z.ZodDefault<z.ZodString>;
|
|
1464
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1465
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1466
|
+
mode: z.ZodDefault<z.ZodEnum<["main", "isolated"]>>;
|
|
1467
|
+
schedule: z.ZodDefault<z.ZodString>;
|
|
1468
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
1469
|
+
name: z.ZodDefault<z.ZodString>;
|
|
1470
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1471
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1472
|
+
openclawCron: z.ZodDefault<z.ZodObject<{
|
|
1473
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1474
|
+
mode: z.ZodDefault<z.ZodEnum<["main", "isolated"]>>;
|
|
1475
|
+
schedule: z.ZodDefault<z.ZodString>;
|
|
1476
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
1477
|
+
name: z.ZodDefault<z.ZodString>;
|
|
1478
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1479
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1480
|
+
mode: z.ZodDefault<z.ZodEnum<["main", "isolated"]>>;
|
|
1481
|
+
schedule: z.ZodDefault<z.ZodString>;
|
|
1482
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
1483
|
+
name: z.ZodDefault<z.ZodString>;
|
|
1484
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1485
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1486
|
+
mode: z.ZodDefault<z.ZodEnum<["main", "isolated"]>>;
|
|
1487
|
+
schedule: z.ZodDefault<z.ZodString>;
|
|
1488
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
1489
|
+
name: z.ZodDefault<z.ZodString>;
|
|
1490
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1491
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1008
1492
|
security: z.ZodDefault<z.ZodObject<{
|
|
1009
1493
|
connectorSecrets: z.ZodOptional<z.ZodObject<{
|
|
1010
1494
|
mode: z.ZodDefault<z.ZodString>;
|
|
@@ -1100,6 +1584,62 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1100
1584
|
provider: z.ZodDefault<z.ZodString>;
|
|
1101
1585
|
id: z.ZodString;
|
|
1102
1586
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1587
|
+
paddleTokenEnv: z.ZodDefault<z.ZodString>;
|
|
1588
|
+
paddleTokenRef: z.ZodOptional<z.ZodObject<{
|
|
1589
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1590
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1591
|
+
id: z.ZodString;
|
|
1592
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1593
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1594
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1595
|
+
id: z.ZodString;
|
|
1596
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1597
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1598
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1599
|
+
id: z.ZodString;
|
|
1600
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1601
|
+
gscTokenEnv: z.ZodDefault<z.ZodString>;
|
|
1602
|
+
gscTokenRef: z.ZodOptional<z.ZodObject<{
|
|
1603
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1604
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1605
|
+
id: z.ZodString;
|
|
1606
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1607
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1608
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1609
|
+
id: z.ZodString;
|
|
1610
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1611
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1612
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1613
|
+
id: z.ZodString;
|
|
1614
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1615
|
+
dataforseoLoginEnv: z.ZodDefault<z.ZodString>;
|
|
1616
|
+
dataforseoLoginRef: z.ZodOptional<z.ZodObject<{
|
|
1617
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1618
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1619
|
+
id: z.ZodString;
|
|
1620
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1621
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1622
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1623
|
+
id: z.ZodString;
|
|
1624
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1625
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1626
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1627
|
+
id: z.ZodString;
|
|
1628
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1629
|
+
dataforseoPasswordEnv: z.ZodDefault<z.ZodString>;
|
|
1630
|
+
dataforseoPasswordRef: z.ZodOptional<z.ZodObject<{
|
|
1631
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1632
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1633
|
+
id: z.ZodString;
|
|
1634
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1635
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1636
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1637
|
+
id: z.ZodString;
|
|
1638
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1639
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1640
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1641
|
+
id: z.ZodString;
|
|
1642
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1103
1643
|
sentryTokenEnv: z.ZodDefault<z.ZodString>;
|
|
1104
1644
|
sentryTokenRef: z.ZodOptional<z.ZodObject<{
|
|
1105
1645
|
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
@@ -1114,6 +1654,20 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1114
1654
|
provider: z.ZodDefault<z.ZodString>;
|
|
1115
1655
|
id: z.ZodString;
|
|
1116
1656
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1657
|
+
coolifyTokenEnv: z.ZodDefault<z.ZodString>;
|
|
1658
|
+
coolifyTokenRef: z.ZodOptional<z.ZodObject<{
|
|
1659
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1660
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1661
|
+
id: z.ZodString;
|
|
1662
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1663
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1664
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1665
|
+
id: z.ZodString;
|
|
1666
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1667
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1668
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1669
|
+
id: z.ZodString;
|
|
1670
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1117
1671
|
}, "strip", z.ZodTypeAny, {
|
|
1118
1672
|
githubTokenEnv?: string;
|
|
1119
1673
|
githubTokenRef?: {
|
|
@@ -1139,41 +1693,121 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1139
1693
|
} & {
|
|
1140
1694
|
[k: string]: unknown;
|
|
1141
1695
|
};
|
|
1142
|
-
|
|
1143
|
-
|
|
1696
|
+
paddleTokenEnv?: string;
|
|
1697
|
+
paddleTokenRef?: {
|
|
1698
|
+
source?: "file" | "env" | "exec";
|
|
1699
|
+
provider?: string;
|
|
1700
|
+
id?: string;
|
|
1701
|
+
} & {
|
|
1702
|
+
[k: string]: unknown;
|
|
1703
|
+
};
|
|
1704
|
+
gscTokenEnv?: string;
|
|
1705
|
+
gscTokenRef?: {
|
|
1706
|
+
source?: "file" | "env" | "exec";
|
|
1707
|
+
provider?: string;
|
|
1708
|
+
id?: string;
|
|
1709
|
+
} & {
|
|
1710
|
+
[k: string]: unknown;
|
|
1711
|
+
};
|
|
1712
|
+
dataforseoLoginEnv?: string;
|
|
1713
|
+
dataforseoLoginRef?: {
|
|
1714
|
+
source?: "file" | "env" | "exec";
|
|
1715
|
+
provider?: string;
|
|
1716
|
+
id?: string;
|
|
1717
|
+
} & {
|
|
1718
|
+
[k: string]: unknown;
|
|
1719
|
+
};
|
|
1720
|
+
dataforseoPasswordEnv?: string;
|
|
1721
|
+
dataforseoPasswordRef?: {
|
|
1722
|
+
source?: "file" | "env" | "exec";
|
|
1723
|
+
provider?: string;
|
|
1724
|
+
id?: string;
|
|
1725
|
+
} & {
|
|
1726
|
+
[k: string]: unknown;
|
|
1727
|
+
};
|
|
1728
|
+
sentryTokenEnv?: string;
|
|
1729
|
+
sentryTokenRef?: {
|
|
1730
|
+
source?: "file" | "env" | "exec";
|
|
1731
|
+
provider?: string;
|
|
1732
|
+
id?: string;
|
|
1733
|
+
} & {
|
|
1734
|
+
[k: string]: unknown;
|
|
1735
|
+
};
|
|
1736
|
+
coolifyTokenEnv?: string;
|
|
1737
|
+
coolifyTokenRef?: {
|
|
1738
|
+
source?: "file" | "env" | "exec";
|
|
1739
|
+
provider?: string;
|
|
1740
|
+
id?: string;
|
|
1741
|
+
} & {
|
|
1742
|
+
[k: string]: unknown;
|
|
1743
|
+
};
|
|
1744
|
+
}, {
|
|
1745
|
+
githubTokenEnv?: string;
|
|
1746
|
+
githubTokenRef?: {
|
|
1747
|
+
source?: "file" | "env" | "exec";
|
|
1748
|
+
provider?: string;
|
|
1749
|
+
id?: string;
|
|
1750
|
+
} & {
|
|
1751
|
+
[k: string]: unknown;
|
|
1752
|
+
};
|
|
1753
|
+
analyticsTokenEnv?: string;
|
|
1754
|
+
analyticsTokenRef?: {
|
|
1755
|
+
source?: "file" | "env" | "exec";
|
|
1756
|
+
provider?: string;
|
|
1757
|
+
id?: string;
|
|
1758
|
+
} & {
|
|
1759
|
+
[k: string]: unknown;
|
|
1760
|
+
};
|
|
1761
|
+
revenuecatTokenEnv?: string;
|
|
1762
|
+
revenuecatTokenRef?: {
|
|
1763
|
+
source?: "file" | "env" | "exec";
|
|
1764
|
+
provider?: string;
|
|
1765
|
+
id?: string;
|
|
1766
|
+
} & {
|
|
1767
|
+
[k: string]: unknown;
|
|
1768
|
+
};
|
|
1769
|
+
paddleTokenEnv?: string;
|
|
1770
|
+
paddleTokenRef?: {
|
|
1771
|
+
source?: "file" | "env" | "exec";
|
|
1772
|
+
provider?: string;
|
|
1773
|
+
id?: string;
|
|
1774
|
+
} & {
|
|
1775
|
+
[k: string]: unknown;
|
|
1776
|
+
};
|
|
1777
|
+
gscTokenEnv?: string;
|
|
1778
|
+
gscTokenRef?: {
|
|
1144
1779
|
source?: "file" | "env" | "exec";
|
|
1145
1780
|
provider?: string;
|
|
1146
1781
|
id?: string;
|
|
1147
1782
|
} & {
|
|
1148
1783
|
[k: string]: unknown;
|
|
1149
1784
|
};
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
githubTokenRef?: {
|
|
1785
|
+
dataforseoLoginEnv?: string;
|
|
1786
|
+
dataforseoLoginRef?: {
|
|
1153
1787
|
source?: "file" | "env" | "exec";
|
|
1154
1788
|
provider?: string;
|
|
1155
1789
|
id?: string;
|
|
1156
1790
|
} & {
|
|
1157
1791
|
[k: string]: unknown;
|
|
1158
1792
|
};
|
|
1159
|
-
|
|
1160
|
-
|
|
1793
|
+
dataforseoPasswordEnv?: string;
|
|
1794
|
+
dataforseoPasswordRef?: {
|
|
1161
1795
|
source?: "file" | "env" | "exec";
|
|
1162
1796
|
provider?: string;
|
|
1163
1797
|
id?: string;
|
|
1164
1798
|
} & {
|
|
1165
1799
|
[k: string]: unknown;
|
|
1166
1800
|
};
|
|
1167
|
-
|
|
1168
|
-
|
|
1801
|
+
sentryTokenEnv?: string;
|
|
1802
|
+
sentryTokenRef?: {
|
|
1169
1803
|
source?: "file" | "env" | "exec";
|
|
1170
1804
|
provider?: string;
|
|
1171
1805
|
id?: string;
|
|
1172
1806
|
} & {
|
|
1173
1807
|
[k: string]: unknown;
|
|
1174
1808
|
};
|
|
1175
|
-
|
|
1176
|
-
|
|
1809
|
+
coolifyTokenEnv?: string;
|
|
1810
|
+
coolifyTokenRef?: {
|
|
1177
1811
|
source?: "file" | "env" | "exec";
|
|
1178
1812
|
provider?: string;
|
|
1179
1813
|
id?: string;
|
|
@@ -1182,6 +1816,24 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1182
1816
|
};
|
|
1183
1817
|
}>>;
|
|
1184
1818
|
}, "strip", z.ZodTypeAny, {
|
|
1819
|
+
schedule?: {
|
|
1820
|
+
intervalMinutes?: number;
|
|
1821
|
+
connectorHealthCheckIntervalMinutes?: number;
|
|
1822
|
+
skipIfNoDataChange?: boolean;
|
|
1823
|
+
skipIfIssueSetUnchanged?: boolean;
|
|
1824
|
+
cadences?: z.objectOutputType<{
|
|
1825
|
+
key: z.ZodString;
|
|
1826
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1827
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
1828
|
+
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
1829
|
+
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1830
|
+
objective: z.ZodOptional<z.ZodString>;
|
|
1831
|
+
instructions: z.ZodOptional<z.ZodString>;
|
|
1832
|
+
focusAreas: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1833
|
+
sourcePriorities: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1834
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1835
|
+
}, z.ZodTypeAny, "passthrough">[];
|
|
1836
|
+
};
|
|
1185
1837
|
version?: number;
|
|
1186
1838
|
generatedAt?: string;
|
|
1187
1839
|
project?: {
|
|
@@ -1223,6 +1875,36 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1223
1875
|
} & {
|
|
1224
1876
|
[k: string]: unknown;
|
|
1225
1877
|
};
|
|
1878
|
+
paddle?: {
|
|
1879
|
+
enabled?: boolean;
|
|
1880
|
+
command?: string;
|
|
1881
|
+
mode?: "command" | "file";
|
|
1882
|
+
path?: string;
|
|
1883
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
1884
|
+
initialLookback?: string;
|
|
1885
|
+
key?: string;
|
|
1886
|
+
label?: string;
|
|
1887
|
+
service?: string;
|
|
1888
|
+
secretEnv?: string;
|
|
1889
|
+
hint?: string;
|
|
1890
|
+
} & {
|
|
1891
|
+
[k: string]: unknown;
|
|
1892
|
+
};
|
|
1893
|
+
seo?: {
|
|
1894
|
+
enabled?: boolean;
|
|
1895
|
+
command?: string;
|
|
1896
|
+
mode?: "command" | "file";
|
|
1897
|
+
path?: string;
|
|
1898
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
1899
|
+
initialLookback?: string;
|
|
1900
|
+
key?: string;
|
|
1901
|
+
label?: string;
|
|
1902
|
+
service?: string;
|
|
1903
|
+
secretEnv?: string;
|
|
1904
|
+
hint?: string;
|
|
1905
|
+
} & {
|
|
1906
|
+
[k: string]: unknown;
|
|
1907
|
+
};
|
|
1226
1908
|
sentry?: {
|
|
1227
1909
|
enabled?: boolean;
|
|
1228
1910
|
command?: string;
|
|
@@ -1238,6 +1920,21 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1238
1920
|
} & {
|
|
1239
1921
|
[k: string]: unknown;
|
|
1240
1922
|
};
|
|
1923
|
+
coolify?: {
|
|
1924
|
+
enabled?: boolean;
|
|
1925
|
+
command?: string;
|
|
1926
|
+
mode?: "command" | "file";
|
|
1927
|
+
path?: string;
|
|
1928
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
1929
|
+
initialLookback?: string;
|
|
1930
|
+
key?: string;
|
|
1931
|
+
label?: string;
|
|
1932
|
+
service?: string;
|
|
1933
|
+
secretEnv?: string;
|
|
1934
|
+
hint?: string;
|
|
1935
|
+
} & {
|
|
1936
|
+
[k: string]: unknown;
|
|
1937
|
+
};
|
|
1241
1938
|
feedback?: {
|
|
1242
1939
|
enabled?: boolean;
|
|
1243
1940
|
command?: string;
|
|
@@ -1267,27 +1964,29 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1267
1964
|
hint: z.ZodOptional<z.ZodString>;
|
|
1268
1965
|
}, z.ZodTypeAny, "passthrough">[];
|
|
1269
1966
|
};
|
|
1270
|
-
schedule?: {
|
|
1271
|
-
intervalMinutes?: number;
|
|
1272
|
-
connectorHealthCheckIntervalMinutes?: number;
|
|
1273
|
-
skipIfNoDataChange?: boolean;
|
|
1274
|
-
skipIfIssueSetUnchanged?: boolean;
|
|
1275
|
-
cadences?: z.objectOutputType<{
|
|
1276
|
-
key: z.ZodString;
|
|
1277
|
-
title: z.ZodOptional<z.ZodString>;
|
|
1278
|
-
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
1279
|
-
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1280
|
-
objective: z.ZodOptional<z.ZodString>;
|
|
1281
|
-
instructions: z.ZodOptional<z.ZodString>;
|
|
1282
|
-
focusAreas: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1283
|
-
sourcePriorities: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1284
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1285
|
-
}, z.ZodTypeAny, "passthrough">[];
|
|
1286
|
-
};
|
|
1287
1967
|
strategy?: {
|
|
1288
1968
|
proposalMode?: "mandatory" | "balanced" | "creative";
|
|
1289
1969
|
};
|
|
1970
|
+
actions?: {
|
|
1971
|
+
mode?: "issue" | "pull_request";
|
|
1972
|
+
draftPullRequests?: boolean;
|
|
1973
|
+
proposalBranchPrefix?: string;
|
|
1974
|
+
outputDestinations?: string[];
|
|
1975
|
+
productionErrorMode?: "issue" | "pull_request" | "alert";
|
|
1976
|
+
autoCreateIssues?: boolean;
|
|
1977
|
+
autoCreatePullRequests?: boolean;
|
|
1978
|
+
autoCreateWhenGitHubWriteAccess?: boolean;
|
|
1979
|
+
disableAutoCreateGitHubArtifacts?: boolean;
|
|
1980
|
+
usageMode?: string;
|
|
1981
|
+
} & {
|
|
1982
|
+
[k: string]: unknown;
|
|
1983
|
+
};
|
|
1290
1984
|
deliveries?: {
|
|
1985
|
+
command?: {
|
|
1986
|
+
enabled?: boolean;
|
|
1987
|
+
command?: string;
|
|
1988
|
+
label?: string;
|
|
1989
|
+
};
|
|
1291
1990
|
slack?: {
|
|
1292
1991
|
enabled?: boolean;
|
|
1293
1992
|
webhookEnv?: string;
|
|
@@ -1314,6 +2013,7 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1314
2013
|
discord?: {
|
|
1315
2014
|
enabled?: boolean;
|
|
1316
2015
|
command?: string;
|
|
2016
|
+
label?: string;
|
|
1317
2017
|
};
|
|
1318
2018
|
};
|
|
1319
2019
|
charting?: {
|
|
@@ -1352,6 +2052,19 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1352
2052
|
}, z.ZodTypeAny, "passthrough">[];
|
|
1353
2053
|
};
|
|
1354
2054
|
};
|
|
2055
|
+
automation?: {
|
|
2056
|
+
openclawCron?: {
|
|
2057
|
+
enabled?: boolean;
|
|
2058
|
+
mode?: "main" | "isolated";
|
|
2059
|
+
schedule?: string;
|
|
2060
|
+
timezone?: string;
|
|
2061
|
+
name?: string;
|
|
2062
|
+
} & {
|
|
2063
|
+
[k: string]: unknown;
|
|
2064
|
+
};
|
|
2065
|
+
} & {
|
|
2066
|
+
[k: string]: unknown;
|
|
2067
|
+
};
|
|
1355
2068
|
security?: {
|
|
1356
2069
|
connectorSecrets?: {
|
|
1357
2070
|
mode?: string;
|
|
@@ -1389,6 +2102,38 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1389
2102
|
} & {
|
|
1390
2103
|
[k: string]: unknown;
|
|
1391
2104
|
};
|
|
2105
|
+
paddleTokenEnv?: string;
|
|
2106
|
+
paddleTokenRef?: {
|
|
2107
|
+
source?: "file" | "env" | "exec";
|
|
2108
|
+
provider?: string;
|
|
2109
|
+
id?: string;
|
|
2110
|
+
} & {
|
|
2111
|
+
[k: string]: unknown;
|
|
2112
|
+
};
|
|
2113
|
+
gscTokenEnv?: string;
|
|
2114
|
+
gscTokenRef?: {
|
|
2115
|
+
source?: "file" | "env" | "exec";
|
|
2116
|
+
provider?: string;
|
|
2117
|
+
id?: string;
|
|
2118
|
+
} & {
|
|
2119
|
+
[k: string]: unknown;
|
|
2120
|
+
};
|
|
2121
|
+
dataforseoLoginEnv?: string;
|
|
2122
|
+
dataforseoLoginRef?: {
|
|
2123
|
+
source?: "file" | "env" | "exec";
|
|
2124
|
+
provider?: string;
|
|
2125
|
+
id?: string;
|
|
2126
|
+
} & {
|
|
2127
|
+
[k: string]: unknown;
|
|
2128
|
+
};
|
|
2129
|
+
dataforseoPasswordEnv?: string;
|
|
2130
|
+
dataforseoPasswordRef?: {
|
|
2131
|
+
source?: "file" | "env" | "exec";
|
|
2132
|
+
provider?: string;
|
|
2133
|
+
id?: string;
|
|
2134
|
+
} & {
|
|
2135
|
+
[k: string]: unknown;
|
|
2136
|
+
};
|
|
1392
2137
|
sentryTokenEnv?: string;
|
|
1393
2138
|
sentryTokenRef?: {
|
|
1394
2139
|
source?: "file" | "env" | "exec";
|
|
@@ -1397,8 +2142,34 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1397
2142
|
} & {
|
|
1398
2143
|
[k: string]: unknown;
|
|
1399
2144
|
};
|
|
2145
|
+
coolifyTokenEnv?: string;
|
|
2146
|
+
coolifyTokenRef?: {
|
|
2147
|
+
source?: "file" | "env" | "exec";
|
|
2148
|
+
provider?: string;
|
|
2149
|
+
id?: string;
|
|
2150
|
+
} & {
|
|
2151
|
+
[k: string]: unknown;
|
|
2152
|
+
};
|
|
1400
2153
|
};
|
|
1401
2154
|
}, {
|
|
2155
|
+
schedule?: {
|
|
2156
|
+
intervalMinutes?: number;
|
|
2157
|
+
connectorHealthCheckIntervalMinutes?: number;
|
|
2158
|
+
skipIfNoDataChange?: boolean;
|
|
2159
|
+
skipIfIssueSetUnchanged?: boolean;
|
|
2160
|
+
cadences?: z.objectInputType<{
|
|
2161
|
+
key: z.ZodString;
|
|
2162
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2163
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
2164
|
+
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
2165
|
+
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2166
|
+
objective: z.ZodOptional<z.ZodString>;
|
|
2167
|
+
instructions: z.ZodOptional<z.ZodString>;
|
|
2168
|
+
focusAreas: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2169
|
+
sourcePriorities: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2170
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2171
|
+
}, z.ZodTypeAny, "passthrough">[];
|
|
2172
|
+
};
|
|
1402
2173
|
version?: number;
|
|
1403
2174
|
generatedAt?: string;
|
|
1404
2175
|
project?: {
|
|
@@ -1440,6 +2211,36 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1440
2211
|
} & {
|
|
1441
2212
|
[k: string]: unknown;
|
|
1442
2213
|
};
|
|
2214
|
+
paddle?: {
|
|
2215
|
+
enabled?: boolean;
|
|
2216
|
+
command?: string;
|
|
2217
|
+
mode?: "command" | "file";
|
|
2218
|
+
path?: string;
|
|
2219
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
2220
|
+
initialLookback?: string;
|
|
2221
|
+
key?: string;
|
|
2222
|
+
label?: string;
|
|
2223
|
+
service?: string;
|
|
2224
|
+
secretEnv?: string;
|
|
2225
|
+
hint?: string;
|
|
2226
|
+
} & {
|
|
2227
|
+
[k: string]: unknown;
|
|
2228
|
+
};
|
|
2229
|
+
seo?: {
|
|
2230
|
+
enabled?: boolean;
|
|
2231
|
+
command?: string;
|
|
2232
|
+
mode?: "command" | "file";
|
|
2233
|
+
path?: string;
|
|
2234
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
2235
|
+
initialLookback?: string;
|
|
2236
|
+
key?: string;
|
|
2237
|
+
label?: string;
|
|
2238
|
+
service?: string;
|
|
2239
|
+
secretEnv?: string;
|
|
2240
|
+
hint?: string;
|
|
2241
|
+
} & {
|
|
2242
|
+
[k: string]: unknown;
|
|
2243
|
+
};
|
|
1443
2244
|
sentry?: {
|
|
1444
2245
|
enabled?: boolean;
|
|
1445
2246
|
command?: string;
|
|
@@ -1455,6 +2256,21 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1455
2256
|
} & {
|
|
1456
2257
|
[k: string]: unknown;
|
|
1457
2258
|
};
|
|
2259
|
+
coolify?: {
|
|
2260
|
+
enabled?: boolean;
|
|
2261
|
+
command?: string;
|
|
2262
|
+
mode?: "command" | "file";
|
|
2263
|
+
path?: string;
|
|
2264
|
+
cursorMode?: "manual" | "auto_since_last_fetch";
|
|
2265
|
+
initialLookback?: string;
|
|
2266
|
+
key?: string;
|
|
2267
|
+
label?: string;
|
|
2268
|
+
service?: string;
|
|
2269
|
+
secretEnv?: string;
|
|
2270
|
+
hint?: string;
|
|
2271
|
+
} & {
|
|
2272
|
+
[k: string]: unknown;
|
|
2273
|
+
};
|
|
1458
2274
|
feedback?: {
|
|
1459
2275
|
enabled?: boolean;
|
|
1460
2276
|
command?: string;
|
|
@@ -1484,27 +2300,29 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1484
2300
|
hint: z.ZodOptional<z.ZodString>;
|
|
1485
2301
|
}, z.ZodTypeAny, "passthrough">[];
|
|
1486
2302
|
};
|
|
1487
|
-
schedule?: {
|
|
1488
|
-
intervalMinutes?: number;
|
|
1489
|
-
connectorHealthCheckIntervalMinutes?: number;
|
|
1490
|
-
skipIfNoDataChange?: boolean;
|
|
1491
|
-
skipIfIssueSetUnchanged?: boolean;
|
|
1492
|
-
cadences?: z.objectInputType<{
|
|
1493
|
-
key: z.ZodString;
|
|
1494
|
-
title: z.ZodOptional<z.ZodString>;
|
|
1495
|
-
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
1496
|
-
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1497
|
-
objective: z.ZodOptional<z.ZodString>;
|
|
1498
|
-
instructions: z.ZodOptional<z.ZodString>;
|
|
1499
|
-
focusAreas: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1500
|
-
sourcePriorities: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1501
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1502
|
-
}, z.ZodTypeAny, "passthrough">[];
|
|
1503
|
-
};
|
|
1504
2303
|
strategy?: {
|
|
1505
2304
|
proposalMode?: "mandatory" | "balanced" | "creative";
|
|
1506
2305
|
};
|
|
2306
|
+
actions?: {
|
|
2307
|
+
mode?: "issue" | "pull_request";
|
|
2308
|
+
draftPullRequests?: boolean;
|
|
2309
|
+
proposalBranchPrefix?: string;
|
|
2310
|
+
outputDestinations?: string[];
|
|
2311
|
+
productionErrorMode?: "issue" | "pull_request" | "alert";
|
|
2312
|
+
autoCreateIssues?: boolean;
|
|
2313
|
+
autoCreatePullRequests?: boolean;
|
|
2314
|
+
autoCreateWhenGitHubWriteAccess?: boolean;
|
|
2315
|
+
disableAutoCreateGitHubArtifacts?: boolean;
|
|
2316
|
+
usageMode?: string;
|
|
2317
|
+
} & {
|
|
2318
|
+
[k: string]: unknown;
|
|
2319
|
+
};
|
|
1507
2320
|
deliveries?: {
|
|
2321
|
+
command?: {
|
|
2322
|
+
enabled?: boolean;
|
|
2323
|
+
command?: string;
|
|
2324
|
+
label?: string;
|
|
2325
|
+
};
|
|
1508
2326
|
slack?: {
|
|
1509
2327
|
enabled?: boolean;
|
|
1510
2328
|
webhookEnv?: string;
|
|
@@ -1531,6 +2349,7 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1531
2349
|
discord?: {
|
|
1532
2350
|
enabled?: boolean;
|
|
1533
2351
|
command?: string;
|
|
2352
|
+
label?: string;
|
|
1534
2353
|
};
|
|
1535
2354
|
};
|
|
1536
2355
|
charting?: {
|
|
@@ -1569,6 +2388,19 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1569
2388
|
}, z.ZodTypeAny, "passthrough">[];
|
|
1570
2389
|
};
|
|
1571
2390
|
};
|
|
2391
|
+
automation?: {
|
|
2392
|
+
openclawCron?: {
|
|
2393
|
+
enabled?: boolean;
|
|
2394
|
+
mode?: "main" | "isolated";
|
|
2395
|
+
schedule?: string;
|
|
2396
|
+
timezone?: string;
|
|
2397
|
+
name?: string;
|
|
2398
|
+
} & {
|
|
2399
|
+
[k: string]: unknown;
|
|
2400
|
+
};
|
|
2401
|
+
} & {
|
|
2402
|
+
[k: string]: unknown;
|
|
2403
|
+
};
|
|
1572
2404
|
security?: {
|
|
1573
2405
|
connectorSecrets?: {
|
|
1574
2406
|
mode?: string;
|
|
@@ -1606,6 +2438,38 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1606
2438
|
} & {
|
|
1607
2439
|
[k: string]: unknown;
|
|
1608
2440
|
};
|
|
2441
|
+
paddleTokenEnv?: string;
|
|
2442
|
+
paddleTokenRef?: {
|
|
2443
|
+
source?: "file" | "env" | "exec";
|
|
2444
|
+
provider?: string;
|
|
2445
|
+
id?: string;
|
|
2446
|
+
} & {
|
|
2447
|
+
[k: string]: unknown;
|
|
2448
|
+
};
|
|
2449
|
+
gscTokenEnv?: string;
|
|
2450
|
+
gscTokenRef?: {
|
|
2451
|
+
source?: "file" | "env" | "exec";
|
|
2452
|
+
provider?: string;
|
|
2453
|
+
id?: string;
|
|
2454
|
+
} & {
|
|
2455
|
+
[k: string]: unknown;
|
|
2456
|
+
};
|
|
2457
|
+
dataforseoLoginEnv?: string;
|
|
2458
|
+
dataforseoLoginRef?: {
|
|
2459
|
+
source?: "file" | "env" | "exec";
|
|
2460
|
+
provider?: string;
|
|
2461
|
+
id?: string;
|
|
2462
|
+
} & {
|
|
2463
|
+
[k: string]: unknown;
|
|
2464
|
+
};
|
|
2465
|
+
dataforseoPasswordEnv?: string;
|
|
2466
|
+
dataforseoPasswordRef?: {
|
|
2467
|
+
source?: "file" | "env" | "exec";
|
|
2468
|
+
provider?: string;
|
|
2469
|
+
id?: string;
|
|
2470
|
+
} & {
|
|
2471
|
+
[k: string]: unknown;
|
|
2472
|
+
};
|
|
1609
2473
|
sentryTokenEnv?: string;
|
|
1610
2474
|
sentryTokenRef?: {
|
|
1611
2475
|
source?: "file" | "env" | "exec";
|
|
@@ -1614,6 +2478,14 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1614
2478
|
} & {
|
|
1615
2479
|
[k: string]: unknown;
|
|
1616
2480
|
};
|
|
2481
|
+
coolifyTokenEnv?: string;
|
|
2482
|
+
coolifyTokenRef?: {
|
|
2483
|
+
source?: "file" | "env" | "exec";
|
|
2484
|
+
provider?: string;
|
|
2485
|
+
id?: string;
|
|
2486
|
+
} & {
|
|
2487
|
+
[k: string]: unknown;
|
|
2488
|
+
};
|
|
1617
2489
|
};
|
|
1618
2490
|
}>;
|
|
1619
2491
|
export type OpenClawConfig = z.infer<typeof templateConfigSchema>;
|
|
@@ -1631,7 +2503,10 @@ export type LegacyGrowthConfig = {
|
|
|
1631
2503
|
sources: {
|
|
1632
2504
|
analytics: z.infer<typeof sourceSchema>;
|
|
1633
2505
|
revenuecat: z.infer<typeof sourceSchema>;
|
|
2506
|
+
paddle: z.infer<typeof sourceSchema>;
|
|
2507
|
+
seo: z.infer<typeof sourceSchema>;
|
|
1634
2508
|
sentry: z.infer<typeof sourceSchema>;
|
|
2509
|
+
coolify: z.infer<typeof sourceSchema>;
|
|
1635
2510
|
feedback: z.infer<typeof sourceSchema>;
|
|
1636
2511
|
extra: Array<z.infer<typeof sourceSchema>>;
|
|
1637
2512
|
};
|
|
@@ -1639,10 +2514,15 @@ export type LegacyGrowthConfig = {
|
|
|
1639
2514
|
strategy: z.infer<typeof strategySchema>;
|
|
1640
2515
|
actions: {
|
|
1641
2516
|
mode: 'issue' | 'pull_request';
|
|
2517
|
+
outputDestinations?: string[];
|
|
2518
|
+
productionErrorMode?: 'alert' | 'issue' | 'pull_request';
|
|
1642
2519
|
autoCreateIssues: boolean;
|
|
1643
2520
|
autoCreatePullRequests: boolean;
|
|
2521
|
+
autoCreateWhenGitHubWriteAccess?: boolean;
|
|
2522
|
+
disableAutoCreateGitHubArtifacts?: boolean;
|
|
1644
2523
|
draftPullRequests: boolean;
|
|
1645
2524
|
proposalBranchPrefix: string;
|
|
2525
|
+
usageMode?: string;
|
|
1646
2526
|
};
|
|
1647
2527
|
charting: {
|
|
1648
2528
|
enabled: boolean;
|