@analyticscli/growth-engineer 0.1.0-preview.15 → 0.1.0-preview.18
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 +775 -22
- package/dist/config.js +39 -5
- package/dist/config.js.map +1 -1
- package/dist/index.js +131 -3
- package/dist/index.js.map +1 -1
- package/dist/runtime/export-asc-summary.mjs +1 -1
- 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 +50 -0
- package/dist/runtime/openclaw-exporters-lib.mjs +761 -57
- 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 +399 -26
- package/dist/runtime/openclaw-growth-preflight.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-runner.mjs +564 -69
- package/dist/runtime/openclaw-growth-runner.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-shared.d.mts +150 -2
- package/dist/runtime/openclaw-growth-shared.mjs +489 -7
- package/dist/runtime/openclaw-growth-shared.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-start.mjs +584 -48
- package/dist/runtime/openclaw-growth-start.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-status.mjs +82 -6
- package/dist/runtime/openclaw-growth-status.mjs.map +1 -1
- package/dist/runtime/openclaw-growth-wizard.mjs +1501 -105
- package/dist/runtime/openclaw-growth-wizard.mjs.map +1 -1
- package/package.json +1 -1
- package/templates/config.example.json +120 -71
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>;
|
|
@@ -1128,27 +1523,83 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1128
1523
|
agentReadable: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
1129
1524
|
secretsFile: z.ZodOptional<z.ZodString>;
|
|
1130
1525
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1131
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1132
|
-
connectorSecrets: z.ZodOptional<z.ZodObject<{
|
|
1133
|
-
mode: z.ZodDefault<z.ZodString>;
|
|
1134
|
-
persisted: z.ZodDefault<z.ZodBoolean>;
|
|
1135
|
-
agentReadable: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
1136
|
-
secretsFile: z.ZodOptional<z.ZodString>;
|
|
1526
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1527
|
+
connectorSecrets: z.ZodOptional<z.ZodObject<{
|
|
1528
|
+
mode: z.ZodDefault<z.ZodString>;
|
|
1529
|
+
persisted: z.ZodDefault<z.ZodBoolean>;
|
|
1530
|
+
agentReadable: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
1531
|
+
secretsFile: z.ZodOptional<z.ZodString>;
|
|
1532
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1533
|
+
mode: z.ZodDefault<z.ZodString>;
|
|
1534
|
+
persisted: z.ZodDefault<z.ZodBoolean>;
|
|
1535
|
+
agentReadable: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
1536
|
+
secretsFile: z.ZodOptional<z.ZodString>;
|
|
1537
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1538
|
+
mode: z.ZodDefault<z.ZodString>;
|
|
1539
|
+
persisted: z.ZodDefault<z.ZodBoolean>;
|
|
1540
|
+
agentReadable: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
1541
|
+
secretsFile: z.ZodOptional<z.ZodString>;
|
|
1542
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1543
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1544
|
+
secrets: z.ZodDefault<z.ZodObject<{
|
|
1545
|
+
githubTokenEnv: z.ZodDefault<z.ZodString>;
|
|
1546
|
+
githubTokenRef: z.ZodOptional<z.ZodObject<{
|
|
1547
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1548
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1549
|
+
id: z.ZodString;
|
|
1550
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1551
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1552
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1553
|
+
id: z.ZodString;
|
|
1554
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1555
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1556
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1557
|
+
id: z.ZodString;
|
|
1558
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1559
|
+
analyticsTokenEnv: z.ZodDefault<z.ZodString>;
|
|
1560
|
+
analyticsTokenRef: z.ZodOptional<z.ZodObject<{
|
|
1561
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1562
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1563
|
+
id: z.ZodString;
|
|
1564
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1565
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1566
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1567
|
+
id: z.ZodString;
|
|
1568
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1569
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1570
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1571
|
+
id: z.ZodString;
|
|
1572
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1573
|
+
revenuecatTokenEnv: z.ZodDefault<z.ZodString>;
|
|
1574
|
+
revenuecatTokenRef: z.ZodOptional<z.ZodObject<{
|
|
1575
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1576
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1577
|
+
id: z.ZodString;
|
|
1578
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1579
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1580
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1581
|
+
id: z.ZodString;
|
|
1582
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1583
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1584
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1585
|
+
id: z.ZodString;
|
|
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;
|
|
1137
1592
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
secretsFile: z.ZodOptional<z.ZodString>;
|
|
1593
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1594
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1595
|
+
id: z.ZodString;
|
|
1142
1596
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
secretsFile: z.ZodOptional<z.ZodString>;
|
|
1597
|
+
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1598
|
+
provider: z.ZodDefault<z.ZodString>;
|
|
1599
|
+
id: z.ZodString;
|
|
1147
1600
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
githubTokenEnv: z.ZodDefault<z.ZodString>;
|
|
1151
|
-
githubTokenRef: z.ZodOptional<z.ZodObject<{
|
|
1601
|
+
gscTokenEnv: z.ZodDefault<z.ZodString>;
|
|
1602
|
+
gscTokenRef: z.ZodOptional<z.ZodObject<{
|
|
1152
1603
|
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1153
1604
|
provider: z.ZodDefault<z.ZodString>;
|
|
1154
1605
|
id: z.ZodString;
|
|
@@ -1161,8 +1612,8 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1161
1612
|
provider: z.ZodDefault<z.ZodString>;
|
|
1162
1613
|
id: z.ZodString;
|
|
1163
1614
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1164
|
-
|
|
1165
|
-
|
|
1615
|
+
dataforseoLoginEnv: z.ZodDefault<z.ZodString>;
|
|
1616
|
+
dataforseoLoginRef: z.ZodOptional<z.ZodObject<{
|
|
1166
1617
|
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1167
1618
|
provider: z.ZodDefault<z.ZodString>;
|
|
1168
1619
|
id: z.ZodString;
|
|
@@ -1175,8 +1626,8 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1175
1626
|
provider: z.ZodDefault<z.ZodString>;
|
|
1176
1627
|
id: z.ZodString;
|
|
1177
1628
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1178
|
-
|
|
1179
|
-
|
|
1629
|
+
dataforseoPasswordEnv: z.ZodDefault<z.ZodString>;
|
|
1630
|
+
dataforseoPasswordRef: z.ZodOptional<z.ZodObject<{
|
|
1180
1631
|
source: z.ZodDefault<z.ZodEnum<["env", "file", "exec"]>>;
|
|
1181
1632
|
provider: z.ZodDefault<z.ZodString>;
|
|
1182
1633
|
id: z.ZodString;
|
|
@@ -1203,6 +1654,20 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1203
1654
|
provider: z.ZodDefault<z.ZodString>;
|
|
1204
1655
|
id: z.ZodString;
|
|
1205
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">>>;
|
|
1206
1671
|
}, "strip", z.ZodTypeAny, {
|
|
1207
1672
|
githubTokenEnv?: string;
|
|
1208
1673
|
githubTokenRef?: {
|
|
@@ -1228,6 +1693,38 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1228
1693
|
} & {
|
|
1229
1694
|
[k: string]: unknown;
|
|
1230
1695
|
};
|
|
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
|
+
};
|
|
1231
1728
|
sentryTokenEnv?: string;
|
|
1232
1729
|
sentryTokenRef?: {
|
|
1233
1730
|
source?: "file" | "env" | "exec";
|
|
@@ -1236,6 +1733,14 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1236
1733
|
} & {
|
|
1237
1734
|
[k: string]: unknown;
|
|
1238
1735
|
};
|
|
1736
|
+
coolifyTokenEnv?: string;
|
|
1737
|
+
coolifyTokenRef?: {
|
|
1738
|
+
source?: "file" | "env" | "exec";
|
|
1739
|
+
provider?: string;
|
|
1740
|
+
id?: string;
|
|
1741
|
+
} & {
|
|
1742
|
+
[k: string]: unknown;
|
|
1743
|
+
};
|
|
1239
1744
|
}, {
|
|
1240
1745
|
githubTokenEnv?: string;
|
|
1241
1746
|
githubTokenRef?: {
|
|
@@ -1261,6 +1766,38 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1261
1766
|
} & {
|
|
1262
1767
|
[k: string]: unknown;
|
|
1263
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?: {
|
|
1779
|
+
source?: "file" | "env" | "exec";
|
|
1780
|
+
provider?: string;
|
|
1781
|
+
id?: string;
|
|
1782
|
+
} & {
|
|
1783
|
+
[k: string]: unknown;
|
|
1784
|
+
};
|
|
1785
|
+
dataforseoLoginEnv?: string;
|
|
1786
|
+
dataforseoLoginRef?: {
|
|
1787
|
+
source?: "file" | "env" | "exec";
|
|
1788
|
+
provider?: string;
|
|
1789
|
+
id?: string;
|
|
1790
|
+
} & {
|
|
1791
|
+
[k: string]: unknown;
|
|
1792
|
+
};
|
|
1793
|
+
dataforseoPasswordEnv?: string;
|
|
1794
|
+
dataforseoPasswordRef?: {
|
|
1795
|
+
source?: "file" | "env" | "exec";
|
|
1796
|
+
provider?: string;
|
|
1797
|
+
id?: string;
|
|
1798
|
+
} & {
|
|
1799
|
+
[k: string]: unknown;
|
|
1800
|
+
};
|
|
1264
1801
|
sentryTokenEnv?: string;
|
|
1265
1802
|
sentryTokenRef?: {
|
|
1266
1803
|
source?: "file" | "env" | "exec";
|
|
@@ -1269,6 +1806,14 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1269
1806
|
} & {
|
|
1270
1807
|
[k: string]: unknown;
|
|
1271
1808
|
};
|
|
1809
|
+
coolifyTokenEnv?: string;
|
|
1810
|
+
coolifyTokenRef?: {
|
|
1811
|
+
source?: "file" | "env" | "exec";
|
|
1812
|
+
provider?: string;
|
|
1813
|
+
id?: string;
|
|
1814
|
+
} & {
|
|
1815
|
+
[k: string]: unknown;
|
|
1816
|
+
};
|
|
1272
1817
|
}>>;
|
|
1273
1818
|
}, "strip", z.ZodTypeAny, {
|
|
1274
1819
|
schedule?: {
|
|
@@ -1279,6 +1824,7 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1279
1824
|
cadences?: z.objectOutputType<{
|
|
1280
1825
|
key: z.ZodString;
|
|
1281
1826
|
title: z.ZodOptional<z.ZodString>;
|
|
1827
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
1282
1828
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
1283
1829
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1284
1830
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -1329,6 +1875,36 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1329
1875
|
} & {
|
|
1330
1876
|
[k: string]: unknown;
|
|
1331
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
|
+
};
|
|
1332
1908
|
sentry?: {
|
|
1333
1909
|
enabled?: boolean;
|
|
1334
1910
|
command?: string;
|
|
@@ -1344,6 +1920,21 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1344
1920
|
} & {
|
|
1345
1921
|
[k: string]: unknown;
|
|
1346
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
|
+
};
|
|
1347
1938
|
feedback?: {
|
|
1348
1939
|
enabled?: boolean;
|
|
1349
1940
|
command?: string;
|
|
@@ -1376,6 +1967,20 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1376
1967
|
strategy?: {
|
|
1377
1968
|
proposalMode?: "mandatory" | "balanced" | "creative";
|
|
1378
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
|
+
};
|
|
1379
1984
|
deliveries?: {
|
|
1380
1985
|
command?: {
|
|
1381
1986
|
enabled?: boolean;
|
|
@@ -1497,6 +2102,38 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1497
2102
|
} & {
|
|
1498
2103
|
[k: string]: unknown;
|
|
1499
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
|
+
};
|
|
1500
2137
|
sentryTokenEnv?: string;
|
|
1501
2138
|
sentryTokenRef?: {
|
|
1502
2139
|
source?: "file" | "env" | "exec";
|
|
@@ -1505,6 +2142,14 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1505
2142
|
} & {
|
|
1506
2143
|
[k: string]: unknown;
|
|
1507
2144
|
};
|
|
2145
|
+
coolifyTokenEnv?: string;
|
|
2146
|
+
coolifyTokenRef?: {
|
|
2147
|
+
source?: "file" | "env" | "exec";
|
|
2148
|
+
provider?: string;
|
|
2149
|
+
id?: string;
|
|
2150
|
+
} & {
|
|
2151
|
+
[k: string]: unknown;
|
|
2152
|
+
};
|
|
1508
2153
|
};
|
|
1509
2154
|
}, {
|
|
1510
2155
|
schedule?: {
|
|
@@ -1515,6 +2160,7 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1515
2160
|
cadences?: z.objectInputType<{
|
|
1516
2161
|
key: z.ZodString;
|
|
1517
2162
|
title: z.ZodOptional<z.ZodString>;
|
|
2163
|
+
intervalMinutes: z.ZodOptional<z.ZodNumber>;
|
|
1518
2164
|
intervalDays: z.ZodOptional<z.ZodNumber>;
|
|
1519
2165
|
criticalOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1520
2166
|
objective: z.ZodOptional<z.ZodString>;
|
|
@@ -1565,6 +2211,36 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1565
2211
|
} & {
|
|
1566
2212
|
[k: string]: unknown;
|
|
1567
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
|
+
};
|
|
1568
2244
|
sentry?: {
|
|
1569
2245
|
enabled?: boolean;
|
|
1570
2246
|
command?: string;
|
|
@@ -1580,6 +2256,21 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1580
2256
|
} & {
|
|
1581
2257
|
[k: string]: unknown;
|
|
1582
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
|
+
};
|
|
1583
2274
|
feedback?: {
|
|
1584
2275
|
enabled?: boolean;
|
|
1585
2276
|
command?: string;
|
|
@@ -1612,6 +2303,20 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1612
2303
|
strategy?: {
|
|
1613
2304
|
proposalMode?: "mandatory" | "balanced" | "creative";
|
|
1614
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
|
+
};
|
|
1615
2320
|
deliveries?: {
|
|
1616
2321
|
command?: {
|
|
1617
2322
|
enabled?: boolean;
|
|
@@ -1733,6 +2438,38 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1733
2438
|
} & {
|
|
1734
2439
|
[k: string]: unknown;
|
|
1735
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
|
+
};
|
|
1736
2473
|
sentryTokenEnv?: string;
|
|
1737
2474
|
sentryTokenRef?: {
|
|
1738
2475
|
source?: "file" | "env" | "exec";
|
|
@@ -1741,6 +2478,14 @@ declare const templateConfigSchema: z.ZodObject<{
|
|
|
1741
2478
|
} & {
|
|
1742
2479
|
[k: string]: unknown;
|
|
1743
2480
|
};
|
|
2481
|
+
coolifyTokenEnv?: string;
|
|
2482
|
+
coolifyTokenRef?: {
|
|
2483
|
+
source?: "file" | "env" | "exec";
|
|
2484
|
+
provider?: string;
|
|
2485
|
+
id?: string;
|
|
2486
|
+
} & {
|
|
2487
|
+
[k: string]: unknown;
|
|
2488
|
+
};
|
|
1744
2489
|
};
|
|
1745
2490
|
}>;
|
|
1746
2491
|
export type OpenClawConfig = z.infer<typeof templateConfigSchema>;
|
|
@@ -1758,7 +2503,10 @@ export type LegacyGrowthConfig = {
|
|
|
1758
2503
|
sources: {
|
|
1759
2504
|
analytics: z.infer<typeof sourceSchema>;
|
|
1760
2505
|
revenuecat: z.infer<typeof sourceSchema>;
|
|
2506
|
+
paddle: z.infer<typeof sourceSchema>;
|
|
2507
|
+
seo: z.infer<typeof sourceSchema>;
|
|
1761
2508
|
sentry: z.infer<typeof sourceSchema>;
|
|
2509
|
+
coolify: z.infer<typeof sourceSchema>;
|
|
1762
2510
|
feedback: z.infer<typeof sourceSchema>;
|
|
1763
2511
|
extra: Array<z.infer<typeof sourceSchema>>;
|
|
1764
2512
|
};
|
|
@@ -1766,10 +2514,15 @@ export type LegacyGrowthConfig = {
|
|
|
1766
2514
|
strategy: z.infer<typeof strategySchema>;
|
|
1767
2515
|
actions: {
|
|
1768
2516
|
mode: 'issue' | 'pull_request';
|
|
2517
|
+
outputDestinations?: string[];
|
|
2518
|
+
productionErrorMode?: 'alert' | 'issue' | 'pull_request';
|
|
1769
2519
|
autoCreateIssues: boolean;
|
|
1770
2520
|
autoCreatePullRequests: boolean;
|
|
2521
|
+
autoCreateWhenGitHubWriteAccess?: boolean;
|
|
2522
|
+
disableAutoCreateGitHubArtifacts?: boolean;
|
|
1771
2523
|
draftPullRequests: boolean;
|
|
1772
2524
|
proposalBranchPrefix: string;
|
|
2525
|
+
usageMode?: string;
|
|
1773
2526
|
};
|
|
1774
2527
|
charting: {
|
|
1775
2528
|
enabled: boolean;
|