devchain-cli 0.7.2 → 0.8.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/drizzle/0027_legal_malice.sql +17 -0
- package/dist/drizzle/0028_populate_provider_configs.sql +19 -0
- package/dist/drizzle/0029_merge_profiles_by_family_slug.sql +116 -0
- package/dist/drizzle/0030_set_agents_provider_config_id.sql +14 -0
- package/dist/drizzle/0031_remove_legacy_profile_columns.sql +68 -0
- package/dist/drizzle/0032_agents_provider_config_not_null.sql +52 -0
- package/dist/drizzle/0033_profile_provider_configs_name.sql +38 -0
- package/dist/drizzle/0034_sessions_agent_running_unique.sql +30 -0
- package/dist/drizzle/0035_provider_config_position.sql +26 -0
- package/dist/drizzle/PHASE2_MIGRATION_GUIDE.md +109 -0
- package/dist/drizzle/meta/0027_snapshot.json +3648 -0
- package/dist/drizzle/meta/0035_snapshot.json +3670 -0
- package/dist/drizzle/meta/_journal.json +64 -1
- package/dist/drizzle/migration-guard.sql +17 -0
- package/dist/drizzle/phase2-rollback.sql +44 -0
- package/dist/node_modules/@devchain/shared/schemas/export-schema.d.ts +101 -12
- package/dist/node_modules/@devchain/shared/schemas/export-schema.d.ts.map +1 -1
- package/dist/node_modules/@devchain/shared/schemas/export-schema.js +20 -0
- package/dist/node_modules/@devchain/shared/schemas/export-schema.js.map +1 -1
- package/dist/node_modules/@devchain/shared/tsconfig.tsbuildinfo +1 -1
- package/dist/server/modules/agents/controllers/agents.controller.d.ts +15 -0
- package/dist/server/modules/agents/controllers/agents.controller.js +120 -57
- package/dist/server/modules/agents/controllers/agents.controller.js.map +1 -1
- package/dist/server/modules/core/services/preflight.service.d.ts +6 -0
- package/dist/server/modules/core/services/preflight.service.js +143 -57
- package/dist/server/modules/core/services/preflight.service.js.map +1 -1
- package/dist/server/modules/epics/services/epics.service.d.ts +10 -4
- package/dist/server/modules/epics/services/epics.service.js +8 -5
- package/dist/server/modules/epics/services/epics.service.js.map +1 -1
- package/dist/server/modules/events/catalog/epic.created.d.ts +18 -0
- package/dist/server/modules/events/catalog/epic.created.js +8 -0
- package/dist/server/modules/events/catalog/epic.created.js.map +1 -1
- package/dist/server/modules/events/catalog/epic.updated.d.ts +18 -0
- package/dist/server/modules/events/catalog/epic.updated.js +8 -0
- package/dist/server/modules/events/catalog/epic.updated.js.map +1 -1
- package/dist/server/modules/events/catalog/index.d.ts +36 -0
- package/dist/server/modules/events/subscribers/epic-assignment-notifier.subscriber.d.ts +1 -0
- package/dist/server/modules/events/subscribers/epic-assignment-notifier.subscriber.js +33 -2
- package/dist/server/modules/events/subscribers/epic-assignment-notifier.subscriber.js.map +1 -1
- package/dist/server/modules/events/subscribers/review-comment-notifier.subscriber.js +12 -5
- package/dist/server/modules/events/subscribers/review-comment-notifier.subscriber.js.map +1 -1
- package/dist/server/modules/mcp/services/mcp.service.js +16 -2
- package/dist/server/modules/mcp/services/mcp.service.js.map +1 -1
- package/dist/server/modules/mcp/services/terminal-activity.service.d.ts +1 -1
- package/dist/server/modules/mcp/services/terminal-activity.service.js +22 -2
- package/dist/server/modules/mcp/services/terminal-activity.service.js.map +1 -1
- package/dist/server/modules/profiles/controllers/profiles.controller.d.ts +11 -8
- package/dist/server/modules/profiles/controllers/profiles.controller.js +88 -14
- package/dist/server/modules/profiles/controllers/profiles.controller.js.map +1 -1
- package/dist/server/modules/profiles/controllers/provider-configs.controller.d.ts +9 -0
- package/dist/server/modules/profiles/controllers/provider-configs.controller.js +94 -0
- package/dist/server/modules/profiles/controllers/provider-configs.controller.js.map +1 -0
- package/dist/server/modules/profiles/dto.d.ts +81 -6
- package/dist/server/modules/profiles/dto.js +45 -3
- package/dist/server/modules/profiles/dto.js.map +1 -1
- package/dist/server/modules/profiles/profiles.module.js +2 -1
- package/dist/server/modules/profiles/profiles.module.js.map +1 -1
- package/dist/server/modules/projects/controllers/projects.controller.d.ts +78 -19
- package/dist/server/modules/projects/controllers/projects.controller.js +243 -17
- package/dist/server/modules/projects/controllers/projects.controller.js.map +1 -1
- package/dist/server/modules/projects/dtos/export.dto.d.ts +44 -0
- package/dist/server/modules/projects/dtos/export.dto.js +10 -0
- package/dist/server/modules/projects/dtos/export.dto.js.map +1 -1
- package/dist/server/modules/projects/services/projects.service.d.ts +48 -11
- package/dist/server/modules/projects/services/projects.service.js +359 -27
- package/dist/server/modules/projects/services/projects.service.js.map +1 -1
- package/dist/server/modules/providers/controllers/providers.controller.js +12 -7
- package/dist/server/modules/providers/controllers/providers.controller.js.map +1 -1
- package/dist/server/modules/registry/controllers/templates.controller.d.ts +2 -2
- package/dist/server/modules/registry/services/registry-orchestration.service.js +11 -0
- package/dist/server/modules/registry/services/registry-orchestration.service.js.map +1 -1
- package/dist/server/modules/registry/services/template-upgrade.service.js +6 -0
- package/dist/server/modules/registry/services/template-upgrade.service.js.map +1 -1
- package/dist/server/modules/registry/services/unified-template.service.d.ts +2 -1
- package/dist/server/modules/registry/services/unified-template.service.js +61 -0
- package/dist/server/modules/registry/services/unified-template.service.js.map +1 -1
- package/dist/server/modules/reviews/services/reviews.service.js +8 -0
- package/dist/server/modules/reviews/services/reviews.service.js.map +1 -1
- package/dist/server/modules/sessions/services/activity-tracker.service.d.ts +2 -0
- package/dist/server/modules/sessions/services/activity-tracker.service.js +20 -0
- package/dist/server/modules/sessions/services/activity-tracker.service.js.map +1 -1
- package/dist/server/modules/sessions/services/sessions-message-pool.service.js +2 -2
- package/dist/server/modules/sessions/services/sessions-message-pool.service.js.map +1 -1
- package/dist/server/modules/sessions/services/sessions.service.d.ts +3 -1
- package/dist/server/modules/sessions/services/sessions.service.js +275 -144
- package/dist/server/modules/sessions/services/sessions.service.js.map +1 -1
- package/dist/server/modules/sessions/utils/env-builder.d.ts +8 -0
- package/dist/server/modules/sessions/utils/env-builder.js +62 -0
- package/dist/server/modules/sessions/utils/env-builder.js.map +1 -0
- package/dist/server/modules/settings/dtos/settings.dto.d.ts +84 -8
- package/dist/server/modules/settings/dtos/settings.dto.js +15 -2
- package/dist/server/modules/settings/dtos/settings.dto.js.map +1 -1
- package/dist/server/modules/settings/services/settings.service.d.ts +10 -1
- package/dist/server/modules/settings/services/settings.service.js +275 -0
- package/dist/server/modules/settings/services/settings.service.js.map +1 -1
- package/dist/server/modules/storage/db/db.provider.js +2 -0
- package/dist/server/modules/storage/db/db.provider.js.map +1 -1
- package/dist/server/modules/storage/db/schema.d.ts +185 -28
- package/dist/server/modules/storage/db/schema.js +32 -6
- package/dist/server/modules/storage/db/schema.js.map +1 -1
- package/dist/server/modules/storage/interfaces/storage.interface.d.ts +17 -1
- package/dist/server/modules/storage/interfaces/storage.interface.js.map +1 -1
- package/dist/server/modules/storage/local/local-storage.service.d.ts +15 -1
- package/dist/server/modules/storage/local/local-storage.service.js +352 -21
- package/dist/server/modules/storage/local/local-storage.service.js.map +1 -1
- package/dist/server/modules/storage/models/domain.models.d.ts +26 -7
- package/dist/server/modules/subscribers/actions/restart-agent.action.js +17 -19
- package/dist/server/modules/subscribers/actions/restart-agent.action.js.map +1 -1
- package/dist/server/modules/subscribers/events/event-fields-catalog.js +4 -0
- package/dist/server/modules/subscribers/events/event-fields-catalog.js.map +1 -1
- package/dist/server/modules/terminal/services/pty.service.js +6 -1
- package/dist/server/modules/terminal/services/pty.service.js.map +1 -1
- package/dist/server/modules/watchers/services/watcher-runner.service.js +27 -8
- package/dist/server/modules/watchers/services/watcher-runner.service.js.map +1 -1
- package/dist/{templates/claude-opus.json → server/templates/dev-loop.json} +365 -209
- package/dist/server/tsconfig.tsbuildinfo +1 -1
- package/dist/server/ui/assets/{ReviewDetailPage-I54h-2L-.js → ReviewDetailPage-YlFGGJv7.js} +2 -2
- package/dist/server/ui/assets/ReviewsPage-Diegg4jt.js +19 -0
- package/dist/server/ui/assets/index-DuMIsIyY.css +32 -0
- package/dist/server/ui/assets/index-sEtQpiB4.js +868 -0
- package/dist/server/ui/assets/{useReviewSubscription-C0GEsiRw.js → useReviewSubscription-CMhQ2m0h.js} +22 -22
- package/dist/server/ui/index.html +2 -2
- package/dist/{server/templates/claude-opus.json → templates/dev-loop.json} +365 -209
- package/package.json +9 -4
- package/dist/node_modules/@devchain/shared/schemas/export-schema.spec.d.ts +0 -2
- package/dist/node_modules/@devchain/shared/schemas/export-schema.spec.d.ts.map +0 -1
- package/dist/node_modules/@devchain/shared/schemas/export-schema.spec.js +0 -88
- package/dist/node_modules/@devchain/shared/schemas/export-schema.spec.js.map +0 -1
- package/dist/server/templates/claude-codex-advanced.json +0 -470
- package/dist/server/templates/simple-codex.json +0 -469
- package/dist/server/ui/assets/ReviewsPage-B4ua5hiX.js +0 -19
- package/dist/server/ui/assets/index-CqcmnFBh.css +0 -32
- package/dist/server/ui/assets/index-JbUMpbg7.js +0 -858
- package/dist/templates/claude-codex-advanced.json +0 -470
- package/dist/templates/simple-codex.json +0 -469
|
@@ -190,6 +190,69 @@
|
|
|
190
190
|
"when": 1769880000002,
|
|
191
191
|
"tag": "0026_review_comments_edited_at",
|
|
192
192
|
"breakpoints": true
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"idx": 27,
|
|
196
|
+
"version": "6",
|
|
197
|
+
"when": 1769880010000,
|
|
198
|
+
"tag": "0027_legal_malice",
|
|
199
|
+
"breakpoints": true
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"idx": 28,
|
|
203
|
+
"version": "6",
|
|
204
|
+
"when": 1769880020000,
|
|
205
|
+
"tag": "0028_populate_provider_configs",
|
|
206
|
+
"breakpoints": true
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"idx": 29,
|
|
210
|
+
"version": "6",
|
|
211
|
+
"when": 1769880030000,
|
|
212
|
+
"tag": "0029_merge_profiles_by_family_slug",
|
|
213
|
+
"breakpoints": true
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"idx": 30,
|
|
217
|
+
"version": "6",
|
|
218
|
+
"when": 1769880040000,
|
|
219
|
+
"tag": "0030_set_agents_provider_config_id",
|
|
220
|
+
"breakpoints": true
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"idx": 31,
|
|
224
|
+
"version": "6",
|
|
225
|
+
"when": 1769880100000,
|
|
226
|
+
"tag": "0031_remove_legacy_profile_columns",
|
|
227
|
+
"breakpoints": true
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"idx": 32,
|
|
231
|
+
"version": "6",
|
|
232
|
+
"when": 1769880200000,
|
|
233
|
+
"tag": "0032_agents_provider_config_not_null",
|
|
234
|
+
"breakpoints": true
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"idx": 33,
|
|
238
|
+
"version": "6",
|
|
239
|
+
"when": 1769880300000,
|
|
240
|
+
"tag": "0033_profile_provider_configs_name",
|
|
241
|
+
"breakpoints": true
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"idx": 34,
|
|
245
|
+
"version": "6",
|
|
246
|
+
"when": 1769880400000,
|
|
247
|
+
"tag": "0034_sessions_agent_running_unique",
|
|
248
|
+
"breakpoints": true
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"idx": 35,
|
|
252
|
+
"version": "6",
|
|
253
|
+
"when": 1769880500000,
|
|
254
|
+
"tag": "0035_provider_config_position",
|
|
255
|
+
"breakpoints": true
|
|
193
256
|
}
|
|
194
257
|
]
|
|
195
|
-
}
|
|
258
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
-- Migration Session Guard
|
|
2
|
+
-- Run this BEFORE applying Phase 2 migrations to ensure no active sessions
|
|
3
|
+
-- Usage: sqlite3 ~/.devchain/devchain.db < migration-guard.sql
|
|
4
|
+
-- If any output is shown, DO NOT proceed with migration
|
|
5
|
+
|
|
6
|
+
SELECT
|
|
7
|
+
'ERROR: Active sessions detected. Stop all sessions before migrating.' as message,
|
|
8
|
+
id as session_id,
|
|
9
|
+
agent_id,
|
|
10
|
+
status,
|
|
11
|
+
started_at
|
|
12
|
+
FROM sessions
|
|
13
|
+
WHERE status = 'running'
|
|
14
|
+
AND ended_at IS NULL;
|
|
15
|
+
|
|
16
|
+
-- This query returns nothing if safe to proceed
|
|
17
|
+
-- If rows are returned, migration should NOT proceed
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
-- Phase 2 Rollback Script
|
|
2
|
+
-- WARNING: This rollback is DESTRUCTIVE and will lose data created after migration
|
|
3
|
+
--
|
|
4
|
+
-- RECOMMENDED APPROACH: Restore from backup instead of using this script
|
|
5
|
+
--
|
|
6
|
+
-- Before running Phase 2 migrations, create a backup:
|
|
7
|
+
-- cp ~/.devchain/devchain.db ~/.devchain/devchain.db.backup-$(date +%Y%m%d-%H%M%S)
|
|
8
|
+
--
|
|
9
|
+
-- To rollback, restore from backup:
|
|
10
|
+
-- cp ~/.devchain/devchain.db.backup-YYYYMMDD-HHMMSS ~/.devchain/devchain.db
|
|
11
|
+
|
|
12
|
+
-- ============================================
|
|
13
|
+
-- ROLLBACK STEP 1: Clear agents.providerConfigId
|
|
14
|
+
-- Reverses: 0030_set_agents_provider_config_id.sql
|
|
15
|
+
-- ============================================
|
|
16
|
+
UPDATE agents SET provider_config_id = NULL;
|
|
17
|
+
|
|
18
|
+
--> statement-breakpoint
|
|
19
|
+
|
|
20
|
+
-- ============================================
|
|
21
|
+
-- ROLLBACK STEP 2: Delete all provider configs
|
|
22
|
+
-- Reverses: 0028_populate_provider_configs.sql and configs moved by merge
|
|
23
|
+
-- NOTE: This loses any configs created/modified after migration
|
|
24
|
+
-- ============================================
|
|
25
|
+
DELETE FROM profile_provider_configs;
|
|
26
|
+
|
|
27
|
+
--> statement-breakpoint
|
|
28
|
+
|
|
29
|
+
-- ============================================
|
|
30
|
+
-- ROLLBACK STEP 3: Cannot easily reverse profile merge (0029)
|
|
31
|
+
-- The merged profiles were DELETED - they cannot be restored without backup
|
|
32
|
+
--
|
|
33
|
+
-- Options:
|
|
34
|
+
-- 1. Restore from backup (RECOMMENDED)
|
|
35
|
+
-- 2. Recreate profiles manually from application state
|
|
36
|
+
-- 3. Accept merged state (profiles remain merged)
|
|
37
|
+
-- ============================================
|
|
38
|
+
|
|
39
|
+
-- Remove migration records from tracking table
|
|
40
|
+
DELETE FROM __drizzle_migrations WHERE hash IN (
|
|
41
|
+
'0028_populate_provider_configs',
|
|
42
|
+
'0029_merge_profiles_by_family_slug',
|
|
43
|
+
'0030_set_agents_provider_config_id'
|
|
44
|
+
);
|
|
@@ -80,6 +80,22 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
80
80
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
81
81
|
temperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
82
82
|
maxTokens: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
83
|
+
providerConfigs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
84
|
+
name: z.ZodString;
|
|
85
|
+
providerName: z.ZodString;
|
|
86
|
+
options: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
87
|
+
env: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
88
|
+
}, "strip", z.ZodTypeAny, {
|
|
89
|
+
name: string;
|
|
90
|
+
providerName: string;
|
|
91
|
+
options?: string | null | undefined;
|
|
92
|
+
env?: Record<string, string> | null | undefined;
|
|
93
|
+
}, {
|
|
94
|
+
name: string;
|
|
95
|
+
providerName: string;
|
|
96
|
+
options?: string | null | undefined;
|
|
97
|
+
env?: Record<string, string> | null | undefined;
|
|
98
|
+
}>, "many">>;
|
|
83
99
|
}, "strip", z.ZodTypeAny, {
|
|
84
100
|
name: string;
|
|
85
101
|
provider: {
|
|
@@ -92,6 +108,12 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
92
108
|
instructions?: string | null | undefined;
|
|
93
109
|
temperature?: number | null | undefined;
|
|
94
110
|
maxTokens?: number | null | undefined;
|
|
111
|
+
providerConfigs?: {
|
|
112
|
+
name: string;
|
|
113
|
+
providerName: string;
|
|
114
|
+
options?: string | null | undefined;
|
|
115
|
+
env?: Record<string, string> | null | undefined;
|
|
116
|
+
}[] | undefined;
|
|
95
117
|
}, {
|
|
96
118
|
name: string;
|
|
97
119
|
provider: {
|
|
@@ -104,22 +126,31 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
104
126
|
instructions?: string | null | undefined;
|
|
105
127
|
temperature?: number | null | undefined;
|
|
106
128
|
maxTokens?: number | null | undefined;
|
|
129
|
+
providerConfigs?: {
|
|
130
|
+
name: string;
|
|
131
|
+
providerName: string;
|
|
132
|
+
options?: string | null | undefined;
|
|
133
|
+
env?: Record<string, string> | null | undefined;
|
|
134
|
+
}[] | undefined;
|
|
107
135
|
}>, "many">>>;
|
|
108
136
|
agents: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
109
137
|
id: z.ZodOptional<z.ZodString>;
|
|
110
138
|
name: z.ZodString;
|
|
111
139
|
profileId: z.ZodOptional<z.ZodString>;
|
|
112
140
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
141
|
+
providerConfigName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
113
142
|
}, "strip", z.ZodTypeAny, {
|
|
114
143
|
name: string;
|
|
115
144
|
description?: string | null | undefined;
|
|
116
145
|
id?: string | undefined;
|
|
117
146
|
profileId?: string | undefined;
|
|
147
|
+
providerConfigName?: string | null | undefined;
|
|
118
148
|
}, {
|
|
119
149
|
name: string;
|
|
120
150
|
description?: string | null | undefined;
|
|
121
151
|
id?: string | undefined;
|
|
122
152
|
profileId?: string | undefined;
|
|
153
|
+
providerConfigName?: string | null | undefined;
|
|
123
154
|
}>, "many">>>;
|
|
124
155
|
statuses: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
125
156
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -210,11 +241,11 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
210
241
|
pattern: z.ZodString;
|
|
211
242
|
flags: z.ZodOptional<z.ZodString>;
|
|
212
243
|
}, "strip", z.ZodTypeAny, {
|
|
213
|
-
type: "
|
|
244
|
+
type: "regex" | "contains" | "not_contains";
|
|
214
245
|
pattern: string;
|
|
215
246
|
flags?: string | undefined;
|
|
216
247
|
}, {
|
|
217
|
-
type: "
|
|
248
|
+
type: "regex" | "contains" | "not_contains";
|
|
218
249
|
pattern: string;
|
|
219
250
|
flags?: string | undefined;
|
|
220
251
|
}>;
|
|
@@ -228,7 +259,7 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
228
259
|
pollIntervalMs: number;
|
|
229
260
|
viewportLines: number;
|
|
230
261
|
condition: {
|
|
231
|
-
type: "
|
|
262
|
+
type: "regex" | "contains" | "not_contains";
|
|
232
263
|
pattern: string;
|
|
233
264
|
flags?: string | undefined;
|
|
234
265
|
};
|
|
@@ -245,7 +276,7 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
245
276
|
pollIntervalMs: number;
|
|
246
277
|
viewportLines: number;
|
|
247
278
|
condition: {
|
|
248
|
-
type: "
|
|
279
|
+
type: "regex" | "contains" | "not_contains";
|
|
249
280
|
pattern: string;
|
|
250
281
|
flags?: string | undefined;
|
|
251
282
|
};
|
|
@@ -269,11 +300,11 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
269
300
|
}, "strip", z.ZodTypeAny, {
|
|
270
301
|
value: string;
|
|
271
302
|
field: string;
|
|
272
|
-
operator: "
|
|
303
|
+
operator: "regex" | "contains" | "equals";
|
|
273
304
|
}, {
|
|
274
305
|
value: string;
|
|
275
306
|
field: string;
|
|
276
|
-
operator: "
|
|
307
|
+
operator: "regex" | "contains" | "equals";
|
|
277
308
|
}>>>;
|
|
278
309
|
actionType: z.ZodString;
|
|
279
310
|
actionInputs: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -315,7 +346,7 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
315
346
|
eventFilter?: {
|
|
316
347
|
value: string;
|
|
317
348
|
field: string;
|
|
318
|
-
operator: "
|
|
349
|
+
operator: "regex" | "contains" | "equals";
|
|
319
350
|
} | null | undefined;
|
|
320
351
|
groupName?: string | null | undefined;
|
|
321
352
|
}, {
|
|
@@ -337,11 +368,39 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
337
368
|
eventFilter?: {
|
|
338
369
|
value: string;
|
|
339
370
|
field: string;
|
|
340
|
-
operator: "
|
|
371
|
+
operator: "regex" | "contains" | "equals";
|
|
341
372
|
} | null | undefined;
|
|
342
373
|
groupName?: string | null | undefined;
|
|
343
374
|
priority?: number | undefined;
|
|
344
375
|
}>, "many">>>;
|
|
376
|
+
presets: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
377
|
+
name: z.ZodString;
|
|
378
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
379
|
+
agentConfigs: z.ZodArray<z.ZodObject<{
|
|
380
|
+
agentName: z.ZodString;
|
|
381
|
+
providerConfigName: z.ZodString;
|
|
382
|
+
}, "strip", z.ZodTypeAny, {
|
|
383
|
+
providerConfigName: string;
|
|
384
|
+
agentName: string;
|
|
385
|
+
}, {
|
|
386
|
+
providerConfigName: string;
|
|
387
|
+
agentName: string;
|
|
388
|
+
}>, "many">;
|
|
389
|
+
}, "strip", z.ZodTypeAny, {
|
|
390
|
+
name: string;
|
|
391
|
+
agentConfigs: {
|
|
392
|
+
providerConfigName: string;
|
|
393
|
+
agentName: string;
|
|
394
|
+
}[];
|
|
395
|
+
description?: string | null | undefined;
|
|
396
|
+
}, {
|
|
397
|
+
name: string;
|
|
398
|
+
agentConfigs: {
|
|
399
|
+
providerConfigName: string;
|
|
400
|
+
agentName: string;
|
|
401
|
+
}[];
|
|
402
|
+
description?: string | null | undefined;
|
|
403
|
+
}>, "many">>>;
|
|
345
404
|
_manifest: z.ZodOptional<z.ZodObject<{
|
|
346
405
|
slug: z.ZodOptional<z.ZodString>;
|
|
347
406
|
name: z.ZodString;
|
|
@@ -403,12 +462,19 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
403
462
|
instructions?: string | null | undefined;
|
|
404
463
|
temperature?: number | null | undefined;
|
|
405
464
|
maxTokens?: number | null | undefined;
|
|
465
|
+
providerConfigs?: {
|
|
466
|
+
name: string;
|
|
467
|
+
providerName: string;
|
|
468
|
+
options?: string | null | undefined;
|
|
469
|
+
env?: Record<string, string> | null | undefined;
|
|
470
|
+
}[] | undefined;
|
|
406
471
|
}[];
|
|
407
472
|
agents: {
|
|
408
473
|
name: string;
|
|
409
474
|
description?: string | null | undefined;
|
|
410
475
|
id?: string | undefined;
|
|
411
476
|
profileId?: string | undefined;
|
|
477
|
+
providerConfigName?: string | null | undefined;
|
|
412
478
|
}[];
|
|
413
479
|
statuses: {
|
|
414
480
|
label: string;
|
|
@@ -424,7 +490,7 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
424
490
|
pollIntervalMs: number;
|
|
425
491
|
viewportLines: number;
|
|
426
492
|
condition: {
|
|
427
|
-
type: "
|
|
493
|
+
type: "regex" | "contains" | "not_contains";
|
|
428
494
|
pattern: string;
|
|
429
495
|
flags?: string | undefined;
|
|
430
496
|
};
|
|
@@ -455,10 +521,18 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
455
521
|
eventFilter?: {
|
|
456
522
|
value: string;
|
|
457
523
|
field: string;
|
|
458
|
-
operator: "
|
|
524
|
+
operator: "regex" | "contains" | "equals";
|
|
459
525
|
} | null | undefined;
|
|
460
526
|
groupName?: string | null | undefined;
|
|
461
527
|
}[];
|
|
528
|
+
presets: {
|
|
529
|
+
name: string;
|
|
530
|
+
agentConfigs: {
|
|
531
|
+
providerConfigName: string;
|
|
532
|
+
agentName: string;
|
|
533
|
+
}[];
|
|
534
|
+
description?: string | null | undefined;
|
|
535
|
+
}[];
|
|
462
536
|
exportedAt?: string | undefined;
|
|
463
537
|
initialPrompt?: {
|
|
464
538
|
title?: string | undefined;
|
|
@@ -512,12 +586,19 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
512
586
|
instructions?: string | null | undefined;
|
|
513
587
|
temperature?: number | null | undefined;
|
|
514
588
|
maxTokens?: number | null | undefined;
|
|
589
|
+
providerConfigs?: {
|
|
590
|
+
name: string;
|
|
591
|
+
providerName: string;
|
|
592
|
+
options?: string | null | undefined;
|
|
593
|
+
env?: Record<string, string> | null | undefined;
|
|
594
|
+
}[] | undefined;
|
|
515
595
|
}[] | undefined;
|
|
516
596
|
agents?: {
|
|
517
597
|
name: string;
|
|
518
598
|
description?: string | null | undefined;
|
|
519
599
|
id?: string | undefined;
|
|
520
600
|
profileId?: string | undefined;
|
|
601
|
+
providerConfigName?: string | null | undefined;
|
|
521
602
|
}[] | undefined;
|
|
522
603
|
statuses?: {
|
|
523
604
|
label: string;
|
|
@@ -549,7 +630,7 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
549
630
|
pollIntervalMs: number;
|
|
550
631
|
viewportLines: number;
|
|
551
632
|
condition: {
|
|
552
|
-
type: "
|
|
633
|
+
type: "regex" | "contains" | "not_contains";
|
|
553
634
|
pattern: string;
|
|
554
635
|
flags?: string | undefined;
|
|
555
636
|
};
|
|
@@ -579,11 +660,19 @@ export declare const ExportSchema: z.ZodObject<{
|
|
|
579
660
|
eventFilter?: {
|
|
580
661
|
value: string;
|
|
581
662
|
field: string;
|
|
582
|
-
operator: "
|
|
663
|
+
operator: "regex" | "contains" | "equals";
|
|
583
664
|
} | null | undefined;
|
|
584
665
|
groupName?: string | null | undefined;
|
|
585
666
|
priority?: number | undefined;
|
|
586
667
|
}[] | undefined;
|
|
668
|
+
presets?: {
|
|
669
|
+
name: string;
|
|
670
|
+
agentConfigs: {
|
|
671
|
+
providerConfigName: string;
|
|
672
|
+
agentName: string;
|
|
673
|
+
}[];
|
|
674
|
+
description?: string | null | undefined;
|
|
675
|
+
}[] | undefined;
|
|
587
676
|
_manifest?: {
|
|
588
677
|
name: string;
|
|
589
678
|
slug?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"export-schema.d.ts","sourceRoot":"","sources":["../../src/schemas/export-schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AA8BxB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAehB,CAAC;AAGZ,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAM1D,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"export-schema.d.ts","sourceRoot":"","sources":["../../src/schemas/export-schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AA8BxB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAehB,CAAC;AAGZ,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAM1D,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4Kd,CAAC;AAGZ,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAGtD,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC"}
|
|
@@ -45,6 +45,14 @@ export const ExportSchema = z
|
|
|
45
45
|
instructions: z.string().nullable().optional(),
|
|
46
46
|
temperature: z.number().nullable().optional(),
|
|
47
47
|
maxTokens: z.number().int().nullable().optional(),
|
|
48
|
+
providerConfigs: z
|
|
49
|
+
.array(z.object({
|
|
50
|
+
name: z.string().min(1),
|
|
51
|
+
providerName: z.string().min(1),
|
|
52
|
+
options: z.string().nullable().optional(),
|
|
53
|
+
env: z.record(z.string(), z.string()).nullable().optional(),
|
|
54
|
+
}))
|
|
55
|
+
.optional(),
|
|
48
56
|
}))
|
|
49
57
|
.optional()
|
|
50
58
|
.default([]),
|
|
@@ -54,6 +62,7 @@ export const ExportSchema = z
|
|
|
54
62
|
name: z.string().min(1),
|
|
55
63
|
profileId: z.string().uuid().optional(),
|
|
56
64
|
description: z.string().nullable().optional(),
|
|
65
|
+
providerConfigName: z.string().nullable().optional(),
|
|
57
66
|
}))
|
|
58
67
|
.optional()
|
|
59
68
|
.default([]),
|
|
@@ -138,6 +147,17 @@ export const ExportSchema = z
|
|
|
138
147
|
}))
|
|
139
148
|
.optional()
|
|
140
149
|
.default([]),
|
|
150
|
+
presets: z
|
|
151
|
+
.array(z.object({
|
|
152
|
+
name: z.string().min(1),
|
|
153
|
+
description: z.string().nullable().optional(),
|
|
154
|
+
agentConfigs: z.array(z.object({
|
|
155
|
+
agentName: z.string().min(1),
|
|
156
|
+
providerConfigName: z.string().min(1),
|
|
157
|
+
})),
|
|
158
|
+
}))
|
|
159
|
+
.optional()
|
|
160
|
+
.default([]),
|
|
141
161
|
_manifest: ManifestSchema.optional(),
|
|
142
162
|
})
|
|
143
163
|
.strict();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"export-schema.js","sourceRoot":"","sources":["../../src/schemas/export-schema.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"export-schema.js","sourceRoot":"","sources":["../../src/schemas/export-schema.ts"],"names":[],"mappings":"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"}
|