@inkeep/agents-core 0.0.0-dev-20260211220939 → 0.0.0-dev-20260211232802
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/client-exports.d.ts +4 -4
- package/dist/data-access/manage/agents.d.ts +47 -47
- package/dist/data-access/manage/artifactComponents.d.ts +12 -12
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +8 -8
- package/dist/data-access/manage/functionTools.d.ts +18 -18
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +28 -28
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +21 -21
- package/dist/data-access/manage/tools.d.ts +24 -24
- package/dist/data-access/runtime/apiKeys.d.ts +16 -16
- package/dist/data-access/runtime/conversations.d.ts +20 -20
- package/dist/data-access/runtime/messages.d.ts +18 -18
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/manage-schema.d.ts +302 -302
- package/dist/db/runtime/runtime-schema.d.ts +245 -245
- package/dist/validation/schemas.d.ts +1531 -1531
- package/drizzle/runtime/0013_milky_krista_starr.sql +2 -0
- package/drizzle/runtime/meta/0012_snapshot.json +1 -1
- package/drizzle/runtime/meta/0013_snapshot.json +3622 -0
- package/drizzle/runtime/meta/_journal.json +7 -0
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { Part } from "../../types/a2a.js";
|
|
|
2
2
|
import { ConversationMetadata, MessageContent, MessageMetadata, TaskMetadataConfig } from "../../types/utility.js";
|
|
3
3
|
import { account, deviceCode, invitation, member, organization, session, ssoProvider, user, verification } from "../../auth/auth-schema.js";
|
|
4
4
|
import * as drizzle_orm95 from "drizzle-orm";
|
|
5
|
-
import * as
|
|
5
|
+
import * as drizzle_orm_pg_core1750 from "drizzle-orm/pg-core";
|
|
6
6
|
|
|
7
7
|
//#region src/db/runtime/runtime-schema.d.ts
|
|
8
8
|
declare namespace runtime_schema_d_exports {
|
|
@@ -15,11 +15,11 @@ declare namespace runtime_schema_d_exports {
|
|
|
15
15
|
*
|
|
16
16
|
* Named 'project_metadata' to avoid conflict with the manage-schema 'projects' table.
|
|
17
17
|
*/
|
|
18
|
-
declare const projectMetadata:
|
|
18
|
+
declare const projectMetadata: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
19
19
|
name: "project_metadata";
|
|
20
20
|
schema: undefined;
|
|
21
21
|
columns: {
|
|
22
|
-
id:
|
|
22
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
23
23
|
name: "id";
|
|
24
24
|
tableName: "project_metadata";
|
|
25
25
|
dataType: "string";
|
|
@@ -38,7 +38,7 @@ declare const projectMetadata: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
38
38
|
}, {}, {
|
|
39
39
|
length: 256;
|
|
40
40
|
}>;
|
|
41
|
-
tenantId:
|
|
41
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
42
42
|
name: "tenant_id";
|
|
43
43
|
tableName: "project_metadata";
|
|
44
44
|
dataType: "string";
|
|
@@ -57,7 +57,7 @@ declare const projectMetadata: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
57
57
|
}, {}, {
|
|
58
58
|
length: 256;
|
|
59
59
|
}>;
|
|
60
|
-
createdAt:
|
|
60
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
61
61
|
name: "created_at";
|
|
62
62
|
tableName: "project_metadata";
|
|
63
63
|
dataType: "string";
|
|
@@ -74,7 +74,7 @@ declare const projectMetadata: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
74
74
|
identity: undefined;
|
|
75
75
|
generated: undefined;
|
|
76
76
|
}, {}, {}>;
|
|
77
|
-
createdBy:
|
|
77
|
+
createdBy: drizzle_orm_pg_core1750.PgColumn<{
|
|
78
78
|
name: "created_by";
|
|
79
79
|
tableName: "project_metadata";
|
|
80
80
|
dataType: "string";
|
|
@@ -93,7 +93,7 @@ declare const projectMetadata: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
93
93
|
}, {}, {
|
|
94
94
|
length: 256;
|
|
95
95
|
}>;
|
|
96
|
-
mainBranchName:
|
|
96
|
+
mainBranchName: drizzle_orm_pg_core1750.PgColumn<{
|
|
97
97
|
name: "main_branch_name";
|
|
98
98
|
tableName: "project_metadata";
|
|
99
99
|
dataType: "string";
|
|
@@ -115,11 +115,11 @@ declare const projectMetadata: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
115
115
|
};
|
|
116
116
|
dialect: "pg";
|
|
117
117
|
}>;
|
|
118
|
-
declare const conversations:
|
|
118
|
+
declare const conversations: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
119
119
|
name: "conversations";
|
|
120
120
|
schema: undefined;
|
|
121
121
|
columns: {
|
|
122
|
-
createdAt:
|
|
122
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
123
123
|
name: "created_at";
|
|
124
124
|
tableName: "conversations";
|
|
125
125
|
dataType: "string";
|
|
@@ -136,7 +136,7 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
136
136
|
identity: undefined;
|
|
137
137
|
generated: undefined;
|
|
138
138
|
}, {}, {}>;
|
|
139
|
-
updatedAt:
|
|
139
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
140
140
|
name: "updated_at";
|
|
141
141
|
tableName: "conversations";
|
|
142
142
|
dataType: "string";
|
|
@@ -153,7 +153,7 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
153
153
|
identity: undefined;
|
|
154
154
|
generated: undefined;
|
|
155
155
|
}, {}, {}>;
|
|
156
|
-
userId:
|
|
156
|
+
userId: drizzle_orm_pg_core1750.PgColumn<{
|
|
157
157
|
name: "user_id";
|
|
158
158
|
tableName: "conversations";
|
|
159
159
|
dataType: "string";
|
|
@@ -172,7 +172,7 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
172
172
|
}, {}, {
|
|
173
173
|
length: 256;
|
|
174
174
|
}>;
|
|
175
|
-
agentId:
|
|
175
|
+
agentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
176
176
|
name: "agent_id";
|
|
177
177
|
tableName: "conversations";
|
|
178
178
|
dataType: "string";
|
|
@@ -191,7 +191,7 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
191
191
|
}, {}, {
|
|
192
192
|
length: 256;
|
|
193
193
|
}>;
|
|
194
|
-
activeSubAgentId:
|
|
194
|
+
activeSubAgentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
195
195
|
name: "active_sub_agent_id";
|
|
196
196
|
tableName: "conversations";
|
|
197
197
|
dataType: "string";
|
|
@@ -210,7 +210,7 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
210
210
|
}, {}, {
|
|
211
211
|
length: 256;
|
|
212
212
|
}>;
|
|
213
|
-
ref:
|
|
213
|
+
ref: drizzle_orm_pg_core1750.PgColumn<{
|
|
214
214
|
name: "ref";
|
|
215
215
|
tableName: "conversations";
|
|
216
216
|
dataType: "json";
|
|
@@ -237,7 +237,7 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
237
237
|
hash: string;
|
|
238
238
|
};
|
|
239
239
|
}>;
|
|
240
|
-
title:
|
|
240
|
+
title: drizzle_orm_pg_core1750.PgColumn<{
|
|
241
241
|
name: "title";
|
|
242
242
|
tableName: "conversations";
|
|
243
243
|
dataType: "string";
|
|
@@ -254,7 +254,7 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
254
254
|
identity: undefined;
|
|
255
255
|
generated: undefined;
|
|
256
256
|
}, {}, {}>;
|
|
257
|
-
lastContextResolution:
|
|
257
|
+
lastContextResolution: drizzle_orm_pg_core1750.PgColumn<{
|
|
258
258
|
name: "last_context_resolution";
|
|
259
259
|
tableName: "conversations";
|
|
260
260
|
dataType: "string";
|
|
@@ -271,7 +271,7 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
271
271
|
identity: undefined;
|
|
272
272
|
generated: undefined;
|
|
273
273
|
}, {}, {}>;
|
|
274
|
-
metadata:
|
|
274
|
+
metadata: drizzle_orm_pg_core1750.PgColumn<{
|
|
275
275
|
name: "metadata";
|
|
276
276
|
tableName: "conversations";
|
|
277
277
|
dataType: "json";
|
|
@@ -290,7 +290,7 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
290
290
|
}, {}, {
|
|
291
291
|
$type: ConversationMetadata;
|
|
292
292
|
}>;
|
|
293
|
-
projectId:
|
|
293
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
294
294
|
name: "project_id";
|
|
295
295
|
tableName: "conversations";
|
|
296
296
|
dataType: "string";
|
|
@@ -309,7 +309,7 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
309
309
|
}, {}, {
|
|
310
310
|
length: 256;
|
|
311
311
|
}>;
|
|
312
|
-
tenantId:
|
|
312
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
313
313
|
name: "tenant_id";
|
|
314
314
|
tableName: "conversations";
|
|
315
315
|
dataType: "string";
|
|
@@ -328,7 +328,7 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
328
328
|
}, {}, {
|
|
329
329
|
length: 256;
|
|
330
330
|
}>;
|
|
331
|
-
id:
|
|
331
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
332
332
|
name: "id";
|
|
333
333
|
tableName: "conversations";
|
|
334
334
|
dataType: "string";
|
|
@@ -350,11 +350,11 @@ declare const conversations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
350
350
|
};
|
|
351
351
|
dialect: "pg";
|
|
352
352
|
}>;
|
|
353
|
-
declare const tasks:
|
|
353
|
+
declare const tasks: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
354
354
|
name: "tasks";
|
|
355
355
|
schema: undefined;
|
|
356
356
|
columns: {
|
|
357
|
-
createdAt:
|
|
357
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
358
358
|
name: "created_at";
|
|
359
359
|
tableName: "tasks";
|
|
360
360
|
dataType: "string";
|
|
@@ -371,7 +371,7 @@ declare const tasks: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
371
371
|
identity: undefined;
|
|
372
372
|
generated: undefined;
|
|
373
373
|
}, {}, {}>;
|
|
374
|
-
updatedAt:
|
|
374
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
375
375
|
name: "updated_at";
|
|
376
376
|
tableName: "tasks";
|
|
377
377
|
dataType: "string";
|
|
@@ -388,7 +388,7 @@ declare const tasks: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
388
388
|
identity: undefined;
|
|
389
389
|
generated: undefined;
|
|
390
390
|
}, {}, {}>;
|
|
391
|
-
contextId:
|
|
391
|
+
contextId: drizzle_orm_pg_core1750.PgColumn<{
|
|
392
392
|
name: "context_id";
|
|
393
393
|
tableName: "tasks";
|
|
394
394
|
dataType: "string";
|
|
@@ -407,7 +407,7 @@ declare const tasks: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
407
407
|
}, {}, {
|
|
408
408
|
length: 256;
|
|
409
409
|
}>;
|
|
410
|
-
ref:
|
|
410
|
+
ref: drizzle_orm_pg_core1750.PgColumn<{
|
|
411
411
|
name: "ref";
|
|
412
412
|
tableName: "tasks";
|
|
413
413
|
dataType: "json";
|
|
@@ -434,7 +434,7 @@ declare const tasks: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
434
434
|
hash: string;
|
|
435
435
|
};
|
|
436
436
|
}>;
|
|
437
|
-
status:
|
|
437
|
+
status: drizzle_orm_pg_core1750.PgColumn<{
|
|
438
438
|
name: "status";
|
|
439
439
|
tableName: "tasks";
|
|
440
440
|
dataType: "string";
|
|
@@ -453,7 +453,7 @@ declare const tasks: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
453
453
|
}, {}, {
|
|
454
454
|
length: 256;
|
|
455
455
|
}>;
|
|
456
|
-
metadata:
|
|
456
|
+
metadata: drizzle_orm_pg_core1750.PgColumn<{
|
|
457
457
|
name: "metadata";
|
|
458
458
|
tableName: "tasks";
|
|
459
459
|
dataType: "json";
|
|
@@ -472,7 +472,7 @@ declare const tasks: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
472
472
|
}, {}, {
|
|
473
473
|
$type: TaskMetadataConfig;
|
|
474
474
|
}>;
|
|
475
|
-
subAgentId:
|
|
475
|
+
subAgentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
476
476
|
name: "sub_agent_id";
|
|
477
477
|
tableName: "tasks";
|
|
478
478
|
dataType: "string";
|
|
@@ -491,7 +491,7 @@ declare const tasks: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
491
491
|
}, {}, {
|
|
492
492
|
length: 256;
|
|
493
493
|
}>;
|
|
494
|
-
agentId:
|
|
494
|
+
agentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
495
495
|
name: "agent_id";
|
|
496
496
|
tableName: "tasks";
|
|
497
497
|
dataType: "string";
|
|
@@ -510,7 +510,7 @@ declare const tasks: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
510
510
|
}, {}, {
|
|
511
511
|
length: 256;
|
|
512
512
|
}>;
|
|
513
|
-
projectId:
|
|
513
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
514
514
|
name: "project_id";
|
|
515
515
|
tableName: "tasks";
|
|
516
516
|
dataType: "string";
|
|
@@ -529,7 +529,7 @@ declare const tasks: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
529
529
|
}, {}, {
|
|
530
530
|
length: 256;
|
|
531
531
|
}>;
|
|
532
|
-
tenantId:
|
|
532
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
533
533
|
name: "tenant_id";
|
|
534
534
|
tableName: "tasks";
|
|
535
535
|
dataType: "string";
|
|
@@ -548,7 +548,7 @@ declare const tasks: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
548
548
|
}, {}, {
|
|
549
549
|
length: 256;
|
|
550
550
|
}>;
|
|
551
|
-
id:
|
|
551
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
552
552
|
name: "id";
|
|
553
553
|
tableName: "tasks";
|
|
554
554
|
dataType: "string";
|
|
@@ -570,11 +570,11 @@ declare const tasks: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
570
570
|
};
|
|
571
571
|
dialect: "pg";
|
|
572
572
|
}>;
|
|
573
|
-
declare const apiKeys:
|
|
573
|
+
declare const apiKeys: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
574
574
|
name: "api_keys";
|
|
575
575
|
schema: undefined;
|
|
576
576
|
columns: {
|
|
577
|
-
createdAt:
|
|
577
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
578
578
|
name: "created_at";
|
|
579
579
|
tableName: "api_keys";
|
|
580
580
|
dataType: "string";
|
|
@@ -591,7 +591,7 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
591
591
|
identity: undefined;
|
|
592
592
|
generated: undefined;
|
|
593
593
|
}, {}, {}>;
|
|
594
|
-
updatedAt:
|
|
594
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
595
595
|
name: "updated_at";
|
|
596
596
|
tableName: "api_keys";
|
|
597
597
|
dataType: "string";
|
|
@@ -608,7 +608,7 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
608
608
|
identity: undefined;
|
|
609
609
|
generated: undefined;
|
|
610
610
|
}, {}, {}>;
|
|
611
|
-
agentId:
|
|
611
|
+
agentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
612
612
|
name: "agent_id";
|
|
613
613
|
tableName: "api_keys";
|
|
614
614
|
dataType: "string";
|
|
@@ -627,7 +627,7 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
627
627
|
}, {}, {
|
|
628
628
|
length: 256;
|
|
629
629
|
}>;
|
|
630
|
-
publicId:
|
|
630
|
+
publicId: drizzle_orm_pg_core1750.PgColumn<{
|
|
631
631
|
name: "public_id";
|
|
632
632
|
tableName: "api_keys";
|
|
633
633
|
dataType: "string";
|
|
@@ -646,7 +646,7 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
646
646
|
}, {}, {
|
|
647
647
|
length: 256;
|
|
648
648
|
}>;
|
|
649
|
-
keyHash:
|
|
649
|
+
keyHash: drizzle_orm_pg_core1750.PgColumn<{
|
|
650
650
|
name: "key_hash";
|
|
651
651
|
tableName: "api_keys";
|
|
652
652
|
dataType: "string";
|
|
@@ -665,7 +665,7 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
665
665
|
}, {}, {
|
|
666
666
|
length: 256;
|
|
667
667
|
}>;
|
|
668
|
-
keyPrefix:
|
|
668
|
+
keyPrefix: drizzle_orm_pg_core1750.PgColumn<{
|
|
669
669
|
name: "key_prefix";
|
|
670
670
|
tableName: "api_keys";
|
|
671
671
|
dataType: "string";
|
|
@@ -684,7 +684,7 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
684
684
|
}, {}, {
|
|
685
685
|
length: 256;
|
|
686
686
|
}>;
|
|
687
|
-
name:
|
|
687
|
+
name: drizzle_orm_pg_core1750.PgColumn<{
|
|
688
688
|
name: "name";
|
|
689
689
|
tableName: "api_keys";
|
|
690
690
|
dataType: "string";
|
|
@@ -703,7 +703,7 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
703
703
|
}, {}, {
|
|
704
704
|
length: 256;
|
|
705
705
|
}>;
|
|
706
|
-
lastUsedAt:
|
|
706
|
+
lastUsedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
707
707
|
name: "last_used_at";
|
|
708
708
|
tableName: "api_keys";
|
|
709
709
|
dataType: "string";
|
|
@@ -720,7 +720,7 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
720
720
|
identity: undefined;
|
|
721
721
|
generated: undefined;
|
|
722
722
|
}, {}, {}>;
|
|
723
|
-
expiresAt:
|
|
723
|
+
expiresAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
724
724
|
name: "expires_at";
|
|
725
725
|
tableName: "api_keys";
|
|
726
726
|
dataType: "string";
|
|
@@ -737,7 +737,7 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
737
737
|
identity: undefined;
|
|
738
738
|
generated: undefined;
|
|
739
739
|
}, {}, {}>;
|
|
740
|
-
projectId:
|
|
740
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
741
741
|
name: "project_id";
|
|
742
742
|
tableName: "api_keys";
|
|
743
743
|
dataType: "string";
|
|
@@ -756,7 +756,7 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
756
756
|
}, {}, {
|
|
757
757
|
length: 256;
|
|
758
758
|
}>;
|
|
759
|
-
tenantId:
|
|
759
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
760
760
|
name: "tenant_id";
|
|
761
761
|
tableName: "api_keys";
|
|
762
762
|
dataType: "string";
|
|
@@ -775,7 +775,7 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
775
775
|
}, {}, {
|
|
776
776
|
length: 256;
|
|
777
777
|
}>;
|
|
778
|
-
id:
|
|
778
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
779
779
|
name: "id";
|
|
780
780
|
tableName: "api_keys";
|
|
781
781
|
dataType: "string";
|
|
@@ -804,11 +804,11 @@ declare const apiKeys: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
804
804
|
* Application code must enforce referential integrity for triggerId.
|
|
805
805
|
* Can optionally link to conversations when the trigger creates one.
|
|
806
806
|
*/
|
|
807
|
-
declare const triggerInvocations:
|
|
807
|
+
declare const triggerInvocations: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
808
808
|
name: "trigger_invocations";
|
|
809
809
|
schema: undefined;
|
|
810
810
|
columns: {
|
|
811
|
-
triggerId:
|
|
811
|
+
triggerId: drizzle_orm_pg_core1750.PgColumn<{
|
|
812
812
|
name: "trigger_id";
|
|
813
813
|
tableName: "trigger_invocations";
|
|
814
814
|
dataType: "string";
|
|
@@ -827,7 +827,7 @@ declare const triggerInvocations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
827
827
|
}, {}, {
|
|
828
828
|
length: 256;
|
|
829
829
|
}>;
|
|
830
|
-
conversationId:
|
|
830
|
+
conversationId: drizzle_orm_pg_core1750.PgColumn<{
|
|
831
831
|
name: "conversation_id";
|
|
832
832
|
tableName: "trigger_invocations";
|
|
833
833
|
dataType: "string";
|
|
@@ -846,7 +846,7 @@ declare const triggerInvocations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
846
846
|
}, {}, {
|
|
847
847
|
length: 256;
|
|
848
848
|
}>;
|
|
849
|
-
status:
|
|
849
|
+
status: drizzle_orm_pg_core1750.PgColumn<{
|
|
850
850
|
name: "status";
|
|
851
851
|
tableName: "trigger_invocations";
|
|
852
852
|
dataType: "string";
|
|
@@ -865,7 +865,7 @@ declare const triggerInvocations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
865
865
|
}, {}, {
|
|
866
866
|
length: 20;
|
|
867
867
|
}>;
|
|
868
|
-
requestPayload:
|
|
868
|
+
requestPayload: drizzle_orm_pg_core1750.PgColumn<{
|
|
869
869
|
name: "request_payload";
|
|
870
870
|
tableName: "trigger_invocations";
|
|
871
871
|
dataType: "json";
|
|
@@ -882,7 +882,7 @@ declare const triggerInvocations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
882
882
|
identity: undefined;
|
|
883
883
|
generated: undefined;
|
|
884
884
|
}, {}, {}>;
|
|
885
|
-
transformedPayload:
|
|
885
|
+
transformedPayload: drizzle_orm_pg_core1750.PgColumn<{
|
|
886
886
|
name: "transformed_payload";
|
|
887
887
|
tableName: "trigger_invocations";
|
|
888
888
|
dataType: "json";
|
|
@@ -899,7 +899,7 @@ declare const triggerInvocations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
899
899
|
identity: undefined;
|
|
900
900
|
generated: undefined;
|
|
901
901
|
}, {}, {}>;
|
|
902
|
-
errorMessage:
|
|
902
|
+
errorMessage: drizzle_orm_pg_core1750.PgColumn<{
|
|
903
903
|
name: "error_message";
|
|
904
904
|
tableName: "trigger_invocations";
|
|
905
905
|
dataType: "string";
|
|
@@ -916,7 +916,7 @@ declare const triggerInvocations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
916
916
|
identity: undefined;
|
|
917
917
|
generated: undefined;
|
|
918
918
|
}, {}, {}>;
|
|
919
|
-
createdAt:
|
|
919
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
920
920
|
name: "created_at";
|
|
921
921
|
tableName: "trigger_invocations";
|
|
922
922
|
dataType: "string";
|
|
@@ -933,7 +933,7 @@ declare const triggerInvocations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
933
933
|
identity: undefined;
|
|
934
934
|
generated: undefined;
|
|
935
935
|
}, {}, {}>;
|
|
936
|
-
agentId:
|
|
936
|
+
agentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
937
937
|
name: "agent_id";
|
|
938
938
|
tableName: "trigger_invocations";
|
|
939
939
|
dataType: "string";
|
|
@@ -952,7 +952,7 @@ declare const triggerInvocations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
952
952
|
}, {}, {
|
|
953
953
|
length: 256;
|
|
954
954
|
}>;
|
|
955
|
-
projectId:
|
|
955
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
956
956
|
name: "project_id";
|
|
957
957
|
tableName: "trigger_invocations";
|
|
958
958
|
dataType: "string";
|
|
@@ -971,7 +971,7 @@ declare const triggerInvocations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
971
971
|
}, {}, {
|
|
972
972
|
length: 256;
|
|
973
973
|
}>;
|
|
974
|
-
tenantId:
|
|
974
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
975
975
|
name: "tenant_id";
|
|
976
976
|
tableName: "trigger_invocations";
|
|
977
977
|
dataType: "string";
|
|
@@ -990,7 +990,7 @@ declare const triggerInvocations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
990
990
|
}, {}, {
|
|
991
991
|
length: 256;
|
|
992
992
|
}>;
|
|
993
|
-
id:
|
|
993
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
994
994
|
name: "id";
|
|
995
995
|
tableName: "trigger_invocations";
|
|
996
996
|
dataType: "string";
|
|
@@ -1017,11 +1017,11 @@ declare const triggerInvocations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1017
1017
|
* Enforces workspace -> tenant uniqueness and provides audit trail.
|
|
1018
1018
|
* Stores reference to Nango connection for token retrieval.
|
|
1019
1019
|
*/
|
|
1020
|
-
declare const workAppSlackWorkspaces:
|
|
1020
|
+
declare const workAppSlackWorkspaces: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
1021
1021
|
name: "work_app_slack_workspaces";
|
|
1022
1022
|
schema: undefined;
|
|
1023
1023
|
columns: {
|
|
1024
|
-
createdAt:
|
|
1024
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
1025
1025
|
name: "created_at";
|
|
1026
1026
|
tableName: "work_app_slack_workspaces";
|
|
1027
1027
|
dataType: "string";
|
|
@@ -1038,7 +1038,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1038
1038
|
identity: undefined;
|
|
1039
1039
|
generated: undefined;
|
|
1040
1040
|
}, {}, {}>;
|
|
1041
|
-
updatedAt:
|
|
1041
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
1042
1042
|
name: "updated_at";
|
|
1043
1043
|
tableName: "work_app_slack_workspaces";
|
|
1044
1044
|
dataType: "string";
|
|
@@ -1055,7 +1055,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1055
1055
|
identity: undefined;
|
|
1056
1056
|
generated: undefined;
|
|
1057
1057
|
}, {}, {}>;
|
|
1058
|
-
id:
|
|
1058
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
1059
1059
|
name: "id";
|
|
1060
1060
|
tableName: "work_app_slack_workspaces";
|
|
1061
1061
|
dataType: "string";
|
|
@@ -1074,7 +1074,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1074
1074
|
}, {}, {
|
|
1075
1075
|
length: 256;
|
|
1076
1076
|
}>;
|
|
1077
|
-
tenantId:
|
|
1077
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1078
1078
|
name: "tenant_id";
|
|
1079
1079
|
tableName: "work_app_slack_workspaces";
|
|
1080
1080
|
dataType: "string";
|
|
@@ -1093,7 +1093,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1093
1093
|
}, {}, {
|
|
1094
1094
|
length: 256;
|
|
1095
1095
|
}>;
|
|
1096
|
-
slackTeamId:
|
|
1096
|
+
slackTeamId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1097
1097
|
name: "slack_team_id";
|
|
1098
1098
|
tableName: "work_app_slack_workspaces";
|
|
1099
1099
|
dataType: "string";
|
|
@@ -1112,7 +1112,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1112
1112
|
}, {}, {
|
|
1113
1113
|
length: 256;
|
|
1114
1114
|
}>;
|
|
1115
|
-
slackEnterpriseId:
|
|
1115
|
+
slackEnterpriseId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1116
1116
|
name: "slack_enterprise_id";
|
|
1117
1117
|
tableName: "work_app_slack_workspaces";
|
|
1118
1118
|
dataType: "string";
|
|
@@ -1131,7 +1131,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1131
1131
|
}, {}, {
|
|
1132
1132
|
length: 256;
|
|
1133
1133
|
}>;
|
|
1134
|
-
slackAppId:
|
|
1134
|
+
slackAppId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1135
1135
|
name: "slack_app_id";
|
|
1136
1136
|
tableName: "work_app_slack_workspaces";
|
|
1137
1137
|
dataType: "string";
|
|
@@ -1150,7 +1150,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1150
1150
|
}, {}, {
|
|
1151
1151
|
length: 256;
|
|
1152
1152
|
}>;
|
|
1153
|
-
slackTeamName:
|
|
1153
|
+
slackTeamName: drizzle_orm_pg_core1750.PgColumn<{
|
|
1154
1154
|
name: "slack_team_name";
|
|
1155
1155
|
tableName: "work_app_slack_workspaces";
|
|
1156
1156
|
dataType: "string";
|
|
@@ -1169,7 +1169,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1169
1169
|
}, {}, {
|
|
1170
1170
|
length: 512;
|
|
1171
1171
|
}>;
|
|
1172
|
-
nangoProviderConfigKey:
|
|
1172
|
+
nangoProviderConfigKey: drizzle_orm_pg_core1750.PgColumn<{
|
|
1173
1173
|
name: "nango_provider_config_key";
|
|
1174
1174
|
tableName: "work_app_slack_workspaces";
|
|
1175
1175
|
dataType: "string";
|
|
@@ -1188,7 +1188,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1188
1188
|
}, {}, {
|
|
1189
1189
|
length: 256;
|
|
1190
1190
|
}>;
|
|
1191
|
-
nangoConnectionId:
|
|
1191
|
+
nangoConnectionId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1192
1192
|
name: "nango_connection_id";
|
|
1193
1193
|
tableName: "work_app_slack_workspaces";
|
|
1194
1194
|
dataType: "string";
|
|
@@ -1207,7 +1207,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1207
1207
|
}, {}, {
|
|
1208
1208
|
length: 256;
|
|
1209
1209
|
}>;
|
|
1210
|
-
status:
|
|
1210
|
+
status: drizzle_orm_pg_core1750.PgColumn<{
|
|
1211
1211
|
name: "status";
|
|
1212
1212
|
tableName: "work_app_slack_workspaces";
|
|
1213
1213
|
dataType: "string";
|
|
@@ -1226,7 +1226,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1226
1226
|
}, {}, {
|
|
1227
1227
|
length: 20;
|
|
1228
1228
|
}>;
|
|
1229
|
-
installedByUserId:
|
|
1229
|
+
installedByUserId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1230
1230
|
name: "installed_by_user_id";
|
|
1231
1231
|
tableName: "work_app_slack_workspaces";
|
|
1232
1232
|
dataType: "string";
|
|
@@ -1251,11 +1251,11 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core512.PgTableWithColumns<
|
|
|
1251
1251
|
* Enables Slack users to trigger agents after linking their accounts.
|
|
1252
1252
|
* Unique per tenant + clientId + slackTeamId + slackUserId.
|
|
1253
1253
|
*/
|
|
1254
|
-
declare const workAppSlackUserMappings:
|
|
1254
|
+
declare const workAppSlackUserMappings: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
1255
1255
|
name: "work_app_slack_user_mappings";
|
|
1256
1256
|
schema: undefined;
|
|
1257
1257
|
columns: {
|
|
1258
|
-
createdAt:
|
|
1258
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
1259
1259
|
name: "created_at";
|
|
1260
1260
|
tableName: "work_app_slack_user_mappings";
|
|
1261
1261
|
dataType: "string";
|
|
@@ -1272,7 +1272,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1272
1272
|
identity: undefined;
|
|
1273
1273
|
generated: undefined;
|
|
1274
1274
|
}, {}, {}>;
|
|
1275
|
-
updatedAt:
|
|
1275
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
1276
1276
|
name: "updated_at";
|
|
1277
1277
|
tableName: "work_app_slack_user_mappings";
|
|
1278
1278
|
dataType: "string";
|
|
@@ -1289,7 +1289,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1289
1289
|
identity: undefined;
|
|
1290
1290
|
generated: undefined;
|
|
1291
1291
|
}, {}, {}>;
|
|
1292
|
-
id:
|
|
1292
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
1293
1293
|
name: "id";
|
|
1294
1294
|
tableName: "work_app_slack_user_mappings";
|
|
1295
1295
|
dataType: "string";
|
|
@@ -1308,7 +1308,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1308
1308
|
}, {}, {
|
|
1309
1309
|
length: 256;
|
|
1310
1310
|
}>;
|
|
1311
|
-
tenantId:
|
|
1311
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1312
1312
|
name: "tenant_id";
|
|
1313
1313
|
tableName: "work_app_slack_user_mappings";
|
|
1314
1314
|
dataType: "string";
|
|
@@ -1327,7 +1327,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1327
1327
|
}, {}, {
|
|
1328
1328
|
length: 256;
|
|
1329
1329
|
}>;
|
|
1330
|
-
clientId:
|
|
1330
|
+
clientId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1331
1331
|
name: "client_id";
|
|
1332
1332
|
tableName: "work_app_slack_user_mappings";
|
|
1333
1333
|
dataType: "string";
|
|
@@ -1346,7 +1346,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1346
1346
|
}, {}, {
|
|
1347
1347
|
length: 256;
|
|
1348
1348
|
}>;
|
|
1349
|
-
slackUserId:
|
|
1349
|
+
slackUserId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1350
1350
|
name: "slack_user_id";
|
|
1351
1351
|
tableName: "work_app_slack_user_mappings";
|
|
1352
1352
|
dataType: "string";
|
|
@@ -1365,7 +1365,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1365
1365
|
}, {}, {
|
|
1366
1366
|
length: 256;
|
|
1367
1367
|
}>;
|
|
1368
|
-
slackTeamId:
|
|
1368
|
+
slackTeamId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1369
1369
|
name: "slack_team_id";
|
|
1370
1370
|
tableName: "work_app_slack_user_mappings";
|
|
1371
1371
|
dataType: "string";
|
|
@@ -1384,7 +1384,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1384
1384
|
}, {}, {
|
|
1385
1385
|
length: 256;
|
|
1386
1386
|
}>;
|
|
1387
|
-
slackEnterpriseId:
|
|
1387
|
+
slackEnterpriseId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1388
1388
|
name: "slack_enterprise_id";
|
|
1389
1389
|
tableName: "work_app_slack_user_mappings";
|
|
1390
1390
|
dataType: "string";
|
|
@@ -1403,7 +1403,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1403
1403
|
}, {}, {
|
|
1404
1404
|
length: 256;
|
|
1405
1405
|
}>;
|
|
1406
|
-
inkeepUserId:
|
|
1406
|
+
inkeepUserId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1407
1407
|
name: "inkeep_user_id";
|
|
1408
1408
|
tableName: "work_app_slack_user_mappings";
|
|
1409
1409
|
dataType: "string";
|
|
@@ -1420,7 +1420,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1420
1420
|
identity: undefined;
|
|
1421
1421
|
generated: undefined;
|
|
1422
1422
|
}, {}, {}>;
|
|
1423
|
-
slackUsername:
|
|
1423
|
+
slackUsername: drizzle_orm_pg_core1750.PgColumn<{
|
|
1424
1424
|
name: "slack_username";
|
|
1425
1425
|
tableName: "work_app_slack_user_mappings";
|
|
1426
1426
|
dataType: "string";
|
|
@@ -1439,7 +1439,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1439
1439
|
}, {}, {
|
|
1440
1440
|
length: 256;
|
|
1441
1441
|
}>;
|
|
1442
|
-
slackEmail:
|
|
1442
|
+
slackEmail: drizzle_orm_pg_core1750.PgColumn<{
|
|
1443
1443
|
name: "slack_email";
|
|
1444
1444
|
tableName: "work_app_slack_user_mappings";
|
|
1445
1445
|
dataType: "string";
|
|
@@ -1458,7 +1458,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1458
1458
|
}, {}, {
|
|
1459
1459
|
length: 256;
|
|
1460
1460
|
}>;
|
|
1461
|
-
linkedAt:
|
|
1461
|
+
linkedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
1462
1462
|
name: "linked_at";
|
|
1463
1463
|
tableName: "work_app_slack_user_mappings";
|
|
1464
1464
|
dataType: "string";
|
|
@@ -1475,7 +1475,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1475
1475
|
identity: undefined;
|
|
1476
1476
|
generated: undefined;
|
|
1477
1477
|
}, {}, {}>;
|
|
1478
|
-
lastUsedAt:
|
|
1478
|
+
lastUsedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
1479
1479
|
name: "last_used_at";
|
|
1480
1480
|
tableName: "work_app_slack_user_mappings";
|
|
1481
1481
|
dataType: "string";
|
|
@@ -1500,11 +1500,11 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core512.PgTableWithColumn
|
|
|
1500
1500
|
* Allows admins to set channel-specific agent defaults that override workspace defaults.
|
|
1501
1501
|
* Unique per tenant + slackTeamId + slackChannelId.
|
|
1502
1502
|
*/
|
|
1503
|
-
declare const workAppSlackChannelAgentConfigs:
|
|
1503
|
+
declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
1504
1504
|
name: "work_app_slack_channel_agent_configs";
|
|
1505
1505
|
schema: undefined;
|
|
1506
1506
|
columns: {
|
|
1507
|
-
createdAt:
|
|
1507
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
1508
1508
|
name: "created_at";
|
|
1509
1509
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1510
1510
|
dataType: "string";
|
|
@@ -1521,7 +1521,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1521
1521
|
identity: undefined;
|
|
1522
1522
|
generated: undefined;
|
|
1523
1523
|
}, {}, {}>;
|
|
1524
|
-
updatedAt:
|
|
1524
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
1525
1525
|
name: "updated_at";
|
|
1526
1526
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1527
1527
|
dataType: "string";
|
|
@@ -1538,7 +1538,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1538
1538
|
identity: undefined;
|
|
1539
1539
|
generated: undefined;
|
|
1540
1540
|
}, {}, {}>;
|
|
1541
|
-
id:
|
|
1541
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
1542
1542
|
name: "id";
|
|
1543
1543
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1544
1544
|
dataType: "string";
|
|
@@ -1557,7 +1557,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1557
1557
|
}, {}, {
|
|
1558
1558
|
length: 256;
|
|
1559
1559
|
}>;
|
|
1560
|
-
tenantId:
|
|
1560
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1561
1561
|
name: "tenant_id";
|
|
1562
1562
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1563
1563
|
dataType: "string";
|
|
@@ -1576,7 +1576,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1576
1576
|
}, {}, {
|
|
1577
1577
|
length: 256;
|
|
1578
1578
|
}>;
|
|
1579
|
-
slackTeamId:
|
|
1579
|
+
slackTeamId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1580
1580
|
name: "slack_team_id";
|
|
1581
1581
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1582
1582
|
dataType: "string";
|
|
@@ -1595,7 +1595,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1595
1595
|
}, {}, {
|
|
1596
1596
|
length: 256;
|
|
1597
1597
|
}>;
|
|
1598
|
-
slackChannelId:
|
|
1598
|
+
slackChannelId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1599
1599
|
name: "slack_channel_id";
|
|
1600
1600
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1601
1601
|
dataType: "string";
|
|
@@ -1614,7 +1614,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1614
1614
|
}, {}, {
|
|
1615
1615
|
length: 256;
|
|
1616
1616
|
}>;
|
|
1617
|
-
slackChannelName:
|
|
1617
|
+
slackChannelName: drizzle_orm_pg_core1750.PgColumn<{
|
|
1618
1618
|
name: "slack_channel_name";
|
|
1619
1619
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1620
1620
|
dataType: "string";
|
|
@@ -1633,7 +1633,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1633
1633
|
}, {}, {
|
|
1634
1634
|
length: 256;
|
|
1635
1635
|
}>;
|
|
1636
|
-
slackChannelType:
|
|
1636
|
+
slackChannelType: drizzle_orm_pg_core1750.PgColumn<{
|
|
1637
1637
|
name: "slack_channel_type";
|
|
1638
1638
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1639
1639
|
dataType: "string";
|
|
@@ -1652,7 +1652,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1652
1652
|
}, {}, {
|
|
1653
1653
|
length: 50;
|
|
1654
1654
|
}>;
|
|
1655
|
-
projectId:
|
|
1655
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1656
1656
|
name: "project_id";
|
|
1657
1657
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1658
1658
|
dataType: "string";
|
|
@@ -1671,7 +1671,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1671
1671
|
}, {}, {
|
|
1672
1672
|
length: 256;
|
|
1673
1673
|
}>;
|
|
1674
|
-
agentId:
|
|
1674
|
+
agentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1675
1675
|
name: "agent_id";
|
|
1676
1676
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1677
1677
|
dataType: "string";
|
|
@@ -1690,7 +1690,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1690
1690
|
}, {}, {
|
|
1691
1691
|
length: 256;
|
|
1692
1692
|
}>;
|
|
1693
|
-
agentName:
|
|
1693
|
+
agentName: drizzle_orm_pg_core1750.PgColumn<{
|
|
1694
1694
|
name: "agent_name";
|
|
1695
1695
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1696
1696
|
dataType: "string";
|
|
@@ -1709,7 +1709,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1709
1709
|
}, {}, {
|
|
1710
1710
|
length: 256;
|
|
1711
1711
|
}>;
|
|
1712
|
-
configuredByUserId:
|
|
1712
|
+
configuredByUserId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1713
1713
|
name: "configured_by_user_id";
|
|
1714
1714
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1715
1715
|
dataType: "string";
|
|
@@ -1726,7 +1726,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1726
1726
|
identity: undefined;
|
|
1727
1727
|
generated: undefined;
|
|
1728
1728
|
}, {}, {}>;
|
|
1729
|
-
enabled:
|
|
1729
|
+
enabled: drizzle_orm_pg_core1750.PgColumn<{
|
|
1730
1730
|
name: "enabled";
|
|
1731
1731
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1732
1732
|
dataType: "boolean";
|
|
@@ -1746,11 +1746,11 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core512.PgTableWit
|
|
|
1746
1746
|
};
|
|
1747
1747
|
dialect: "pg";
|
|
1748
1748
|
}>;
|
|
1749
|
-
declare const messages:
|
|
1749
|
+
declare const messages: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
1750
1750
|
name: "messages";
|
|
1751
1751
|
schema: undefined;
|
|
1752
1752
|
columns: {
|
|
1753
|
-
createdAt:
|
|
1753
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
1754
1754
|
name: "created_at";
|
|
1755
1755
|
tableName: "messages";
|
|
1756
1756
|
dataType: "string";
|
|
@@ -1767,7 +1767,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1767
1767
|
identity: undefined;
|
|
1768
1768
|
generated: undefined;
|
|
1769
1769
|
}, {}, {}>;
|
|
1770
|
-
updatedAt:
|
|
1770
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
1771
1771
|
name: "updated_at";
|
|
1772
1772
|
tableName: "messages";
|
|
1773
1773
|
dataType: "string";
|
|
@@ -1784,7 +1784,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1784
1784
|
identity: undefined;
|
|
1785
1785
|
generated: undefined;
|
|
1786
1786
|
}, {}, {}>;
|
|
1787
|
-
conversationId:
|
|
1787
|
+
conversationId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1788
1788
|
name: "conversation_id";
|
|
1789
1789
|
tableName: "messages";
|
|
1790
1790
|
dataType: "string";
|
|
@@ -1803,7 +1803,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1803
1803
|
}, {}, {
|
|
1804
1804
|
length: 256;
|
|
1805
1805
|
}>;
|
|
1806
|
-
role:
|
|
1806
|
+
role: drizzle_orm_pg_core1750.PgColumn<{
|
|
1807
1807
|
name: "role";
|
|
1808
1808
|
tableName: "messages";
|
|
1809
1809
|
dataType: "string";
|
|
@@ -1822,7 +1822,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1822
1822
|
}, {}, {
|
|
1823
1823
|
length: 256;
|
|
1824
1824
|
}>;
|
|
1825
|
-
fromSubAgentId:
|
|
1825
|
+
fromSubAgentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1826
1826
|
name: "from_sub_agent_id";
|
|
1827
1827
|
tableName: "messages";
|
|
1828
1828
|
dataType: "string";
|
|
@@ -1841,7 +1841,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1841
1841
|
}, {}, {
|
|
1842
1842
|
length: 256;
|
|
1843
1843
|
}>;
|
|
1844
|
-
toSubAgentId:
|
|
1844
|
+
toSubAgentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1845
1845
|
name: "to_sub_agent_id";
|
|
1846
1846
|
tableName: "messages";
|
|
1847
1847
|
dataType: "string";
|
|
@@ -1860,7 +1860,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1860
1860
|
}, {}, {
|
|
1861
1861
|
length: 256;
|
|
1862
1862
|
}>;
|
|
1863
|
-
fromExternalAgentId:
|
|
1863
|
+
fromExternalAgentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1864
1864
|
name: "from_external_sub_agent_id";
|
|
1865
1865
|
tableName: "messages";
|
|
1866
1866
|
dataType: "string";
|
|
@@ -1879,7 +1879,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1879
1879
|
}, {}, {
|
|
1880
1880
|
length: 256;
|
|
1881
1881
|
}>;
|
|
1882
|
-
toExternalAgentId:
|
|
1882
|
+
toExternalAgentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1883
1883
|
name: "to_external_sub_agent_id";
|
|
1884
1884
|
tableName: "messages";
|
|
1885
1885
|
dataType: "string";
|
|
@@ -1898,7 +1898,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1898
1898
|
}, {}, {
|
|
1899
1899
|
length: 256;
|
|
1900
1900
|
}>;
|
|
1901
|
-
fromTeamAgentId:
|
|
1901
|
+
fromTeamAgentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1902
1902
|
name: "from_team_agent_id";
|
|
1903
1903
|
tableName: "messages";
|
|
1904
1904
|
dataType: "string";
|
|
@@ -1917,7 +1917,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1917
1917
|
}, {}, {
|
|
1918
1918
|
length: 256;
|
|
1919
1919
|
}>;
|
|
1920
|
-
toTeamAgentId:
|
|
1920
|
+
toTeamAgentId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1921
1921
|
name: "to_team_agent_id";
|
|
1922
1922
|
tableName: "messages";
|
|
1923
1923
|
dataType: "string";
|
|
@@ -1936,7 +1936,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1936
1936
|
}, {}, {
|
|
1937
1937
|
length: 256;
|
|
1938
1938
|
}>;
|
|
1939
|
-
content:
|
|
1939
|
+
content: drizzle_orm_pg_core1750.PgColumn<{
|
|
1940
1940
|
name: "content";
|
|
1941
1941
|
tableName: "messages";
|
|
1942
1942
|
dataType: "json";
|
|
@@ -1955,7 +1955,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1955
1955
|
}, {}, {
|
|
1956
1956
|
$type: MessageContent;
|
|
1957
1957
|
}>;
|
|
1958
|
-
visibility:
|
|
1958
|
+
visibility: drizzle_orm_pg_core1750.PgColumn<{
|
|
1959
1959
|
name: "visibility";
|
|
1960
1960
|
tableName: "messages";
|
|
1961
1961
|
dataType: "string";
|
|
@@ -1974,7 +1974,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1974
1974
|
}, {}, {
|
|
1975
1975
|
length: 256;
|
|
1976
1976
|
}>;
|
|
1977
|
-
messageType:
|
|
1977
|
+
messageType: drizzle_orm_pg_core1750.PgColumn<{
|
|
1978
1978
|
name: "message_type";
|
|
1979
1979
|
tableName: "messages";
|
|
1980
1980
|
dataType: "string";
|
|
@@ -1993,7 +1993,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
1993
1993
|
}, {}, {
|
|
1994
1994
|
length: 256;
|
|
1995
1995
|
}>;
|
|
1996
|
-
taskId:
|
|
1996
|
+
taskId: drizzle_orm_pg_core1750.PgColumn<{
|
|
1997
1997
|
name: "task_id";
|
|
1998
1998
|
tableName: "messages";
|
|
1999
1999
|
dataType: "string";
|
|
@@ -2012,7 +2012,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2012
2012
|
}, {}, {
|
|
2013
2013
|
length: 256;
|
|
2014
2014
|
}>;
|
|
2015
|
-
parentMessageId:
|
|
2015
|
+
parentMessageId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2016
2016
|
name: "parent_message_id";
|
|
2017
2017
|
tableName: "messages";
|
|
2018
2018
|
dataType: "string";
|
|
@@ -2031,7 +2031,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2031
2031
|
}, {}, {
|
|
2032
2032
|
length: 256;
|
|
2033
2033
|
}>;
|
|
2034
|
-
a2aTaskId:
|
|
2034
|
+
a2aTaskId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2035
2035
|
name: "a2a_task_id";
|
|
2036
2036
|
tableName: "messages";
|
|
2037
2037
|
dataType: "string";
|
|
@@ -2050,7 +2050,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2050
2050
|
}, {}, {
|
|
2051
2051
|
length: 256;
|
|
2052
2052
|
}>;
|
|
2053
|
-
a2aSessionId:
|
|
2053
|
+
a2aSessionId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2054
2054
|
name: "a2a_session_id";
|
|
2055
2055
|
tableName: "messages";
|
|
2056
2056
|
dataType: "string";
|
|
@@ -2069,7 +2069,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2069
2069
|
}, {}, {
|
|
2070
2070
|
length: 256;
|
|
2071
2071
|
}>;
|
|
2072
|
-
metadata:
|
|
2072
|
+
metadata: drizzle_orm_pg_core1750.PgColumn<{
|
|
2073
2073
|
name: "metadata";
|
|
2074
2074
|
tableName: "messages";
|
|
2075
2075
|
dataType: "json";
|
|
@@ -2088,7 +2088,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2088
2088
|
}, {}, {
|
|
2089
2089
|
$type: MessageMetadata;
|
|
2090
2090
|
}>;
|
|
2091
|
-
projectId:
|
|
2091
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2092
2092
|
name: "project_id";
|
|
2093
2093
|
tableName: "messages";
|
|
2094
2094
|
dataType: "string";
|
|
@@ -2107,7 +2107,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2107
2107
|
}, {}, {
|
|
2108
2108
|
length: 256;
|
|
2109
2109
|
}>;
|
|
2110
|
-
tenantId:
|
|
2110
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2111
2111
|
name: "tenant_id";
|
|
2112
2112
|
tableName: "messages";
|
|
2113
2113
|
dataType: "string";
|
|
@@ -2126,7 +2126,7 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2126
2126
|
}, {}, {
|
|
2127
2127
|
length: 256;
|
|
2128
2128
|
}>;
|
|
2129
|
-
id:
|
|
2129
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
2130
2130
|
name: "id";
|
|
2131
2131
|
tableName: "messages";
|
|
2132
2132
|
dataType: "string";
|
|
@@ -2148,11 +2148,11 @@ declare const messages: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2148
2148
|
};
|
|
2149
2149
|
dialect: "pg";
|
|
2150
2150
|
}>;
|
|
2151
|
-
declare const taskRelations:
|
|
2151
|
+
declare const taskRelations: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
2152
2152
|
name: "task_relations";
|
|
2153
2153
|
schema: undefined;
|
|
2154
2154
|
columns: {
|
|
2155
|
-
createdAt:
|
|
2155
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
2156
2156
|
name: "created_at";
|
|
2157
2157
|
tableName: "task_relations";
|
|
2158
2158
|
dataType: "string";
|
|
@@ -2169,7 +2169,7 @@ declare const taskRelations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2169
2169
|
identity: undefined;
|
|
2170
2170
|
generated: undefined;
|
|
2171
2171
|
}, {}, {}>;
|
|
2172
|
-
updatedAt:
|
|
2172
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
2173
2173
|
name: "updated_at";
|
|
2174
2174
|
tableName: "task_relations";
|
|
2175
2175
|
dataType: "string";
|
|
@@ -2186,7 +2186,7 @@ declare const taskRelations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2186
2186
|
identity: undefined;
|
|
2187
2187
|
generated: undefined;
|
|
2188
2188
|
}, {}, {}>;
|
|
2189
|
-
parentTaskId:
|
|
2189
|
+
parentTaskId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2190
2190
|
name: "parent_task_id";
|
|
2191
2191
|
tableName: "task_relations";
|
|
2192
2192
|
dataType: "string";
|
|
@@ -2205,7 +2205,7 @@ declare const taskRelations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2205
2205
|
}, {}, {
|
|
2206
2206
|
length: 256;
|
|
2207
2207
|
}>;
|
|
2208
|
-
childTaskId:
|
|
2208
|
+
childTaskId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2209
2209
|
name: "child_task_id";
|
|
2210
2210
|
tableName: "task_relations";
|
|
2211
2211
|
dataType: "string";
|
|
@@ -2224,7 +2224,7 @@ declare const taskRelations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2224
2224
|
}, {}, {
|
|
2225
2225
|
length: 256;
|
|
2226
2226
|
}>;
|
|
2227
|
-
relationType:
|
|
2227
|
+
relationType: drizzle_orm_pg_core1750.PgColumn<{
|
|
2228
2228
|
name: "relation_type";
|
|
2229
2229
|
tableName: "task_relations";
|
|
2230
2230
|
dataType: "string";
|
|
@@ -2243,7 +2243,7 @@ declare const taskRelations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2243
2243
|
}, {}, {
|
|
2244
2244
|
length: 256;
|
|
2245
2245
|
}>;
|
|
2246
|
-
projectId:
|
|
2246
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2247
2247
|
name: "project_id";
|
|
2248
2248
|
tableName: "task_relations";
|
|
2249
2249
|
dataType: "string";
|
|
@@ -2262,7 +2262,7 @@ declare const taskRelations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2262
2262
|
}, {}, {
|
|
2263
2263
|
length: 256;
|
|
2264
2264
|
}>;
|
|
2265
|
-
tenantId:
|
|
2265
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2266
2266
|
name: "tenant_id";
|
|
2267
2267
|
tableName: "task_relations";
|
|
2268
2268
|
dataType: "string";
|
|
@@ -2281,7 +2281,7 @@ declare const taskRelations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2281
2281
|
}, {}, {
|
|
2282
2282
|
length: 256;
|
|
2283
2283
|
}>;
|
|
2284
|
-
id:
|
|
2284
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
2285
2285
|
name: "id";
|
|
2286
2286
|
tableName: "task_relations";
|
|
2287
2287
|
dataType: "string";
|
|
@@ -2303,11 +2303,11 @@ declare const taskRelations: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2303
2303
|
};
|
|
2304
2304
|
dialect: "pg";
|
|
2305
2305
|
}>;
|
|
2306
|
-
declare const ledgerArtifacts:
|
|
2306
|
+
declare const ledgerArtifacts: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
2307
2307
|
name: "ledger_artifacts";
|
|
2308
2308
|
schema: undefined;
|
|
2309
2309
|
columns: {
|
|
2310
|
-
createdAt:
|
|
2310
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
2311
2311
|
name: "created_at";
|
|
2312
2312
|
tableName: "ledger_artifacts";
|
|
2313
2313
|
dataType: "string";
|
|
@@ -2324,7 +2324,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2324
2324
|
identity: undefined;
|
|
2325
2325
|
generated: undefined;
|
|
2326
2326
|
}, {}, {}>;
|
|
2327
|
-
updatedAt:
|
|
2327
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
2328
2328
|
name: "updated_at";
|
|
2329
2329
|
tableName: "ledger_artifacts";
|
|
2330
2330
|
dataType: "string";
|
|
@@ -2341,7 +2341,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2341
2341
|
identity: undefined;
|
|
2342
2342
|
generated: undefined;
|
|
2343
2343
|
}, {}, {}>;
|
|
2344
|
-
taskId:
|
|
2344
|
+
taskId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2345
2345
|
name: "task_id";
|
|
2346
2346
|
tableName: "ledger_artifacts";
|
|
2347
2347
|
dataType: "string";
|
|
@@ -2360,7 +2360,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2360
2360
|
}, {}, {
|
|
2361
2361
|
length: 256;
|
|
2362
2362
|
}>;
|
|
2363
|
-
toolCallId:
|
|
2363
|
+
toolCallId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2364
2364
|
name: "tool_call_id";
|
|
2365
2365
|
tableName: "ledger_artifacts";
|
|
2366
2366
|
dataType: "string";
|
|
@@ -2379,7 +2379,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2379
2379
|
}, {}, {
|
|
2380
2380
|
length: 256;
|
|
2381
2381
|
}>;
|
|
2382
|
-
contextId:
|
|
2382
|
+
contextId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2383
2383
|
name: "context_id";
|
|
2384
2384
|
tableName: "ledger_artifacts";
|
|
2385
2385
|
dataType: "string";
|
|
@@ -2398,7 +2398,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2398
2398
|
}, {}, {
|
|
2399
2399
|
length: 256;
|
|
2400
2400
|
}>;
|
|
2401
|
-
type:
|
|
2401
|
+
type: drizzle_orm_pg_core1750.PgColumn<{
|
|
2402
2402
|
name: "type";
|
|
2403
2403
|
tableName: "ledger_artifacts";
|
|
2404
2404
|
dataType: "string";
|
|
@@ -2417,7 +2417,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2417
2417
|
}, {}, {
|
|
2418
2418
|
length: 256;
|
|
2419
2419
|
}>;
|
|
2420
|
-
name:
|
|
2420
|
+
name: drizzle_orm_pg_core1750.PgColumn<{
|
|
2421
2421
|
name: "name";
|
|
2422
2422
|
tableName: "ledger_artifacts";
|
|
2423
2423
|
dataType: "string";
|
|
@@ -2436,7 +2436,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2436
2436
|
}, {}, {
|
|
2437
2437
|
length: 256;
|
|
2438
2438
|
}>;
|
|
2439
|
-
description:
|
|
2439
|
+
description: drizzle_orm_pg_core1750.PgColumn<{
|
|
2440
2440
|
name: "description";
|
|
2441
2441
|
tableName: "ledger_artifacts";
|
|
2442
2442
|
dataType: "string";
|
|
@@ -2453,7 +2453,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2453
2453
|
identity: undefined;
|
|
2454
2454
|
generated: undefined;
|
|
2455
2455
|
}, {}, {}>;
|
|
2456
|
-
parts:
|
|
2456
|
+
parts: drizzle_orm_pg_core1750.PgColumn<{
|
|
2457
2457
|
name: "parts";
|
|
2458
2458
|
tableName: "ledger_artifacts";
|
|
2459
2459
|
dataType: "json";
|
|
@@ -2472,7 +2472,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2472
2472
|
}, {}, {
|
|
2473
2473
|
$type: Part[] | null;
|
|
2474
2474
|
}>;
|
|
2475
|
-
metadata:
|
|
2475
|
+
metadata: drizzle_orm_pg_core1750.PgColumn<{
|
|
2476
2476
|
name: "metadata";
|
|
2477
2477
|
tableName: "ledger_artifacts";
|
|
2478
2478
|
dataType: "json";
|
|
@@ -2491,7 +2491,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2491
2491
|
}, {}, {
|
|
2492
2492
|
$type: Record<string, unknown> | null;
|
|
2493
2493
|
}>;
|
|
2494
|
-
summary:
|
|
2494
|
+
summary: drizzle_orm_pg_core1750.PgColumn<{
|
|
2495
2495
|
name: "summary";
|
|
2496
2496
|
tableName: "ledger_artifacts";
|
|
2497
2497
|
dataType: "string";
|
|
@@ -2508,7 +2508,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2508
2508
|
identity: undefined;
|
|
2509
2509
|
generated: undefined;
|
|
2510
2510
|
}, {}, {}>;
|
|
2511
|
-
mime:
|
|
2511
|
+
mime: drizzle_orm_pg_core1750.PgColumn<{
|
|
2512
2512
|
name: "mime";
|
|
2513
2513
|
tableName: "ledger_artifacts";
|
|
2514
2514
|
dataType: "json";
|
|
@@ -2527,7 +2527,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2527
2527
|
}, {}, {
|
|
2528
2528
|
$type: string[] | null;
|
|
2529
2529
|
}>;
|
|
2530
|
-
visibility:
|
|
2530
|
+
visibility: drizzle_orm_pg_core1750.PgColumn<{
|
|
2531
2531
|
name: "visibility";
|
|
2532
2532
|
tableName: "ledger_artifacts";
|
|
2533
2533
|
dataType: "string";
|
|
@@ -2546,7 +2546,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2546
2546
|
}, {}, {
|
|
2547
2547
|
length: 256;
|
|
2548
2548
|
}>;
|
|
2549
|
-
allowedAgents:
|
|
2549
|
+
allowedAgents: drizzle_orm_pg_core1750.PgColumn<{
|
|
2550
2550
|
name: "allowed_agents";
|
|
2551
2551
|
tableName: "ledger_artifacts";
|
|
2552
2552
|
dataType: "json";
|
|
@@ -2565,7 +2565,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2565
2565
|
}, {}, {
|
|
2566
2566
|
$type: string[] | null;
|
|
2567
2567
|
}>;
|
|
2568
|
-
derivedFrom:
|
|
2568
|
+
derivedFrom: drizzle_orm_pg_core1750.PgColumn<{
|
|
2569
2569
|
name: "derived_from";
|
|
2570
2570
|
tableName: "ledger_artifacts";
|
|
2571
2571
|
dataType: "string";
|
|
@@ -2584,7 +2584,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2584
2584
|
}, {}, {
|
|
2585
2585
|
length: 256;
|
|
2586
2586
|
}>;
|
|
2587
|
-
projectId:
|
|
2587
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2588
2588
|
name: "project_id";
|
|
2589
2589
|
tableName: "ledger_artifacts";
|
|
2590
2590
|
dataType: "string";
|
|
@@ -2603,7 +2603,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2603
2603
|
}, {}, {
|
|
2604
2604
|
length: 256;
|
|
2605
2605
|
}>;
|
|
2606
|
-
tenantId:
|
|
2606
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2607
2607
|
name: "tenant_id";
|
|
2608
2608
|
tableName: "ledger_artifacts";
|
|
2609
2609
|
dataType: "string";
|
|
@@ -2622,7 +2622,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2622
2622
|
}, {}, {
|
|
2623
2623
|
length: 256;
|
|
2624
2624
|
}>;
|
|
2625
|
-
id:
|
|
2625
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
2626
2626
|
name: "id";
|
|
2627
2627
|
tableName: "ledger_artifacts";
|
|
2628
2628
|
dataType: "string";
|
|
@@ -2644,11 +2644,11 @@ declare const ledgerArtifacts: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2644
2644
|
};
|
|
2645
2645
|
dialect: "pg";
|
|
2646
2646
|
}>;
|
|
2647
|
-
declare const contextCache:
|
|
2647
|
+
declare const contextCache: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
2648
2648
|
name: "context_cache";
|
|
2649
2649
|
schema: undefined;
|
|
2650
2650
|
columns: {
|
|
2651
|
-
createdAt:
|
|
2651
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
2652
2652
|
name: "created_at";
|
|
2653
2653
|
tableName: "context_cache";
|
|
2654
2654
|
dataType: "string";
|
|
@@ -2665,7 +2665,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2665
2665
|
identity: undefined;
|
|
2666
2666
|
generated: undefined;
|
|
2667
2667
|
}, {}, {}>;
|
|
2668
|
-
updatedAt:
|
|
2668
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
2669
2669
|
name: "updated_at";
|
|
2670
2670
|
tableName: "context_cache";
|
|
2671
2671
|
dataType: "string";
|
|
@@ -2682,7 +2682,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2682
2682
|
identity: undefined;
|
|
2683
2683
|
generated: undefined;
|
|
2684
2684
|
}, {}, {}>;
|
|
2685
|
-
conversationId:
|
|
2685
|
+
conversationId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2686
2686
|
name: "conversation_id";
|
|
2687
2687
|
tableName: "context_cache";
|
|
2688
2688
|
dataType: "string";
|
|
@@ -2701,7 +2701,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2701
2701
|
}, {}, {
|
|
2702
2702
|
length: 256;
|
|
2703
2703
|
}>;
|
|
2704
|
-
contextConfigId:
|
|
2704
|
+
contextConfigId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2705
2705
|
name: "context_config_id";
|
|
2706
2706
|
tableName: "context_cache";
|
|
2707
2707
|
dataType: "string";
|
|
@@ -2720,7 +2720,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2720
2720
|
}, {}, {
|
|
2721
2721
|
length: 256;
|
|
2722
2722
|
}>;
|
|
2723
|
-
contextVariableKey:
|
|
2723
|
+
contextVariableKey: drizzle_orm_pg_core1750.PgColumn<{
|
|
2724
2724
|
name: "context_variable_key";
|
|
2725
2725
|
tableName: "context_cache";
|
|
2726
2726
|
dataType: "string";
|
|
@@ -2739,7 +2739,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2739
2739
|
}, {}, {
|
|
2740
2740
|
length: 256;
|
|
2741
2741
|
}>;
|
|
2742
|
-
ref:
|
|
2742
|
+
ref: drizzle_orm_pg_core1750.PgColumn<{
|
|
2743
2743
|
name: "ref";
|
|
2744
2744
|
tableName: "context_cache";
|
|
2745
2745
|
dataType: "json";
|
|
@@ -2766,7 +2766,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2766
2766
|
hash: string;
|
|
2767
2767
|
};
|
|
2768
2768
|
}>;
|
|
2769
|
-
value:
|
|
2769
|
+
value: drizzle_orm_pg_core1750.PgColumn<{
|
|
2770
2770
|
name: "value";
|
|
2771
2771
|
tableName: "context_cache";
|
|
2772
2772
|
dataType: "json";
|
|
@@ -2785,7 +2785,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2785
2785
|
}, {}, {
|
|
2786
2786
|
$type: unknown;
|
|
2787
2787
|
}>;
|
|
2788
|
-
requestHash:
|
|
2788
|
+
requestHash: drizzle_orm_pg_core1750.PgColumn<{
|
|
2789
2789
|
name: "request_hash";
|
|
2790
2790
|
tableName: "context_cache";
|
|
2791
2791
|
dataType: "string";
|
|
@@ -2804,7 +2804,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2804
2804
|
}, {}, {
|
|
2805
2805
|
length: 256;
|
|
2806
2806
|
}>;
|
|
2807
|
-
fetchedAt:
|
|
2807
|
+
fetchedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
2808
2808
|
name: "fetched_at";
|
|
2809
2809
|
tableName: "context_cache";
|
|
2810
2810
|
dataType: "string";
|
|
@@ -2821,7 +2821,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2821
2821
|
identity: undefined;
|
|
2822
2822
|
generated: undefined;
|
|
2823
2823
|
}, {}, {}>;
|
|
2824
|
-
fetchSource:
|
|
2824
|
+
fetchSource: drizzle_orm_pg_core1750.PgColumn<{
|
|
2825
2825
|
name: "fetch_source";
|
|
2826
2826
|
tableName: "context_cache";
|
|
2827
2827
|
dataType: "string";
|
|
@@ -2840,7 +2840,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2840
2840
|
}, {}, {
|
|
2841
2841
|
length: 256;
|
|
2842
2842
|
}>;
|
|
2843
|
-
projectId:
|
|
2843
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2844
2844
|
name: "project_id";
|
|
2845
2845
|
tableName: "context_cache";
|
|
2846
2846
|
dataType: "string";
|
|
@@ -2859,7 +2859,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2859
2859
|
}, {}, {
|
|
2860
2860
|
length: 256;
|
|
2861
2861
|
}>;
|
|
2862
|
-
tenantId:
|
|
2862
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2863
2863
|
name: "tenant_id";
|
|
2864
2864
|
tableName: "context_cache";
|
|
2865
2865
|
dataType: "string";
|
|
@@ -2878,7 +2878,7 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2878
2878
|
}, {}, {
|
|
2879
2879
|
length: 256;
|
|
2880
2880
|
}>;
|
|
2881
|
-
id:
|
|
2881
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
2882
2882
|
name: "id";
|
|
2883
2883
|
tableName: "context_cache";
|
|
2884
2884
|
dataType: "string";
|
|
@@ -2913,11 +2913,11 @@ declare const contextCache: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2913
2913
|
* datasetRunConfigId (optional: if created from a config),
|
|
2914
2914
|
* evaluationJobConfigId (optional: links to evaluation job created for this run), and timestamps
|
|
2915
2915
|
*/
|
|
2916
|
-
declare const datasetRun:
|
|
2916
|
+
declare const datasetRun: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
2917
2917
|
name: "dataset_run";
|
|
2918
2918
|
schema: undefined;
|
|
2919
2919
|
columns: {
|
|
2920
|
-
createdAt:
|
|
2920
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
2921
2921
|
name: "created_at";
|
|
2922
2922
|
tableName: "dataset_run";
|
|
2923
2923
|
dataType: "string";
|
|
@@ -2934,7 +2934,7 @@ declare const datasetRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2934
2934
|
identity: undefined;
|
|
2935
2935
|
generated: undefined;
|
|
2936
2936
|
}, {}, {}>;
|
|
2937
|
-
updatedAt:
|
|
2937
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
2938
2938
|
name: "updated_at";
|
|
2939
2939
|
tableName: "dataset_run";
|
|
2940
2940
|
dataType: "string";
|
|
@@ -2951,7 +2951,7 @@ declare const datasetRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2951
2951
|
identity: undefined;
|
|
2952
2952
|
generated: undefined;
|
|
2953
2953
|
}, {}, {}>;
|
|
2954
|
-
datasetId:
|
|
2954
|
+
datasetId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2955
2955
|
name: "dataset_id";
|
|
2956
2956
|
tableName: "dataset_run";
|
|
2957
2957
|
dataType: "string";
|
|
@@ -2968,7 +2968,7 @@ declare const datasetRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2968
2968
|
identity: undefined;
|
|
2969
2969
|
generated: undefined;
|
|
2970
2970
|
}, {}, {}>;
|
|
2971
|
-
datasetRunConfigId:
|
|
2971
|
+
datasetRunConfigId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2972
2972
|
name: "dataset_run_config_id";
|
|
2973
2973
|
tableName: "dataset_run";
|
|
2974
2974
|
dataType: "string";
|
|
@@ -2985,7 +2985,7 @@ declare const datasetRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
2985
2985
|
identity: undefined;
|
|
2986
2986
|
generated: undefined;
|
|
2987
2987
|
}, {}, {}>;
|
|
2988
|
-
evaluationJobConfigId:
|
|
2988
|
+
evaluationJobConfigId: drizzle_orm_pg_core1750.PgColumn<{
|
|
2989
2989
|
name: "evaluation_job_config_id";
|
|
2990
2990
|
tableName: "dataset_run";
|
|
2991
2991
|
dataType: "string";
|
|
@@ -3002,7 +3002,7 @@ declare const datasetRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3002
3002
|
identity: undefined;
|
|
3003
3003
|
generated: undefined;
|
|
3004
3004
|
}, {}, {}>;
|
|
3005
|
-
projectId:
|
|
3005
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3006
3006
|
name: "project_id";
|
|
3007
3007
|
tableName: "dataset_run";
|
|
3008
3008
|
dataType: "string";
|
|
@@ -3021,7 +3021,7 @@ declare const datasetRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3021
3021
|
}, {}, {
|
|
3022
3022
|
length: 256;
|
|
3023
3023
|
}>;
|
|
3024
|
-
tenantId:
|
|
3024
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3025
3025
|
name: "tenant_id";
|
|
3026
3026
|
tableName: "dataset_run";
|
|
3027
3027
|
dataType: "string";
|
|
@@ -3040,7 +3040,7 @@ declare const datasetRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3040
3040
|
}, {}, {
|
|
3041
3041
|
length: 256;
|
|
3042
3042
|
}>;
|
|
3043
|
-
id:
|
|
3043
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
3044
3044
|
name: "id";
|
|
3045
3045
|
tableName: "dataset_run";
|
|
3046
3046
|
dataType: "string";
|
|
@@ -3073,11 +3073,11 @@ declare const datasetRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3073
3073
|
* unique constraint on (datasetRunId, conversationId) ensures one conversation per datasetRun,
|
|
3074
3074
|
* and timestamps
|
|
3075
3075
|
*/
|
|
3076
|
-
declare const datasetRunConversationRelations:
|
|
3076
|
+
declare const datasetRunConversationRelations: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
3077
3077
|
name: "dataset_run_conversation_relations";
|
|
3078
3078
|
schema: undefined;
|
|
3079
3079
|
columns: {
|
|
3080
|
-
createdAt:
|
|
3080
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3081
3081
|
name: "created_at";
|
|
3082
3082
|
tableName: "dataset_run_conversation_relations";
|
|
3083
3083
|
dataType: "string";
|
|
@@ -3094,7 +3094,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core512.PgTableWit
|
|
|
3094
3094
|
identity: undefined;
|
|
3095
3095
|
generated: undefined;
|
|
3096
3096
|
}, {}, {}>;
|
|
3097
|
-
updatedAt:
|
|
3097
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3098
3098
|
name: "updated_at";
|
|
3099
3099
|
tableName: "dataset_run_conversation_relations";
|
|
3100
3100
|
dataType: "string";
|
|
@@ -3111,7 +3111,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core512.PgTableWit
|
|
|
3111
3111
|
identity: undefined;
|
|
3112
3112
|
generated: undefined;
|
|
3113
3113
|
}, {}, {}>;
|
|
3114
|
-
datasetRunId:
|
|
3114
|
+
datasetRunId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3115
3115
|
name: "dataset_run_id";
|
|
3116
3116
|
tableName: "dataset_run_conversation_relations";
|
|
3117
3117
|
dataType: "string";
|
|
@@ -3128,7 +3128,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core512.PgTableWit
|
|
|
3128
3128
|
identity: undefined;
|
|
3129
3129
|
generated: undefined;
|
|
3130
3130
|
}, {}, {}>;
|
|
3131
|
-
conversationId:
|
|
3131
|
+
conversationId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3132
3132
|
name: "conversation_id";
|
|
3133
3133
|
tableName: "dataset_run_conversation_relations";
|
|
3134
3134
|
dataType: "string";
|
|
@@ -3145,7 +3145,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core512.PgTableWit
|
|
|
3145
3145
|
identity: undefined;
|
|
3146
3146
|
generated: undefined;
|
|
3147
3147
|
}, {}, {}>;
|
|
3148
|
-
datasetItemId:
|
|
3148
|
+
datasetItemId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3149
3149
|
name: "dataset_item_id";
|
|
3150
3150
|
tableName: "dataset_run_conversation_relations";
|
|
3151
3151
|
dataType: "string";
|
|
@@ -3162,7 +3162,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core512.PgTableWit
|
|
|
3162
3162
|
identity: undefined;
|
|
3163
3163
|
generated: undefined;
|
|
3164
3164
|
}, {}, {}>;
|
|
3165
|
-
projectId:
|
|
3165
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3166
3166
|
name: "project_id";
|
|
3167
3167
|
tableName: "dataset_run_conversation_relations";
|
|
3168
3168
|
dataType: "string";
|
|
@@ -3181,7 +3181,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core512.PgTableWit
|
|
|
3181
3181
|
}, {}, {
|
|
3182
3182
|
length: 256;
|
|
3183
3183
|
}>;
|
|
3184
|
-
tenantId:
|
|
3184
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3185
3185
|
name: "tenant_id";
|
|
3186
3186
|
tableName: "dataset_run_conversation_relations";
|
|
3187
3187
|
dataType: "string";
|
|
@@ -3200,7 +3200,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core512.PgTableWit
|
|
|
3200
3200
|
}, {}, {
|
|
3201
3201
|
length: 256;
|
|
3202
3202
|
}>;
|
|
3203
|
-
id:
|
|
3203
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
3204
3204
|
name: "id";
|
|
3205
3205
|
tableName: "dataset_run_conversation_relations";
|
|
3206
3206
|
dataType: "string";
|
|
@@ -3233,11 +3233,11 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core512.PgTableWit
|
|
|
3233
3233
|
* evaluationRunConfigId (optional: if created from a run config),
|
|
3234
3234
|
* and timestamps
|
|
3235
3235
|
*/
|
|
3236
|
-
declare const evaluationRun:
|
|
3236
|
+
declare const evaluationRun: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
3237
3237
|
name: "evaluation_run";
|
|
3238
3238
|
schema: undefined;
|
|
3239
3239
|
columns: {
|
|
3240
|
-
createdAt:
|
|
3240
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3241
3241
|
name: "created_at";
|
|
3242
3242
|
tableName: "evaluation_run";
|
|
3243
3243
|
dataType: "string";
|
|
@@ -3254,7 +3254,7 @@ declare const evaluationRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3254
3254
|
identity: undefined;
|
|
3255
3255
|
generated: undefined;
|
|
3256
3256
|
}, {}, {}>;
|
|
3257
|
-
updatedAt:
|
|
3257
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3258
3258
|
name: "updated_at";
|
|
3259
3259
|
tableName: "evaluation_run";
|
|
3260
3260
|
dataType: "string";
|
|
@@ -3271,7 +3271,7 @@ declare const evaluationRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3271
3271
|
identity: undefined;
|
|
3272
3272
|
generated: undefined;
|
|
3273
3273
|
}, {}, {}>;
|
|
3274
|
-
evaluationJobConfigId:
|
|
3274
|
+
evaluationJobConfigId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3275
3275
|
name: "evaluation_job_config_id";
|
|
3276
3276
|
tableName: "evaluation_run";
|
|
3277
3277
|
dataType: "string";
|
|
@@ -3288,7 +3288,7 @@ declare const evaluationRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3288
3288
|
identity: undefined;
|
|
3289
3289
|
generated: undefined;
|
|
3290
3290
|
}, {}, {}>;
|
|
3291
|
-
evaluationRunConfigId:
|
|
3291
|
+
evaluationRunConfigId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3292
3292
|
name: "evaluation_run_config_id";
|
|
3293
3293
|
tableName: "evaluation_run";
|
|
3294
3294
|
dataType: "string";
|
|
@@ -3305,7 +3305,7 @@ declare const evaluationRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3305
3305
|
identity: undefined;
|
|
3306
3306
|
generated: undefined;
|
|
3307
3307
|
}, {}, {}>;
|
|
3308
|
-
projectId:
|
|
3308
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3309
3309
|
name: "project_id";
|
|
3310
3310
|
tableName: "evaluation_run";
|
|
3311
3311
|
dataType: "string";
|
|
@@ -3324,7 +3324,7 @@ declare const evaluationRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3324
3324
|
}, {}, {
|
|
3325
3325
|
length: 256;
|
|
3326
3326
|
}>;
|
|
3327
|
-
tenantId:
|
|
3327
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3328
3328
|
name: "tenant_id";
|
|
3329
3329
|
tableName: "evaluation_run";
|
|
3330
3330
|
dataType: "string";
|
|
@@ -3343,7 +3343,7 @@ declare const evaluationRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3343
3343
|
}, {}, {
|
|
3344
3344
|
length: 256;
|
|
3345
3345
|
}>;
|
|
3346
|
-
id:
|
|
3346
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
3347
3347
|
name: "id";
|
|
3348
3348
|
tableName: "evaluation_run";
|
|
3349
3349
|
dataType: "string";
|
|
@@ -3374,11 +3374,11 @@ declare const evaluationRun: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3374
3374
|
* evaluationRunId (optional, links to evaluationRun),
|
|
3375
3375
|
* output (evaluation result as MessageContent), and timestamps
|
|
3376
3376
|
*/
|
|
3377
|
-
declare const evaluationResult:
|
|
3377
|
+
declare const evaluationResult: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
3378
3378
|
name: "evaluation_result";
|
|
3379
3379
|
schema: undefined;
|
|
3380
3380
|
columns: {
|
|
3381
|
-
createdAt:
|
|
3381
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3382
3382
|
name: "created_at";
|
|
3383
3383
|
tableName: "evaluation_result";
|
|
3384
3384
|
dataType: "string";
|
|
@@ -3395,7 +3395,7 @@ declare const evaluationResult: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3395
3395
|
identity: undefined;
|
|
3396
3396
|
generated: undefined;
|
|
3397
3397
|
}, {}, {}>;
|
|
3398
|
-
updatedAt:
|
|
3398
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3399
3399
|
name: "updated_at";
|
|
3400
3400
|
tableName: "evaluation_result";
|
|
3401
3401
|
dataType: "string";
|
|
@@ -3412,7 +3412,7 @@ declare const evaluationResult: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3412
3412
|
identity: undefined;
|
|
3413
3413
|
generated: undefined;
|
|
3414
3414
|
}, {}, {}>;
|
|
3415
|
-
conversationId:
|
|
3415
|
+
conversationId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3416
3416
|
name: "conversation_id";
|
|
3417
3417
|
tableName: "evaluation_result";
|
|
3418
3418
|
dataType: "string";
|
|
@@ -3429,7 +3429,7 @@ declare const evaluationResult: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3429
3429
|
identity: undefined;
|
|
3430
3430
|
generated: undefined;
|
|
3431
3431
|
}, {}, {}>;
|
|
3432
|
-
evaluatorId:
|
|
3432
|
+
evaluatorId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3433
3433
|
name: "evaluator_id";
|
|
3434
3434
|
tableName: "evaluation_result";
|
|
3435
3435
|
dataType: "string";
|
|
@@ -3446,7 +3446,7 @@ declare const evaluationResult: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3446
3446
|
identity: undefined;
|
|
3447
3447
|
generated: undefined;
|
|
3448
3448
|
}, {}, {}>;
|
|
3449
|
-
evaluationRunId:
|
|
3449
|
+
evaluationRunId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3450
3450
|
name: "evaluation_run_id";
|
|
3451
3451
|
tableName: "evaluation_result";
|
|
3452
3452
|
dataType: "string";
|
|
@@ -3463,7 +3463,7 @@ declare const evaluationResult: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3463
3463
|
identity: undefined;
|
|
3464
3464
|
generated: undefined;
|
|
3465
3465
|
}, {}, {}>;
|
|
3466
|
-
output:
|
|
3466
|
+
output: drizzle_orm_pg_core1750.PgColumn<{
|
|
3467
3467
|
name: "output";
|
|
3468
3468
|
tableName: "evaluation_result";
|
|
3469
3469
|
dataType: "json";
|
|
@@ -3482,7 +3482,7 @@ declare const evaluationResult: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3482
3482
|
}, {}, {
|
|
3483
3483
|
$type: MessageContent;
|
|
3484
3484
|
}>;
|
|
3485
|
-
projectId:
|
|
3485
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3486
3486
|
name: "project_id";
|
|
3487
3487
|
tableName: "evaluation_result";
|
|
3488
3488
|
dataType: "string";
|
|
@@ -3501,7 +3501,7 @@ declare const evaluationResult: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3501
3501
|
}, {}, {
|
|
3502
3502
|
length: 256;
|
|
3503
3503
|
}>;
|
|
3504
|
-
tenantId:
|
|
3504
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3505
3505
|
name: "tenant_id";
|
|
3506
3506
|
tableName: "evaluation_result";
|
|
3507
3507
|
dataType: "string";
|
|
@@ -3520,7 +3520,7 @@ declare const evaluationResult: drizzle_orm_pg_core512.PgTableWithColumns<{
|
|
|
3520
3520
|
}, {}, {
|
|
3521
3521
|
length: 256;
|
|
3522
3522
|
}>;
|
|
3523
|
-
id:
|
|
3523
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
3524
3524
|
name: "id";
|
|
3525
3525
|
tableName: "evaluation_result";
|
|
3526
3526
|
dataType: "string";
|
|
@@ -3569,11 +3569,11 @@ declare const ledgerArtifactsRelations: drizzle_orm95.Relations<"ledger_artifact
|
|
|
3569
3569
|
* One tenant can have multiple installations (e.g., multiple orgs).
|
|
3570
3570
|
* The installation_id is the GitHub-assigned ID, unique across all GitHub.
|
|
3571
3571
|
*/
|
|
3572
|
-
declare const workAppGitHubInstallations:
|
|
3572
|
+
declare const workAppGitHubInstallations: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
3573
3573
|
name: "work_app_github_installations";
|
|
3574
3574
|
schema: undefined;
|
|
3575
3575
|
columns: {
|
|
3576
|
-
createdAt:
|
|
3576
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3577
3577
|
name: "created_at";
|
|
3578
3578
|
tableName: "work_app_github_installations";
|
|
3579
3579
|
dataType: "string";
|
|
@@ -3590,7 +3590,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core512.PgTableWithColu
|
|
|
3590
3590
|
identity: undefined;
|
|
3591
3591
|
generated: undefined;
|
|
3592
3592
|
}, {}, {}>;
|
|
3593
|
-
updatedAt:
|
|
3593
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3594
3594
|
name: "updated_at";
|
|
3595
3595
|
tableName: "work_app_github_installations";
|
|
3596
3596
|
dataType: "string";
|
|
@@ -3607,7 +3607,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core512.PgTableWithColu
|
|
|
3607
3607
|
identity: undefined;
|
|
3608
3608
|
generated: undefined;
|
|
3609
3609
|
}, {}, {}>;
|
|
3610
|
-
installationId:
|
|
3610
|
+
installationId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3611
3611
|
name: "installation_id";
|
|
3612
3612
|
tableName: "work_app_github_installations";
|
|
3613
3613
|
dataType: "string";
|
|
@@ -3624,7 +3624,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core512.PgTableWithColu
|
|
|
3624
3624
|
identity: undefined;
|
|
3625
3625
|
generated: undefined;
|
|
3626
3626
|
}, {}, {}>;
|
|
3627
|
-
accountLogin:
|
|
3627
|
+
accountLogin: drizzle_orm_pg_core1750.PgColumn<{
|
|
3628
3628
|
name: "account_login";
|
|
3629
3629
|
tableName: "work_app_github_installations";
|
|
3630
3630
|
dataType: "string";
|
|
@@ -3643,7 +3643,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core512.PgTableWithColu
|
|
|
3643
3643
|
}, {}, {
|
|
3644
3644
|
length: 256;
|
|
3645
3645
|
}>;
|
|
3646
|
-
accountId:
|
|
3646
|
+
accountId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3647
3647
|
name: "account_id";
|
|
3648
3648
|
tableName: "work_app_github_installations";
|
|
3649
3649
|
dataType: "string";
|
|
@@ -3660,7 +3660,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core512.PgTableWithColu
|
|
|
3660
3660
|
identity: undefined;
|
|
3661
3661
|
generated: undefined;
|
|
3662
3662
|
}, {}, {}>;
|
|
3663
|
-
accountType:
|
|
3663
|
+
accountType: drizzle_orm_pg_core1750.PgColumn<{
|
|
3664
3664
|
name: "account_type";
|
|
3665
3665
|
tableName: "work_app_github_installations";
|
|
3666
3666
|
dataType: "string";
|
|
@@ -3680,7 +3680,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core512.PgTableWithColu
|
|
|
3680
3680
|
length: 20;
|
|
3681
3681
|
$type: "User" | "Organization";
|
|
3682
3682
|
}>;
|
|
3683
|
-
status:
|
|
3683
|
+
status: drizzle_orm_pg_core1750.PgColumn<{
|
|
3684
3684
|
name: "status";
|
|
3685
3685
|
tableName: "work_app_github_installations";
|
|
3686
3686
|
dataType: "string";
|
|
@@ -3700,7 +3700,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core512.PgTableWithColu
|
|
|
3700
3700
|
length: 20;
|
|
3701
3701
|
$type: "pending" | "active" | "suspended" | "disconnected";
|
|
3702
3702
|
}>;
|
|
3703
|
-
tenantId:
|
|
3703
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3704
3704
|
name: "tenant_id";
|
|
3705
3705
|
tableName: "work_app_github_installations";
|
|
3706
3706
|
dataType: "string";
|
|
@@ -3719,7 +3719,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core512.PgTableWithColu
|
|
|
3719
3719
|
}, {}, {
|
|
3720
3720
|
length: 256;
|
|
3721
3721
|
}>;
|
|
3722
|
-
id:
|
|
3722
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
3723
3723
|
name: "id";
|
|
3724
3724
|
tableName: "work_app_github_installations";
|
|
3725
3725
|
dataType: "string";
|
|
@@ -3746,11 +3746,11 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core512.PgTableWithColu
|
|
|
3746
3746
|
* These are synced from GitHub when the app is installed or updated.
|
|
3747
3747
|
* The repository_id is the GitHub-assigned ID, unique across all GitHub.
|
|
3748
3748
|
*/
|
|
3749
|
-
declare const workAppGitHubRepositories:
|
|
3749
|
+
declare const workAppGitHubRepositories: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
3750
3750
|
name: "work_app_github_repositories";
|
|
3751
3751
|
schema: undefined;
|
|
3752
3752
|
columns: {
|
|
3753
|
-
createdAt:
|
|
3753
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3754
3754
|
name: "created_at";
|
|
3755
3755
|
tableName: "work_app_github_repositories";
|
|
3756
3756
|
dataType: "string";
|
|
@@ -3767,7 +3767,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core512.PgTableWithColum
|
|
|
3767
3767
|
identity: undefined;
|
|
3768
3768
|
generated: undefined;
|
|
3769
3769
|
}, {}, {}>;
|
|
3770
|
-
updatedAt:
|
|
3770
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3771
3771
|
name: "updated_at";
|
|
3772
3772
|
tableName: "work_app_github_repositories";
|
|
3773
3773
|
dataType: "string";
|
|
@@ -3784,7 +3784,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core512.PgTableWithColum
|
|
|
3784
3784
|
identity: undefined;
|
|
3785
3785
|
generated: undefined;
|
|
3786
3786
|
}, {}, {}>;
|
|
3787
|
-
id:
|
|
3787
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
3788
3788
|
name: "id";
|
|
3789
3789
|
tableName: "work_app_github_repositories";
|
|
3790
3790
|
dataType: "string";
|
|
@@ -3803,7 +3803,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core512.PgTableWithColum
|
|
|
3803
3803
|
}, {}, {
|
|
3804
3804
|
length: 256;
|
|
3805
3805
|
}>;
|
|
3806
|
-
installationDbId:
|
|
3806
|
+
installationDbId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3807
3807
|
name: "installation_db_id";
|
|
3808
3808
|
tableName: "work_app_github_repositories";
|
|
3809
3809
|
dataType: "string";
|
|
@@ -3822,7 +3822,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core512.PgTableWithColum
|
|
|
3822
3822
|
}, {}, {
|
|
3823
3823
|
length: 256;
|
|
3824
3824
|
}>;
|
|
3825
|
-
repositoryId:
|
|
3825
|
+
repositoryId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3826
3826
|
name: "repository_id";
|
|
3827
3827
|
tableName: "work_app_github_repositories";
|
|
3828
3828
|
dataType: "string";
|
|
@@ -3839,7 +3839,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core512.PgTableWithColum
|
|
|
3839
3839
|
identity: undefined;
|
|
3840
3840
|
generated: undefined;
|
|
3841
3841
|
}, {}, {}>;
|
|
3842
|
-
repositoryName:
|
|
3842
|
+
repositoryName: drizzle_orm_pg_core1750.PgColumn<{
|
|
3843
3843
|
name: "repository_name";
|
|
3844
3844
|
tableName: "work_app_github_repositories";
|
|
3845
3845
|
dataType: "string";
|
|
@@ -3858,7 +3858,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core512.PgTableWithColum
|
|
|
3858
3858
|
}, {}, {
|
|
3859
3859
|
length: 256;
|
|
3860
3860
|
}>;
|
|
3861
|
-
repositoryFullName:
|
|
3861
|
+
repositoryFullName: drizzle_orm_pg_core1750.PgColumn<{
|
|
3862
3862
|
name: "repository_full_name";
|
|
3863
3863
|
tableName: "work_app_github_repositories";
|
|
3864
3864
|
dataType: "string";
|
|
@@ -3877,7 +3877,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core512.PgTableWithColum
|
|
|
3877
3877
|
}, {}, {
|
|
3878
3878
|
length: 512;
|
|
3879
3879
|
}>;
|
|
3880
|
-
private:
|
|
3880
|
+
private: drizzle_orm_pg_core1750.PgColumn<{
|
|
3881
3881
|
name: "private";
|
|
3882
3882
|
tableName: "work_app_github_repositories";
|
|
3883
3883
|
dataType: "boolean";
|
|
@@ -3905,11 +3905,11 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core512.PgTableWithColum
|
|
|
3905
3905
|
* (cross-schema, no FK constraint for project). tenant_id is included because
|
|
3906
3906
|
* project IDs are only unique within a tenant.
|
|
3907
3907
|
*/
|
|
3908
|
-
declare const workAppGitHubProjectRepositoryAccess:
|
|
3908
|
+
declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
3909
3909
|
name: "work_app_github_project_repository_access";
|
|
3910
3910
|
schema: undefined;
|
|
3911
3911
|
columns: {
|
|
3912
|
-
createdAt:
|
|
3912
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3913
3913
|
name: "created_at";
|
|
3914
3914
|
tableName: "work_app_github_project_repository_access";
|
|
3915
3915
|
dataType: "string";
|
|
@@ -3926,7 +3926,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
3926
3926
|
identity: undefined;
|
|
3927
3927
|
generated: undefined;
|
|
3928
3928
|
}, {}, {}>;
|
|
3929
|
-
updatedAt:
|
|
3929
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
3930
3930
|
name: "updated_at";
|
|
3931
3931
|
tableName: "work_app_github_project_repository_access";
|
|
3932
3932
|
dataType: "string";
|
|
@@ -3943,7 +3943,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
3943
3943
|
identity: undefined;
|
|
3944
3944
|
generated: undefined;
|
|
3945
3945
|
}, {}, {}>;
|
|
3946
|
-
repositoryDbId:
|
|
3946
|
+
repositoryDbId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3947
3947
|
name: "repository_db_id";
|
|
3948
3948
|
tableName: "work_app_github_project_repository_access";
|
|
3949
3949
|
dataType: "string";
|
|
@@ -3962,7 +3962,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
3962
3962
|
}, {}, {
|
|
3963
3963
|
length: 256;
|
|
3964
3964
|
}>;
|
|
3965
|
-
projectId:
|
|
3965
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3966
3966
|
name: "project_id";
|
|
3967
3967
|
tableName: "work_app_github_project_repository_access";
|
|
3968
3968
|
dataType: "string";
|
|
@@ -3981,7 +3981,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
3981
3981
|
}, {}, {
|
|
3982
3982
|
length: 256;
|
|
3983
3983
|
}>;
|
|
3984
|
-
tenantId:
|
|
3984
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
3985
3985
|
name: "tenant_id";
|
|
3986
3986
|
tableName: "work_app_github_project_repository_access";
|
|
3987
3987
|
dataType: "string";
|
|
@@ -4000,7 +4000,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
4000
4000
|
}, {}, {
|
|
4001
4001
|
length: 256;
|
|
4002
4002
|
}>;
|
|
4003
|
-
id:
|
|
4003
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
4004
4004
|
name: "id";
|
|
4005
4005
|
tableName: "work_app_github_project_repository_access";
|
|
4006
4006
|
dataType: "string";
|
|
@@ -4029,11 +4029,11 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
4029
4029
|
* (cross-schema, no FK constraint). These are denormalized here so all GitHub access
|
|
4030
4030
|
* info can be queried from PostgreSQL alone.
|
|
4031
4031
|
*/
|
|
4032
|
-
declare const workAppGitHubMcpToolRepositoryAccess:
|
|
4032
|
+
declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
4033
4033
|
name: "work_app_github_mcp_tool_repository_access";
|
|
4034
4034
|
schema: undefined;
|
|
4035
4035
|
columns: {
|
|
4036
|
-
createdAt:
|
|
4036
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
4037
4037
|
name: "created_at";
|
|
4038
4038
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4039
4039
|
dataType: "string";
|
|
@@ -4050,7 +4050,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
4050
4050
|
identity: undefined;
|
|
4051
4051
|
generated: undefined;
|
|
4052
4052
|
}, {}, {}>;
|
|
4053
|
-
updatedAt:
|
|
4053
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
4054
4054
|
name: "updated_at";
|
|
4055
4055
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4056
4056
|
dataType: "string";
|
|
@@ -4067,7 +4067,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
4067
4067
|
identity: undefined;
|
|
4068
4068
|
generated: undefined;
|
|
4069
4069
|
}, {}, {}>;
|
|
4070
|
-
toolId:
|
|
4070
|
+
toolId: drizzle_orm_pg_core1750.PgColumn<{
|
|
4071
4071
|
name: "tool_id";
|
|
4072
4072
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4073
4073
|
dataType: "string";
|
|
@@ -4086,7 +4086,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
4086
4086
|
}, {}, {
|
|
4087
4087
|
length: 256;
|
|
4088
4088
|
}>;
|
|
4089
|
-
repositoryDbId:
|
|
4089
|
+
repositoryDbId: drizzle_orm_pg_core1750.PgColumn<{
|
|
4090
4090
|
name: "repository_db_id";
|
|
4091
4091
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4092
4092
|
dataType: "string";
|
|
@@ -4105,7 +4105,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
4105
4105
|
}, {}, {
|
|
4106
4106
|
length: 256;
|
|
4107
4107
|
}>;
|
|
4108
|
-
projectId:
|
|
4108
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
4109
4109
|
name: "project_id";
|
|
4110
4110
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4111
4111
|
dataType: "string";
|
|
@@ -4124,7 +4124,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
4124
4124
|
}, {}, {
|
|
4125
4125
|
length: 256;
|
|
4126
4126
|
}>;
|
|
4127
|
-
tenantId:
|
|
4127
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
4128
4128
|
name: "tenant_id";
|
|
4129
4129
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4130
4130
|
dataType: "string";
|
|
@@ -4143,7 +4143,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
4143
4143
|
}, {}, {
|
|
4144
4144
|
length: 256;
|
|
4145
4145
|
}>;
|
|
4146
|
-
id:
|
|
4146
|
+
id: drizzle_orm_pg_core1750.PgColumn<{
|
|
4147
4147
|
name: "id";
|
|
4148
4148
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4149
4149
|
dataType: "string";
|
|
@@ -4171,11 +4171,11 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core512.PgTab
|
|
|
4171
4171
|
* - 'selected': Project only has access to repositories listed in work_app_github_project_repository_access
|
|
4172
4172
|
* If no row exists for a project, defaults to 'selected' (fail-safe: no access unless explicitly granted).
|
|
4173
4173
|
*/
|
|
4174
|
-
declare const workAppGitHubProjectAccessMode:
|
|
4174
|
+
declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
4175
4175
|
name: "work_app_github_project_access_mode";
|
|
4176
4176
|
schema: undefined;
|
|
4177
4177
|
columns: {
|
|
4178
|
-
createdAt:
|
|
4178
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
4179
4179
|
name: "created_at";
|
|
4180
4180
|
tableName: "work_app_github_project_access_mode";
|
|
4181
4181
|
dataType: "string";
|
|
@@ -4192,7 +4192,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core512.PgTableWith
|
|
|
4192
4192
|
identity: undefined;
|
|
4193
4193
|
generated: undefined;
|
|
4194
4194
|
}, {}, {}>;
|
|
4195
|
-
updatedAt:
|
|
4195
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
4196
4196
|
name: "updated_at";
|
|
4197
4197
|
tableName: "work_app_github_project_access_mode";
|
|
4198
4198
|
dataType: "string";
|
|
@@ -4209,7 +4209,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core512.PgTableWith
|
|
|
4209
4209
|
identity: undefined;
|
|
4210
4210
|
generated: undefined;
|
|
4211
4211
|
}, {}, {}>;
|
|
4212
|
-
tenantId:
|
|
4212
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
4213
4213
|
name: "tenant_id";
|
|
4214
4214
|
tableName: "work_app_github_project_access_mode";
|
|
4215
4215
|
dataType: "string";
|
|
@@ -4228,7 +4228,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core512.PgTableWith
|
|
|
4228
4228
|
}, {}, {
|
|
4229
4229
|
length: 256;
|
|
4230
4230
|
}>;
|
|
4231
|
-
projectId:
|
|
4231
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
4232
4232
|
name: "project_id";
|
|
4233
4233
|
tableName: "work_app_github_project_access_mode";
|
|
4234
4234
|
dataType: "string";
|
|
@@ -4247,7 +4247,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core512.PgTableWith
|
|
|
4247
4247
|
}, {}, {
|
|
4248
4248
|
length: 256;
|
|
4249
4249
|
}>;
|
|
4250
|
-
mode:
|
|
4250
|
+
mode: drizzle_orm_pg_core1750.PgColumn<{
|
|
4251
4251
|
name: "mode";
|
|
4252
4252
|
tableName: "work_app_github_project_access_mode";
|
|
4253
4253
|
dataType: "string";
|
|
@@ -4276,11 +4276,11 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core512.PgTableWith
|
|
|
4276
4276
|
* - 'selected': Tool only has access to repositories listed in work_app_github_mcp_tool_repository_access
|
|
4277
4277
|
* If no row exists for a tool, defaults to 'selected' (fail-safe: no access unless explicitly granted).
|
|
4278
4278
|
*/
|
|
4279
|
-
declare const workAppGitHubMcpToolAccessMode:
|
|
4279
|
+
declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core1750.PgTableWithColumns<{
|
|
4280
4280
|
name: "work_app_github_mcp_tool_access_mode";
|
|
4281
4281
|
schema: undefined;
|
|
4282
4282
|
columns: {
|
|
4283
|
-
createdAt:
|
|
4283
|
+
createdAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
4284
4284
|
name: "created_at";
|
|
4285
4285
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4286
4286
|
dataType: "string";
|
|
@@ -4297,7 +4297,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core512.PgTableWith
|
|
|
4297
4297
|
identity: undefined;
|
|
4298
4298
|
generated: undefined;
|
|
4299
4299
|
}, {}, {}>;
|
|
4300
|
-
updatedAt:
|
|
4300
|
+
updatedAt: drizzle_orm_pg_core1750.PgColumn<{
|
|
4301
4301
|
name: "updated_at";
|
|
4302
4302
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4303
4303
|
dataType: "string";
|
|
@@ -4314,7 +4314,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core512.PgTableWith
|
|
|
4314
4314
|
identity: undefined;
|
|
4315
4315
|
generated: undefined;
|
|
4316
4316
|
}, {}, {}>;
|
|
4317
|
-
toolId:
|
|
4317
|
+
toolId: drizzle_orm_pg_core1750.PgColumn<{
|
|
4318
4318
|
name: "tool_id";
|
|
4319
4319
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4320
4320
|
dataType: "string";
|
|
@@ -4333,7 +4333,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core512.PgTableWith
|
|
|
4333
4333
|
}, {}, {
|
|
4334
4334
|
length: 256;
|
|
4335
4335
|
}>;
|
|
4336
|
-
tenantId:
|
|
4336
|
+
tenantId: drizzle_orm_pg_core1750.PgColumn<{
|
|
4337
4337
|
name: "tenant_id";
|
|
4338
4338
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4339
4339
|
dataType: "string";
|
|
@@ -4352,7 +4352,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core512.PgTableWith
|
|
|
4352
4352
|
}, {}, {
|
|
4353
4353
|
length: 256;
|
|
4354
4354
|
}>;
|
|
4355
|
-
projectId:
|
|
4355
|
+
projectId: drizzle_orm_pg_core1750.PgColumn<{
|
|
4356
4356
|
name: "project_id";
|
|
4357
4357
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4358
4358
|
dataType: "string";
|
|
@@ -4371,7 +4371,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core512.PgTableWith
|
|
|
4371
4371
|
}, {}, {
|
|
4372
4372
|
length: 256;
|
|
4373
4373
|
}>;
|
|
4374
|
-
mode:
|
|
4374
|
+
mode: drizzle_orm_pg_core1750.PgColumn<{
|
|
4375
4375
|
name: "mode";
|
|
4376
4376
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4377
4377
|
dataType: "string";
|