@inkeep/agents-core 0.48.5 → 0.48.7
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/auth/auth-validation-schemas.d.ts +148 -148
- package/dist/auth/auth.d.ts +53 -53
- package/dist/auth/auth.js +8 -2
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/constants/models.d.ts +1 -0
- package/dist/constants/models.js +1 -0
- package/dist/data-access/manage/skills.d.ts +1 -1
- package/dist/data-access/manage/subAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/conversations.d.ts +7 -7
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +2 -2
- package/dist/db/manage/manage-schema.d.ts +357 -357
- package/dist/db/runtime/runtime-schema.d.ts +270 -270
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +1386 -1386
- 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_orm111 from "drizzle-orm";
|
|
5
|
-
import * as
|
|
5
|
+
import * as drizzle_orm_pg_core1831 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_core1831.PgTableWithColumns<{
|
|
19
19
|
name: "project_metadata";
|
|
20
20
|
schema: undefined;
|
|
21
21
|
columns: {
|
|
22
|
-
id:
|
|
22
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
23
23
|
name: "id";
|
|
24
24
|
tableName: "project_metadata";
|
|
25
25
|
dataType: "string";
|
|
@@ -38,7 +38,7 @@ declare const projectMetadata: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
38
38
|
}, {}, {
|
|
39
39
|
length: 256;
|
|
40
40
|
}>;
|
|
41
|
-
tenantId:
|
|
41
|
+
tenantId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
57
57
|
}, {}, {
|
|
58
58
|
length: 256;
|
|
59
59
|
}>;
|
|
60
|
-
createdAt:
|
|
60
|
+
createdAt: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
74
74
|
identity: undefined;
|
|
75
75
|
generated: undefined;
|
|
76
76
|
}, {}, {}>;
|
|
77
|
-
createdBy:
|
|
77
|
+
createdBy: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
93
93
|
}, {}, {
|
|
94
94
|
length: 256;
|
|
95
95
|
}>;
|
|
96
|
-
mainBranchName:
|
|
96
|
+
mainBranchName: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
115
115
|
};
|
|
116
116
|
dialect: "pg";
|
|
117
117
|
}>;
|
|
118
|
-
declare const conversations:
|
|
118
|
+
declare const conversations: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
119
119
|
name: "conversations";
|
|
120
120
|
schema: undefined;
|
|
121
121
|
columns: {
|
|
122
|
-
createdAt:
|
|
122
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
123
123
|
name: "created_at";
|
|
124
124
|
tableName: "conversations";
|
|
125
125
|
dataType: "string";
|
|
@@ -136,7 +136,7 @@ declare const conversations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
136
136
|
identity: undefined;
|
|
137
137
|
generated: undefined;
|
|
138
138
|
}, {}, {}>;
|
|
139
|
-
updatedAt:
|
|
139
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
140
140
|
name: "updated_at";
|
|
141
141
|
tableName: "conversations";
|
|
142
142
|
dataType: "string";
|
|
@@ -153,7 +153,7 @@ declare const conversations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
153
153
|
identity: undefined;
|
|
154
154
|
generated: undefined;
|
|
155
155
|
}, {}, {}>;
|
|
156
|
-
userId:
|
|
156
|
+
userId: drizzle_orm_pg_core1831.PgColumn<{
|
|
157
157
|
name: "user_id";
|
|
158
158
|
tableName: "conversations";
|
|
159
159
|
dataType: "string";
|
|
@@ -172,7 +172,7 @@ declare const conversations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
172
172
|
}, {}, {
|
|
173
173
|
length: 256;
|
|
174
174
|
}>;
|
|
175
|
-
agentId:
|
|
175
|
+
agentId: drizzle_orm_pg_core1831.PgColumn<{
|
|
176
176
|
name: "agent_id";
|
|
177
177
|
tableName: "conversations";
|
|
178
178
|
dataType: "string";
|
|
@@ -191,7 +191,7 @@ declare const conversations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
191
191
|
}, {}, {
|
|
192
192
|
length: 256;
|
|
193
193
|
}>;
|
|
194
|
-
activeSubAgentId:
|
|
194
|
+
activeSubAgentId: drizzle_orm_pg_core1831.PgColumn<{
|
|
195
195
|
name: "active_sub_agent_id";
|
|
196
196
|
tableName: "conversations";
|
|
197
197
|
dataType: "string";
|
|
@@ -210,13 +210,13 @@ declare const conversations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
210
210
|
}, {}, {
|
|
211
211
|
length: 256;
|
|
212
212
|
}>;
|
|
213
|
-
ref:
|
|
213
|
+
ref: drizzle_orm_pg_core1831.PgColumn<{
|
|
214
214
|
name: "ref";
|
|
215
215
|
tableName: "conversations";
|
|
216
216
|
dataType: "json";
|
|
217
217
|
columnType: "PgJsonb";
|
|
218
218
|
data: {
|
|
219
|
-
type: "
|
|
219
|
+
type: "tag" | "commit" | "branch";
|
|
220
220
|
name: string;
|
|
221
221
|
hash: string;
|
|
222
222
|
};
|
|
@@ -232,12 +232,12 @@ declare const conversations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
232
232
|
generated: undefined;
|
|
233
233
|
}, {}, {
|
|
234
234
|
$type: {
|
|
235
|
-
type: "
|
|
235
|
+
type: "tag" | "commit" | "branch";
|
|
236
236
|
name: string;
|
|
237
237
|
hash: string;
|
|
238
238
|
};
|
|
239
239
|
}>;
|
|
240
|
-
title:
|
|
240
|
+
title: drizzle_orm_pg_core1831.PgColumn<{
|
|
241
241
|
name: "title";
|
|
242
242
|
tableName: "conversations";
|
|
243
243
|
dataType: "string";
|
|
@@ -254,7 +254,7 @@ declare const conversations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
254
254
|
identity: undefined;
|
|
255
255
|
generated: undefined;
|
|
256
256
|
}, {}, {}>;
|
|
257
|
-
lastContextResolution:
|
|
257
|
+
lastContextResolution: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
271
271
|
identity: undefined;
|
|
272
272
|
generated: undefined;
|
|
273
273
|
}, {}, {}>;
|
|
274
|
-
metadata:
|
|
274
|
+
metadata: drizzle_orm_pg_core1831.PgColumn<{
|
|
275
275
|
name: "metadata";
|
|
276
276
|
tableName: "conversations";
|
|
277
277
|
dataType: "json";
|
|
@@ -290,7 +290,7 @@ declare const conversations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
290
290
|
}, {}, {
|
|
291
291
|
$type: ConversationMetadata;
|
|
292
292
|
}>;
|
|
293
|
-
projectId:
|
|
293
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
294
294
|
name: "project_id";
|
|
295
295
|
tableName: "conversations";
|
|
296
296
|
dataType: "string";
|
|
@@ -309,7 +309,7 @@ declare const conversations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
309
309
|
}, {}, {
|
|
310
310
|
length: 256;
|
|
311
311
|
}>;
|
|
312
|
-
tenantId:
|
|
312
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
313
313
|
name: "tenant_id";
|
|
314
314
|
tableName: "conversations";
|
|
315
315
|
dataType: "string";
|
|
@@ -328,7 +328,7 @@ declare const conversations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
328
328
|
}, {}, {
|
|
329
329
|
length: 256;
|
|
330
330
|
}>;
|
|
331
|
-
id:
|
|
331
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
332
332
|
name: "id";
|
|
333
333
|
tableName: "conversations";
|
|
334
334
|
dataType: "string";
|
|
@@ -350,11 +350,11 @@ declare const conversations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
350
350
|
};
|
|
351
351
|
dialect: "pg";
|
|
352
352
|
}>;
|
|
353
|
-
declare const tasks:
|
|
353
|
+
declare const tasks: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
354
354
|
name: "tasks";
|
|
355
355
|
schema: undefined;
|
|
356
356
|
columns: {
|
|
357
|
-
createdAt:
|
|
357
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
358
358
|
name: "created_at";
|
|
359
359
|
tableName: "tasks";
|
|
360
360
|
dataType: "string";
|
|
@@ -371,7 +371,7 @@ declare const tasks: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
371
371
|
identity: undefined;
|
|
372
372
|
generated: undefined;
|
|
373
373
|
}, {}, {}>;
|
|
374
|
-
updatedAt:
|
|
374
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
375
375
|
name: "updated_at";
|
|
376
376
|
tableName: "tasks";
|
|
377
377
|
dataType: "string";
|
|
@@ -388,7 +388,7 @@ declare const tasks: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
388
388
|
identity: undefined;
|
|
389
389
|
generated: undefined;
|
|
390
390
|
}, {}, {}>;
|
|
391
|
-
contextId:
|
|
391
|
+
contextId: drizzle_orm_pg_core1831.PgColumn<{
|
|
392
392
|
name: "context_id";
|
|
393
393
|
tableName: "tasks";
|
|
394
394
|
dataType: "string";
|
|
@@ -407,13 +407,13 @@ declare const tasks: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
407
407
|
}, {}, {
|
|
408
408
|
length: 256;
|
|
409
409
|
}>;
|
|
410
|
-
ref:
|
|
410
|
+
ref: drizzle_orm_pg_core1831.PgColumn<{
|
|
411
411
|
name: "ref";
|
|
412
412
|
tableName: "tasks";
|
|
413
413
|
dataType: "json";
|
|
414
414
|
columnType: "PgJsonb";
|
|
415
415
|
data: {
|
|
416
|
-
type: "
|
|
416
|
+
type: "tag" | "commit" | "branch";
|
|
417
417
|
name: string;
|
|
418
418
|
hash: string;
|
|
419
419
|
};
|
|
@@ -429,12 +429,12 @@ declare const tasks: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
429
429
|
generated: undefined;
|
|
430
430
|
}, {}, {
|
|
431
431
|
$type: {
|
|
432
|
-
type: "
|
|
432
|
+
type: "tag" | "commit" | "branch";
|
|
433
433
|
name: string;
|
|
434
434
|
hash: string;
|
|
435
435
|
};
|
|
436
436
|
}>;
|
|
437
|
-
status:
|
|
437
|
+
status: drizzle_orm_pg_core1831.PgColumn<{
|
|
438
438
|
name: "status";
|
|
439
439
|
tableName: "tasks";
|
|
440
440
|
dataType: "string";
|
|
@@ -453,7 +453,7 @@ declare const tasks: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
453
453
|
}, {}, {
|
|
454
454
|
length: 256;
|
|
455
455
|
}>;
|
|
456
|
-
metadata:
|
|
456
|
+
metadata: drizzle_orm_pg_core1831.PgColumn<{
|
|
457
457
|
name: "metadata";
|
|
458
458
|
tableName: "tasks";
|
|
459
459
|
dataType: "json";
|
|
@@ -472,7 +472,7 @@ declare const tasks: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
472
472
|
}, {}, {
|
|
473
473
|
$type: TaskMetadataConfig;
|
|
474
474
|
}>;
|
|
475
|
-
subAgentId:
|
|
475
|
+
subAgentId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
491
491
|
}, {}, {
|
|
492
492
|
length: 256;
|
|
493
493
|
}>;
|
|
494
|
-
agentId:
|
|
494
|
+
agentId: drizzle_orm_pg_core1831.PgColumn<{
|
|
495
495
|
name: "agent_id";
|
|
496
496
|
tableName: "tasks";
|
|
497
497
|
dataType: "string";
|
|
@@ -510,7 +510,7 @@ declare const tasks: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
510
510
|
}, {}, {
|
|
511
511
|
length: 256;
|
|
512
512
|
}>;
|
|
513
|
-
projectId:
|
|
513
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
514
514
|
name: "project_id";
|
|
515
515
|
tableName: "tasks";
|
|
516
516
|
dataType: "string";
|
|
@@ -529,7 +529,7 @@ declare const tasks: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
529
529
|
}, {}, {
|
|
530
530
|
length: 256;
|
|
531
531
|
}>;
|
|
532
|
-
tenantId:
|
|
532
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
533
533
|
name: "tenant_id";
|
|
534
534
|
tableName: "tasks";
|
|
535
535
|
dataType: "string";
|
|
@@ -548,7 +548,7 @@ declare const tasks: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
548
548
|
}, {}, {
|
|
549
549
|
length: 256;
|
|
550
550
|
}>;
|
|
551
|
-
id:
|
|
551
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
552
552
|
name: "id";
|
|
553
553
|
tableName: "tasks";
|
|
554
554
|
dataType: "string";
|
|
@@ -570,11 +570,11 @@ declare const tasks: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
570
570
|
};
|
|
571
571
|
dialect: "pg";
|
|
572
572
|
}>;
|
|
573
|
-
declare const apiKeys:
|
|
573
|
+
declare const apiKeys: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
574
574
|
name: "api_keys";
|
|
575
575
|
schema: undefined;
|
|
576
576
|
columns: {
|
|
577
|
-
createdAt:
|
|
577
|
+
createdAt: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
591
591
|
identity: undefined;
|
|
592
592
|
generated: undefined;
|
|
593
593
|
}, {}, {}>;
|
|
594
|
-
updatedAt:
|
|
594
|
+
updatedAt: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
608
608
|
identity: undefined;
|
|
609
609
|
generated: undefined;
|
|
610
610
|
}, {}, {}>;
|
|
611
|
-
agentId:
|
|
611
|
+
agentId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
627
627
|
}, {}, {
|
|
628
628
|
length: 256;
|
|
629
629
|
}>;
|
|
630
|
-
publicId:
|
|
630
|
+
publicId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
646
646
|
}, {}, {
|
|
647
647
|
length: 256;
|
|
648
648
|
}>;
|
|
649
|
-
keyHash:
|
|
649
|
+
keyHash: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
665
665
|
}, {}, {
|
|
666
666
|
length: 256;
|
|
667
667
|
}>;
|
|
668
|
-
keyPrefix:
|
|
668
|
+
keyPrefix: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
684
684
|
}, {}, {
|
|
685
685
|
length: 256;
|
|
686
686
|
}>;
|
|
687
|
-
name:
|
|
687
|
+
name: drizzle_orm_pg_core1831.PgColumn<{
|
|
688
688
|
name: "name";
|
|
689
689
|
tableName: "api_keys";
|
|
690
690
|
dataType: "string";
|
|
@@ -703,7 +703,7 @@ declare const apiKeys: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
703
703
|
}, {}, {
|
|
704
704
|
length: 256;
|
|
705
705
|
}>;
|
|
706
|
-
lastUsedAt:
|
|
706
|
+
lastUsedAt: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
720
720
|
identity: undefined;
|
|
721
721
|
generated: undefined;
|
|
722
722
|
}, {}, {}>;
|
|
723
|
-
expiresAt:
|
|
723
|
+
expiresAt: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
737
737
|
identity: undefined;
|
|
738
738
|
generated: undefined;
|
|
739
739
|
}, {}, {}>;
|
|
740
|
-
projectId:
|
|
740
|
+
projectId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
756
756
|
}, {}, {
|
|
757
757
|
length: 256;
|
|
758
758
|
}>;
|
|
759
|
-
tenantId:
|
|
759
|
+
tenantId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
775
775
|
}, {}, {
|
|
776
776
|
length: 256;
|
|
777
777
|
}>;
|
|
778
|
-
id:
|
|
778
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
779
779
|
name: "id";
|
|
780
780
|
tableName: "api_keys";
|
|
781
781
|
dataType: "string";
|
|
@@ -804,11 +804,11 @@ declare const apiKeys: drizzle_orm_pg_core433.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_core1831.PgTableWithColumns<{
|
|
808
808
|
name: "trigger_invocations";
|
|
809
809
|
schema: undefined;
|
|
810
810
|
columns: {
|
|
811
|
-
triggerId:
|
|
811
|
+
triggerId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
827
827
|
}, {}, {
|
|
828
828
|
length: 256;
|
|
829
829
|
}>;
|
|
830
|
-
conversationId:
|
|
830
|
+
conversationId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
846
846
|
}, {}, {
|
|
847
847
|
length: 256;
|
|
848
848
|
}>;
|
|
849
|
-
status:
|
|
849
|
+
status: drizzle_orm_pg_core1831.PgColumn<{
|
|
850
850
|
name: "status";
|
|
851
851
|
tableName: "trigger_invocations";
|
|
852
852
|
dataType: "string";
|
|
@@ -865,7 +865,7 @@ declare const triggerInvocations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
865
865
|
}, {}, {
|
|
866
866
|
length: 20;
|
|
867
867
|
}>;
|
|
868
|
-
requestPayload:
|
|
868
|
+
requestPayload: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
882
882
|
identity: undefined;
|
|
883
883
|
generated: undefined;
|
|
884
884
|
}, {}, {}>;
|
|
885
|
-
transformedPayload:
|
|
885
|
+
transformedPayload: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
899
899
|
identity: undefined;
|
|
900
900
|
generated: undefined;
|
|
901
901
|
}, {}, {}>;
|
|
902
|
-
errorMessage:
|
|
902
|
+
errorMessage: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
916
916
|
identity: undefined;
|
|
917
917
|
generated: undefined;
|
|
918
918
|
}, {}, {}>;
|
|
919
|
-
createdAt:
|
|
919
|
+
createdAt: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
933
933
|
identity: undefined;
|
|
934
934
|
generated: undefined;
|
|
935
935
|
}, {}, {}>;
|
|
936
|
-
agentId:
|
|
936
|
+
agentId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
952
952
|
}, {}, {
|
|
953
953
|
length: 256;
|
|
954
954
|
}>;
|
|
955
|
-
projectId:
|
|
955
|
+
projectId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
971
971
|
}, {}, {
|
|
972
972
|
length: 256;
|
|
973
973
|
}>;
|
|
974
|
-
tenantId:
|
|
974
|
+
tenantId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<{
|
|
|
990
990
|
}, {}, {
|
|
991
991
|
length: 256;
|
|
992
992
|
}>;
|
|
993
|
-
id:
|
|
993
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
994
994
|
name: "id";
|
|
995
995
|
tableName: "trigger_invocations";
|
|
996
996
|
dataType: "string";
|
|
@@ -1017,11 +1017,11 @@ declare const triggerInvocations: drizzle_orm_pg_core433.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_core1831.PgTableWithColumns<{
|
|
1021
1021
|
name: "work_app_slack_workspaces";
|
|
1022
1022
|
schema: undefined;
|
|
1023
1023
|
columns: {
|
|
1024
|
-
createdAt:
|
|
1024
|
+
createdAt: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<
|
|
|
1038
1038
|
identity: undefined;
|
|
1039
1039
|
generated: undefined;
|
|
1040
1040
|
}, {}, {}>;
|
|
1041
|
-
updatedAt:
|
|
1041
|
+
updatedAt: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<
|
|
|
1055
1055
|
identity: undefined;
|
|
1056
1056
|
generated: undefined;
|
|
1057
1057
|
}, {}, {}>;
|
|
1058
|
-
id:
|
|
1058
|
+
id: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<
|
|
|
1074
1074
|
}, {}, {
|
|
1075
1075
|
length: 256;
|
|
1076
1076
|
}>;
|
|
1077
|
-
tenantId:
|
|
1077
|
+
tenantId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<
|
|
|
1093
1093
|
}, {}, {
|
|
1094
1094
|
length: 256;
|
|
1095
1095
|
}>;
|
|
1096
|
-
slackTeamId:
|
|
1096
|
+
slackTeamId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<
|
|
|
1112
1112
|
}, {}, {
|
|
1113
1113
|
length: 256;
|
|
1114
1114
|
}>;
|
|
1115
|
-
slackEnterpriseId:
|
|
1115
|
+
slackEnterpriseId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<
|
|
|
1131
1131
|
}, {}, {
|
|
1132
1132
|
length: 256;
|
|
1133
1133
|
}>;
|
|
1134
|
-
slackAppId:
|
|
1134
|
+
slackAppId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<
|
|
|
1150
1150
|
}, {}, {
|
|
1151
1151
|
length: 256;
|
|
1152
1152
|
}>;
|
|
1153
|
-
slackTeamName:
|
|
1153
|
+
slackTeamName: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<
|
|
|
1169
1169
|
}, {}, {
|
|
1170
1170
|
length: 512;
|
|
1171
1171
|
}>;
|
|
1172
|
-
nangoProviderConfigKey:
|
|
1172
|
+
nangoProviderConfigKey: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<
|
|
|
1188
1188
|
}, {}, {
|
|
1189
1189
|
length: 256;
|
|
1190
1190
|
}>;
|
|
1191
|
-
nangoConnectionId:
|
|
1191
|
+
nangoConnectionId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<
|
|
|
1207
1207
|
}, {}, {
|
|
1208
1208
|
length: 256;
|
|
1209
1209
|
}>;
|
|
1210
|
-
status:
|
|
1210
|
+
status: drizzle_orm_pg_core1831.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_core433.PgTableWithColumns<
|
|
|
1226
1226
|
}, {}, {
|
|
1227
1227
|
length: 20;
|
|
1228
1228
|
}>;
|
|
1229
|
-
installedByUserId:
|
|
1229
|
+
installedByUserId: drizzle_orm_pg_core1831.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_core433.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_core1831.PgTableWithColumns<{
|
|
1255
1255
|
name: "work_app_slack_user_mappings";
|
|
1256
1256
|
schema: undefined;
|
|
1257
1257
|
columns: {
|
|
1258
|
-
createdAt:
|
|
1258
|
+
createdAt: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1272
1272
|
identity: undefined;
|
|
1273
1273
|
generated: undefined;
|
|
1274
1274
|
}, {}, {}>;
|
|
1275
|
-
updatedAt:
|
|
1275
|
+
updatedAt: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1289
1289
|
identity: undefined;
|
|
1290
1290
|
generated: undefined;
|
|
1291
1291
|
}, {}, {}>;
|
|
1292
|
-
id:
|
|
1292
|
+
id: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1308
1308
|
}, {}, {
|
|
1309
1309
|
length: 256;
|
|
1310
1310
|
}>;
|
|
1311
|
-
tenantId:
|
|
1311
|
+
tenantId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1327
1327
|
}, {}, {
|
|
1328
1328
|
length: 256;
|
|
1329
1329
|
}>;
|
|
1330
|
-
clientId:
|
|
1330
|
+
clientId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1346
1346
|
}, {}, {
|
|
1347
1347
|
length: 256;
|
|
1348
1348
|
}>;
|
|
1349
|
-
slackUserId:
|
|
1349
|
+
slackUserId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1365
1365
|
}, {}, {
|
|
1366
1366
|
length: 256;
|
|
1367
1367
|
}>;
|
|
1368
|
-
slackTeamId:
|
|
1368
|
+
slackTeamId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1384
1384
|
}, {}, {
|
|
1385
1385
|
length: 256;
|
|
1386
1386
|
}>;
|
|
1387
|
-
slackEnterpriseId:
|
|
1387
|
+
slackEnterpriseId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1403
1403
|
}, {}, {
|
|
1404
1404
|
length: 256;
|
|
1405
1405
|
}>;
|
|
1406
|
-
inkeepUserId:
|
|
1406
|
+
inkeepUserId: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1420
1420
|
identity: undefined;
|
|
1421
1421
|
generated: undefined;
|
|
1422
1422
|
}, {}, {}>;
|
|
1423
|
-
slackUsername:
|
|
1423
|
+
slackUsername: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1439
1439
|
}, {}, {
|
|
1440
1440
|
length: 256;
|
|
1441
1441
|
}>;
|
|
1442
|
-
slackEmail:
|
|
1442
|
+
slackEmail: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1458
1458
|
}, {}, {
|
|
1459
1459
|
length: 256;
|
|
1460
1460
|
}>;
|
|
1461
|
-
linkedAt:
|
|
1461
|
+
linkedAt: drizzle_orm_pg_core1831.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_core433.PgTableWithColumn
|
|
|
1475
1475
|
identity: undefined;
|
|
1476
1476
|
generated: undefined;
|
|
1477
1477
|
}, {}, {}>;
|
|
1478
|
-
lastUsedAt:
|
|
1478
|
+
lastUsedAt: drizzle_orm_pg_core1831.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_core433.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_core1831.PgTableWithColumns<{
|
|
1504
1504
|
name: "work_app_slack_channel_agent_configs";
|
|
1505
1505
|
schema: undefined;
|
|
1506
1506
|
columns: {
|
|
1507
|
-
createdAt:
|
|
1507
|
+
createdAt: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1521
1521
|
identity: undefined;
|
|
1522
1522
|
generated: undefined;
|
|
1523
1523
|
}, {}, {}>;
|
|
1524
|
-
updatedAt:
|
|
1524
|
+
updatedAt: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1538
1538
|
identity: undefined;
|
|
1539
1539
|
generated: undefined;
|
|
1540
1540
|
}, {}, {}>;
|
|
1541
|
-
id:
|
|
1541
|
+
id: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1557
1557
|
}, {}, {
|
|
1558
1558
|
length: 256;
|
|
1559
1559
|
}>;
|
|
1560
|
-
tenantId:
|
|
1560
|
+
tenantId: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1576
1576
|
}, {}, {
|
|
1577
1577
|
length: 256;
|
|
1578
1578
|
}>;
|
|
1579
|
-
slackTeamId:
|
|
1579
|
+
slackTeamId: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1595
1595
|
}, {}, {
|
|
1596
1596
|
length: 256;
|
|
1597
1597
|
}>;
|
|
1598
|
-
slackChannelId:
|
|
1598
|
+
slackChannelId: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1614
1614
|
}, {}, {
|
|
1615
1615
|
length: 256;
|
|
1616
1616
|
}>;
|
|
1617
|
-
slackChannelName:
|
|
1617
|
+
slackChannelName: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1633
1633
|
}, {}, {
|
|
1634
1634
|
length: 256;
|
|
1635
1635
|
}>;
|
|
1636
|
-
slackChannelType:
|
|
1636
|
+
slackChannelType: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1652
1652
|
}, {}, {
|
|
1653
1653
|
length: 50;
|
|
1654
1654
|
}>;
|
|
1655
|
-
projectId:
|
|
1655
|
+
projectId: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1671
1671
|
}, {}, {
|
|
1672
1672
|
length: 256;
|
|
1673
1673
|
}>;
|
|
1674
|
-
agentId:
|
|
1674
|
+
agentId: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1690
1690
|
}, {}, {
|
|
1691
1691
|
length: 256;
|
|
1692
1692
|
}>;
|
|
1693
|
-
agentName:
|
|
1693
|
+
agentName: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1709
1709
|
}, {}, {
|
|
1710
1710
|
length: 256;
|
|
1711
1711
|
}>;
|
|
1712
|
-
configuredByUserId:
|
|
1712
|
+
configuredByUserId: drizzle_orm_pg_core1831.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_core433.PgTableWit
|
|
|
1726
1726
|
identity: undefined;
|
|
1727
1727
|
generated: undefined;
|
|
1728
1728
|
}, {}, {}>;
|
|
1729
|
-
enabled:
|
|
1729
|
+
enabled: drizzle_orm_pg_core1831.PgColumn<{
|
|
1730
1730
|
name: "enabled";
|
|
1731
1731
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1732
1732
|
dataType: "boolean";
|
|
@@ -1750,11 +1750,11 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core433.PgTableWit
|
|
|
1750
1750
|
* Scheduled trigger invocations - records each execution of a scheduled trigger.
|
|
1751
1751
|
* NOTE: No FK to scheduled_triggers table since it's in a different database (DoltGres).
|
|
1752
1752
|
*/
|
|
1753
|
-
declare const scheduledTriggerInvocations:
|
|
1753
|
+
declare const scheduledTriggerInvocations: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
1754
1754
|
name: "scheduled_trigger_invocations";
|
|
1755
1755
|
schema: undefined;
|
|
1756
1756
|
columns: {
|
|
1757
|
-
scheduledTriggerId:
|
|
1757
|
+
scheduledTriggerId: drizzle_orm_pg_core1831.PgColumn<{
|
|
1758
1758
|
name: "scheduled_trigger_id";
|
|
1759
1759
|
tableName: "scheduled_trigger_invocations";
|
|
1760
1760
|
dataType: "string";
|
|
@@ -1773,12 +1773,12 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1773
1773
|
}, {}, {
|
|
1774
1774
|
length: 256;
|
|
1775
1775
|
}>;
|
|
1776
|
-
status:
|
|
1776
|
+
status: drizzle_orm_pg_core1831.PgColumn<{
|
|
1777
1777
|
name: "status";
|
|
1778
1778
|
tableName: "scheduled_trigger_invocations";
|
|
1779
1779
|
dataType: "string";
|
|
1780
1780
|
columnType: "PgVarchar";
|
|
1781
|
-
data: "pending" | "
|
|
1781
|
+
data: "pending" | "failed" | "running" | "completed" | "cancelled";
|
|
1782
1782
|
driverParam: string;
|
|
1783
1783
|
notNull: true;
|
|
1784
1784
|
hasDefault: false;
|
|
@@ -1791,9 +1791,9 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1791
1791
|
generated: undefined;
|
|
1792
1792
|
}, {}, {
|
|
1793
1793
|
length: 50;
|
|
1794
|
-
$type: "pending" | "
|
|
1794
|
+
$type: "pending" | "failed" | "running" | "completed" | "cancelled";
|
|
1795
1795
|
}>;
|
|
1796
|
-
scheduledFor:
|
|
1796
|
+
scheduledFor: drizzle_orm_pg_core1831.PgColumn<{
|
|
1797
1797
|
name: "scheduled_for";
|
|
1798
1798
|
tableName: "scheduled_trigger_invocations";
|
|
1799
1799
|
dataType: "string";
|
|
@@ -1810,7 +1810,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1810
1810
|
identity: undefined;
|
|
1811
1811
|
generated: undefined;
|
|
1812
1812
|
}, {}, {}>;
|
|
1813
|
-
startedAt:
|
|
1813
|
+
startedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
1814
1814
|
name: "started_at";
|
|
1815
1815
|
tableName: "scheduled_trigger_invocations";
|
|
1816
1816
|
dataType: "string";
|
|
@@ -1827,7 +1827,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1827
1827
|
identity: undefined;
|
|
1828
1828
|
generated: undefined;
|
|
1829
1829
|
}, {}, {}>;
|
|
1830
|
-
completedAt:
|
|
1830
|
+
completedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
1831
1831
|
name: "completed_at";
|
|
1832
1832
|
tableName: "scheduled_trigger_invocations";
|
|
1833
1833
|
dataType: "string";
|
|
@@ -1844,7 +1844,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1844
1844
|
identity: undefined;
|
|
1845
1845
|
generated: undefined;
|
|
1846
1846
|
}, {}, {}>;
|
|
1847
|
-
resolvedPayload:
|
|
1847
|
+
resolvedPayload: drizzle_orm_pg_core1831.PgColumn<{
|
|
1848
1848
|
name: "resolved_payload";
|
|
1849
1849
|
tableName: "scheduled_trigger_invocations";
|
|
1850
1850
|
dataType: "json";
|
|
@@ -1863,7 +1863,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1863
1863
|
}, {}, {
|
|
1864
1864
|
$type: Record<string, unknown> | null;
|
|
1865
1865
|
}>;
|
|
1866
|
-
conversationIds:
|
|
1866
|
+
conversationIds: drizzle_orm_pg_core1831.PgColumn<{
|
|
1867
1867
|
name: "conversation_ids";
|
|
1868
1868
|
tableName: "scheduled_trigger_invocations";
|
|
1869
1869
|
dataType: "json";
|
|
@@ -1882,7 +1882,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1882
1882
|
}, {}, {
|
|
1883
1883
|
$type: string[];
|
|
1884
1884
|
}>;
|
|
1885
|
-
attemptNumber:
|
|
1885
|
+
attemptNumber: drizzle_orm_pg_core1831.PgColumn<{
|
|
1886
1886
|
name: "attempt_number";
|
|
1887
1887
|
tableName: "scheduled_trigger_invocations";
|
|
1888
1888
|
dataType: "number";
|
|
@@ -1899,7 +1899,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1899
1899
|
identity: undefined;
|
|
1900
1900
|
generated: undefined;
|
|
1901
1901
|
}, {}, {}>;
|
|
1902
|
-
idempotencyKey:
|
|
1902
|
+
idempotencyKey: drizzle_orm_pg_core1831.PgColumn<{
|
|
1903
1903
|
name: "idempotency_key";
|
|
1904
1904
|
tableName: "scheduled_trigger_invocations";
|
|
1905
1905
|
dataType: "string";
|
|
@@ -1918,7 +1918,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1918
1918
|
}, {}, {
|
|
1919
1919
|
length: 256;
|
|
1920
1920
|
}>;
|
|
1921
|
-
createdAt:
|
|
1921
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
1922
1922
|
name: "created_at";
|
|
1923
1923
|
tableName: "scheduled_trigger_invocations";
|
|
1924
1924
|
dataType: "string";
|
|
@@ -1935,7 +1935,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1935
1935
|
identity: undefined;
|
|
1936
1936
|
generated: undefined;
|
|
1937
1937
|
}, {}, {}>;
|
|
1938
|
-
agentId:
|
|
1938
|
+
agentId: drizzle_orm_pg_core1831.PgColumn<{
|
|
1939
1939
|
name: "agent_id";
|
|
1940
1940
|
tableName: "scheduled_trigger_invocations";
|
|
1941
1941
|
dataType: "string";
|
|
@@ -1954,7 +1954,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1954
1954
|
}, {}, {
|
|
1955
1955
|
length: 256;
|
|
1956
1956
|
}>;
|
|
1957
|
-
projectId:
|
|
1957
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
1958
1958
|
name: "project_id";
|
|
1959
1959
|
tableName: "scheduled_trigger_invocations";
|
|
1960
1960
|
dataType: "string";
|
|
@@ -1973,7 +1973,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1973
1973
|
}, {}, {
|
|
1974
1974
|
length: 256;
|
|
1975
1975
|
}>;
|
|
1976
|
-
tenantId:
|
|
1976
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
1977
1977
|
name: "tenant_id";
|
|
1978
1978
|
tableName: "scheduled_trigger_invocations";
|
|
1979
1979
|
dataType: "string";
|
|
@@ -1992,7 +1992,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
1992
1992
|
}, {}, {
|
|
1993
1993
|
length: 256;
|
|
1994
1994
|
}>;
|
|
1995
|
-
id:
|
|
1995
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
1996
1996
|
name: "id";
|
|
1997
1997
|
tableName: "scheduled_trigger_invocations";
|
|
1998
1998
|
dataType: "string";
|
|
@@ -2014,11 +2014,11 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core433.PgTableWithCol
|
|
|
2014
2014
|
};
|
|
2015
2015
|
dialect: "pg";
|
|
2016
2016
|
}>;
|
|
2017
|
-
declare const messages:
|
|
2017
|
+
declare const messages: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
2018
2018
|
name: "messages";
|
|
2019
2019
|
schema: undefined;
|
|
2020
2020
|
columns: {
|
|
2021
|
-
createdAt:
|
|
2021
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
2022
2022
|
name: "created_at";
|
|
2023
2023
|
tableName: "messages";
|
|
2024
2024
|
dataType: "string";
|
|
@@ -2035,7 +2035,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2035
2035
|
identity: undefined;
|
|
2036
2036
|
generated: undefined;
|
|
2037
2037
|
}, {}, {}>;
|
|
2038
|
-
updatedAt:
|
|
2038
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
2039
2039
|
name: "updated_at";
|
|
2040
2040
|
tableName: "messages";
|
|
2041
2041
|
dataType: "string";
|
|
@@ -2052,7 +2052,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2052
2052
|
identity: undefined;
|
|
2053
2053
|
generated: undefined;
|
|
2054
2054
|
}, {}, {}>;
|
|
2055
|
-
conversationId:
|
|
2055
|
+
conversationId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2056
2056
|
name: "conversation_id";
|
|
2057
2057
|
tableName: "messages";
|
|
2058
2058
|
dataType: "string";
|
|
@@ -2071,7 +2071,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2071
2071
|
}, {}, {
|
|
2072
2072
|
length: 256;
|
|
2073
2073
|
}>;
|
|
2074
|
-
role:
|
|
2074
|
+
role: drizzle_orm_pg_core1831.PgColumn<{
|
|
2075
2075
|
name: "role";
|
|
2076
2076
|
tableName: "messages";
|
|
2077
2077
|
dataType: "string";
|
|
@@ -2090,7 +2090,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2090
2090
|
}, {}, {
|
|
2091
2091
|
length: 256;
|
|
2092
2092
|
}>;
|
|
2093
|
-
fromSubAgentId:
|
|
2093
|
+
fromSubAgentId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2094
2094
|
name: "from_sub_agent_id";
|
|
2095
2095
|
tableName: "messages";
|
|
2096
2096
|
dataType: "string";
|
|
@@ -2109,7 +2109,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2109
2109
|
}, {}, {
|
|
2110
2110
|
length: 256;
|
|
2111
2111
|
}>;
|
|
2112
|
-
toSubAgentId:
|
|
2112
|
+
toSubAgentId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2113
2113
|
name: "to_sub_agent_id";
|
|
2114
2114
|
tableName: "messages";
|
|
2115
2115
|
dataType: "string";
|
|
@@ -2128,7 +2128,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2128
2128
|
}, {}, {
|
|
2129
2129
|
length: 256;
|
|
2130
2130
|
}>;
|
|
2131
|
-
fromExternalAgentId:
|
|
2131
|
+
fromExternalAgentId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2132
2132
|
name: "from_external_sub_agent_id";
|
|
2133
2133
|
tableName: "messages";
|
|
2134
2134
|
dataType: "string";
|
|
@@ -2147,7 +2147,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2147
2147
|
}, {}, {
|
|
2148
2148
|
length: 256;
|
|
2149
2149
|
}>;
|
|
2150
|
-
toExternalAgentId:
|
|
2150
|
+
toExternalAgentId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2151
2151
|
name: "to_external_sub_agent_id";
|
|
2152
2152
|
tableName: "messages";
|
|
2153
2153
|
dataType: "string";
|
|
@@ -2166,7 +2166,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2166
2166
|
}, {}, {
|
|
2167
2167
|
length: 256;
|
|
2168
2168
|
}>;
|
|
2169
|
-
fromTeamAgentId:
|
|
2169
|
+
fromTeamAgentId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2170
2170
|
name: "from_team_agent_id";
|
|
2171
2171
|
tableName: "messages";
|
|
2172
2172
|
dataType: "string";
|
|
@@ -2185,7 +2185,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2185
2185
|
}, {}, {
|
|
2186
2186
|
length: 256;
|
|
2187
2187
|
}>;
|
|
2188
|
-
toTeamAgentId:
|
|
2188
|
+
toTeamAgentId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2189
2189
|
name: "to_team_agent_id";
|
|
2190
2190
|
tableName: "messages";
|
|
2191
2191
|
dataType: "string";
|
|
@@ -2204,7 +2204,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2204
2204
|
}, {}, {
|
|
2205
2205
|
length: 256;
|
|
2206
2206
|
}>;
|
|
2207
|
-
content:
|
|
2207
|
+
content: drizzle_orm_pg_core1831.PgColumn<{
|
|
2208
2208
|
name: "content";
|
|
2209
2209
|
tableName: "messages";
|
|
2210
2210
|
dataType: "json";
|
|
@@ -2223,7 +2223,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2223
2223
|
}, {}, {
|
|
2224
2224
|
$type: MessageContent;
|
|
2225
2225
|
}>;
|
|
2226
|
-
visibility:
|
|
2226
|
+
visibility: drizzle_orm_pg_core1831.PgColumn<{
|
|
2227
2227
|
name: "visibility";
|
|
2228
2228
|
tableName: "messages";
|
|
2229
2229
|
dataType: "string";
|
|
@@ -2242,7 +2242,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2242
2242
|
}, {}, {
|
|
2243
2243
|
length: 256;
|
|
2244
2244
|
}>;
|
|
2245
|
-
messageType:
|
|
2245
|
+
messageType: drizzle_orm_pg_core1831.PgColumn<{
|
|
2246
2246
|
name: "message_type";
|
|
2247
2247
|
tableName: "messages";
|
|
2248
2248
|
dataType: "string";
|
|
@@ -2261,7 +2261,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2261
2261
|
}, {}, {
|
|
2262
2262
|
length: 256;
|
|
2263
2263
|
}>;
|
|
2264
|
-
taskId:
|
|
2264
|
+
taskId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2265
2265
|
name: "task_id";
|
|
2266
2266
|
tableName: "messages";
|
|
2267
2267
|
dataType: "string";
|
|
@@ -2280,7 +2280,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2280
2280
|
}, {}, {
|
|
2281
2281
|
length: 256;
|
|
2282
2282
|
}>;
|
|
2283
|
-
parentMessageId:
|
|
2283
|
+
parentMessageId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2284
2284
|
name: "parent_message_id";
|
|
2285
2285
|
tableName: "messages";
|
|
2286
2286
|
dataType: "string";
|
|
@@ -2299,7 +2299,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2299
2299
|
}, {}, {
|
|
2300
2300
|
length: 256;
|
|
2301
2301
|
}>;
|
|
2302
|
-
a2aTaskId:
|
|
2302
|
+
a2aTaskId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2303
2303
|
name: "a2a_task_id";
|
|
2304
2304
|
tableName: "messages";
|
|
2305
2305
|
dataType: "string";
|
|
@@ -2318,7 +2318,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2318
2318
|
}, {}, {
|
|
2319
2319
|
length: 256;
|
|
2320
2320
|
}>;
|
|
2321
|
-
a2aSessionId:
|
|
2321
|
+
a2aSessionId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2322
2322
|
name: "a2a_session_id";
|
|
2323
2323
|
tableName: "messages";
|
|
2324
2324
|
dataType: "string";
|
|
@@ -2337,7 +2337,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2337
2337
|
}, {}, {
|
|
2338
2338
|
length: 256;
|
|
2339
2339
|
}>;
|
|
2340
|
-
metadata:
|
|
2340
|
+
metadata: drizzle_orm_pg_core1831.PgColumn<{
|
|
2341
2341
|
name: "metadata";
|
|
2342
2342
|
tableName: "messages";
|
|
2343
2343
|
dataType: "json";
|
|
@@ -2356,7 +2356,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2356
2356
|
}, {}, {
|
|
2357
2357
|
$type: MessageMetadata;
|
|
2358
2358
|
}>;
|
|
2359
|
-
projectId:
|
|
2359
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2360
2360
|
name: "project_id";
|
|
2361
2361
|
tableName: "messages";
|
|
2362
2362
|
dataType: "string";
|
|
@@ -2375,7 +2375,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2375
2375
|
}, {}, {
|
|
2376
2376
|
length: 256;
|
|
2377
2377
|
}>;
|
|
2378
|
-
tenantId:
|
|
2378
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2379
2379
|
name: "tenant_id";
|
|
2380
2380
|
tableName: "messages";
|
|
2381
2381
|
dataType: "string";
|
|
@@ -2394,7 +2394,7 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2394
2394
|
}, {}, {
|
|
2395
2395
|
length: 256;
|
|
2396
2396
|
}>;
|
|
2397
|
-
id:
|
|
2397
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
2398
2398
|
name: "id";
|
|
2399
2399
|
tableName: "messages";
|
|
2400
2400
|
dataType: "string";
|
|
@@ -2416,11 +2416,11 @@ declare const messages: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2416
2416
|
};
|
|
2417
2417
|
dialect: "pg";
|
|
2418
2418
|
}>;
|
|
2419
|
-
declare const taskRelations:
|
|
2419
|
+
declare const taskRelations: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
2420
2420
|
name: "task_relations";
|
|
2421
2421
|
schema: undefined;
|
|
2422
2422
|
columns: {
|
|
2423
|
-
createdAt:
|
|
2423
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
2424
2424
|
name: "created_at";
|
|
2425
2425
|
tableName: "task_relations";
|
|
2426
2426
|
dataType: "string";
|
|
@@ -2437,7 +2437,7 @@ declare const taskRelations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2437
2437
|
identity: undefined;
|
|
2438
2438
|
generated: undefined;
|
|
2439
2439
|
}, {}, {}>;
|
|
2440
|
-
updatedAt:
|
|
2440
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
2441
2441
|
name: "updated_at";
|
|
2442
2442
|
tableName: "task_relations";
|
|
2443
2443
|
dataType: "string";
|
|
@@ -2454,7 +2454,7 @@ declare const taskRelations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2454
2454
|
identity: undefined;
|
|
2455
2455
|
generated: undefined;
|
|
2456
2456
|
}, {}, {}>;
|
|
2457
|
-
parentTaskId:
|
|
2457
|
+
parentTaskId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2458
2458
|
name: "parent_task_id";
|
|
2459
2459
|
tableName: "task_relations";
|
|
2460
2460
|
dataType: "string";
|
|
@@ -2473,7 +2473,7 @@ declare const taskRelations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2473
2473
|
}, {}, {
|
|
2474
2474
|
length: 256;
|
|
2475
2475
|
}>;
|
|
2476
|
-
childTaskId:
|
|
2476
|
+
childTaskId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2477
2477
|
name: "child_task_id";
|
|
2478
2478
|
tableName: "task_relations";
|
|
2479
2479
|
dataType: "string";
|
|
@@ -2492,7 +2492,7 @@ declare const taskRelations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2492
2492
|
}, {}, {
|
|
2493
2493
|
length: 256;
|
|
2494
2494
|
}>;
|
|
2495
|
-
relationType:
|
|
2495
|
+
relationType: drizzle_orm_pg_core1831.PgColumn<{
|
|
2496
2496
|
name: "relation_type";
|
|
2497
2497
|
tableName: "task_relations";
|
|
2498
2498
|
dataType: "string";
|
|
@@ -2511,7 +2511,7 @@ declare const taskRelations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2511
2511
|
}, {}, {
|
|
2512
2512
|
length: 256;
|
|
2513
2513
|
}>;
|
|
2514
|
-
projectId:
|
|
2514
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2515
2515
|
name: "project_id";
|
|
2516
2516
|
tableName: "task_relations";
|
|
2517
2517
|
dataType: "string";
|
|
@@ -2530,7 +2530,7 @@ declare const taskRelations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2530
2530
|
}, {}, {
|
|
2531
2531
|
length: 256;
|
|
2532
2532
|
}>;
|
|
2533
|
-
tenantId:
|
|
2533
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2534
2534
|
name: "tenant_id";
|
|
2535
2535
|
tableName: "task_relations";
|
|
2536
2536
|
dataType: "string";
|
|
@@ -2549,7 +2549,7 @@ declare const taskRelations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2549
2549
|
}, {}, {
|
|
2550
2550
|
length: 256;
|
|
2551
2551
|
}>;
|
|
2552
|
-
id:
|
|
2552
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
2553
2553
|
name: "id";
|
|
2554
2554
|
tableName: "task_relations";
|
|
2555
2555
|
dataType: "string";
|
|
@@ -2571,11 +2571,11 @@ declare const taskRelations: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2571
2571
|
};
|
|
2572
2572
|
dialect: "pg";
|
|
2573
2573
|
}>;
|
|
2574
|
-
declare const ledgerArtifacts:
|
|
2574
|
+
declare const ledgerArtifacts: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
2575
2575
|
name: "ledger_artifacts";
|
|
2576
2576
|
schema: undefined;
|
|
2577
2577
|
columns: {
|
|
2578
|
-
createdAt:
|
|
2578
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
2579
2579
|
name: "created_at";
|
|
2580
2580
|
tableName: "ledger_artifacts";
|
|
2581
2581
|
dataType: "string";
|
|
@@ -2592,7 +2592,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2592
2592
|
identity: undefined;
|
|
2593
2593
|
generated: undefined;
|
|
2594
2594
|
}, {}, {}>;
|
|
2595
|
-
updatedAt:
|
|
2595
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
2596
2596
|
name: "updated_at";
|
|
2597
2597
|
tableName: "ledger_artifacts";
|
|
2598
2598
|
dataType: "string";
|
|
@@ -2609,7 +2609,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2609
2609
|
identity: undefined;
|
|
2610
2610
|
generated: undefined;
|
|
2611
2611
|
}, {}, {}>;
|
|
2612
|
-
taskId:
|
|
2612
|
+
taskId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2613
2613
|
name: "task_id";
|
|
2614
2614
|
tableName: "ledger_artifacts";
|
|
2615
2615
|
dataType: "string";
|
|
@@ -2628,7 +2628,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2628
2628
|
}, {}, {
|
|
2629
2629
|
length: 256;
|
|
2630
2630
|
}>;
|
|
2631
|
-
toolCallId:
|
|
2631
|
+
toolCallId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2632
2632
|
name: "tool_call_id";
|
|
2633
2633
|
tableName: "ledger_artifacts";
|
|
2634
2634
|
dataType: "string";
|
|
@@ -2647,7 +2647,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2647
2647
|
}, {}, {
|
|
2648
2648
|
length: 256;
|
|
2649
2649
|
}>;
|
|
2650
|
-
contextId:
|
|
2650
|
+
contextId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2651
2651
|
name: "context_id";
|
|
2652
2652
|
tableName: "ledger_artifacts";
|
|
2653
2653
|
dataType: "string";
|
|
@@ -2666,7 +2666,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2666
2666
|
}, {}, {
|
|
2667
2667
|
length: 256;
|
|
2668
2668
|
}>;
|
|
2669
|
-
type:
|
|
2669
|
+
type: drizzle_orm_pg_core1831.PgColumn<{
|
|
2670
2670
|
name: "type";
|
|
2671
2671
|
tableName: "ledger_artifacts";
|
|
2672
2672
|
dataType: "string";
|
|
@@ -2685,7 +2685,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2685
2685
|
}, {}, {
|
|
2686
2686
|
length: 256;
|
|
2687
2687
|
}>;
|
|
2688
|
-
name:
|
|
2688
|
+
name: drizzle_orm_pg_core1831.PgColumn<{
|
|
2689
2689
|
name: "name";
|
|
2690
2690
|
tableName: "ledger_artifacts";
|
|
2691
2691
|
dataType: "string";
|
|
@@ -2704,7 +2704,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2704
2704
|
}, {}, {
|
|
2705
2705
|
length: 256;
|
|
2706
2706
|
}>;
|
|
2707
|
-
description:
|
|
2707
|
+
description: drizzle_orm_pg_core1831.PgColumn<{
|
|
2708
2708
|
name: "description";
|
|
2709
2709
|
tableName: "ledger_artifacts";
|
|
2710
2710
|
dataType: "string";
|
|
@@ -2721,7 +2721,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2721
2721
|
identity: undefined;
|
|
2722
2722
|
generated: undefined;
|
|
2723
2723
|
}, {}, {}>;
|
|
2724
|
-
parts:
|
|
2724
|
+
parts: drizzle_orm_pg_core1831.PgColumn<{
|
|
2725
2725
|
name: "parts";
|
|
2726
2726
|
tableName: "ledger_artifacts";
|
|
2727
2727
|
dataType: "json";
|
|
@@ -2740,7 +2740,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2740
2740
|
}, {}, {
|
|
2741
2741
|
$type: Part[] | null;
|
|
2742
2742
|
}>;
|
|
2743
|
-
metadata:
|
|
2743
|
+
metadata: drizzle_orm_pg_core1831.PgColumn<{
|
|
2744
2744
|
name: "metadata";
|
|
2745
2745
|
tableName: "ledger_artifacts";
|
|
2746
2746
|
dataType: "json";
|
|
@@ -2759,7 +2759,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2759
2759
|
}, {}, {
|
|
2760
2760
|
$type: Record<string, unknown> | null;
|
|
2761
2761
|
}>;
|
|
2762
|
-
summary:
|
|
2762
|
+
summary: drizzle_orm_pg_core1831.PgColumn<{
|
|
2763
2763
|
name: "summary";
|
|
2764
2764
|
tableName: "ledger_artifacts";
|
|
2765
2765
|
dataType: "string";
|
|
@@ -2776,7 +2776,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2776
2776
|
identity: undefined;
|
|
2777
2777
|
generated: undefined;
|
|
2778
2778
|
}, {}, {}>;
|
|
2779
|
-
mime:
|
|
2779
|
+
mime: drizzle_orm_pg_core1831.PgColumn<{
|
|
2780
2780
|
name: "mime";
|
|
2781
2781
|
tableName: "ledger_artifacts";
|
|
2782
2782
|
dataType: "json";
|
|
@@ -2795,7 +2795,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2795
2795
|
}, {}, {
|
|
2796
2796
|
$type: string[] | null;
|
|
2797
2797
|
}>;
|
|
2798
|
-
visibility:
|
|
2798
|
+
visibility: drizzle_orm_pg_core1831.PgColumn<{
|
|
2799
2799
|
name: "visibility";
|
|
2800
2800
|
tableName: "ledger_artifacts";
|
|
2801
2801
|
dataType: "string";
|
|
@@ -2814,7 +2814,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2814
2814
|
}, {}, {
|
|
2815
2815
|
length: 256;
|
|
2816
2816
|
}>;
|
|
2817
|
-
allowedAgents:
|
|
2817
|
+
allowedAgents: drizzle_orm_pg_core1831.PgColumn<{
|
|
2818
2818
|
name: "allowed_agents";
|
|
2819
2819
|
tableName: "ledger_artifacts";
|
|
2820
2820
|
dataType: "json";
|
|
@@ -2833,7 +2833,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2833
2833
|
}, {}, {
|
|
2834
2834
|
$type: string[] | null;
|
|
2835
2835
|
}>;
|
|
2836
|
-
derivedFrom:
|
|
2836
|
+
derivedFrom: drizzle_orm_pg_core1831.PgColumn<{
|
|
2837
2837
|
name: "derived_from";
|
|
2838
2838
|
tableName: "ledger_artifacts";
|
|
2839
2839
|
dataType: "string";
|
|
@@ -2852,7 +2852,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2852
2852
|
}, {}, {
|
|
2853
2853
|
length: 256;
|
|
2854
2854
|
}>;
|
|
2855
|
-
projectId:
|
|
2855
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2856
2856
|
name: "project_id";
|
|
2857
2857
|
tableName: "ledger_artifacts";
|
|
2858
2858
|
dataType: "string";
|
|
@@ -2871,7 +2871,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2871
2871
|
}, {}, {
|
|
2872
2872
|
length: 256;
|
|
2873
2873
|
}>;
|
|
2874
|
-
tenantId:
|
|
2874
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2875
2875
|
name: "tenant_id";
|
|
2876
2876
|
tableName: "ledger_artifacts";
|
|
2877
2877
|
dataType: "string";
|
|
@@ -2890,7 +2890,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2890
2890
|
}, {}, {
|
|
2891
2891
|
length: 256;
|
|
2892
2892
|
}>;
|
|
2893
|
-
id:
|
|
2893
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
2894
2894
|
name: "id";
|
|
2895
2895
|
tableName: "ledger_artifacts";
|
|
2896
2896
|
dataType: "string";
|
|
@@ -2912,11 +2912,11 @@ declare const ledgerArtifacts: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2912
2912
|
};
|
|
2913
2913
|
dialect: "pg";
|
|
2914
2914
|
}>;
|
|
2915
|
-
declare const contextCache:
|
|
2915
|
+
declare const contextCache: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
2916
2916
|
name: "context_cache";
|
|
2917
2917
|
schema: undefined;
|
|
2918
2918
|
columns: {
|
|
2919
|
-
createdAt:
|
|
2919
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
2920
2920
|
name: "created_at";
|
|
2921
2921
|
tableName: "context_cache";
|
|
2922
2922
|
dataType: "string";
|
|
@@ -2933,7 +2933,7 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2933
2933
|
identity: undefined;
|
|
2934
2934
|
generated: undefined;
|
|
2935
2935
|
}, {}, {}>;
|
|
2936
|
-
updatedAt:
|
|
2936
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
2937
2937
|
name: "updated_at";
|
|
2938
2938
|
tableName: "context_cache";
|
|
2939
2939
|
dataType: "string";
|
|
@@ -2950,7 +2950,7 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2950
2950
|
identity: undefined;
|
|
2951
2951
|
generated: undefined;
|
|
2952
2952
|
}, {}, {}>;
|
|
2953
|
-
conversationId:
|
|
2953
|
+
conversationId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2954
2954
|
name: "conversation_id";
|
|
2955
2955
|
tableName: "context_cache";
|
|
2956
2956
|
dataType: "string";
|
|
@@ -2969,7 +2969,7 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2969
2969
|
}, {}, {
|
|
2970
2970
|
length: 256;
|
|
2971
2971
|
}>;
|
|
2972
|
-
contextConfigId:
|
|
2972
|
+
contextConfigId: drizzle_orm_pg_core1831.PgColumn<{
|
|
2973
2973
|
name: "context_config_id";
|
|
2974
2974
|
tableName: "context_cache";
|
|
2975
2975
|
dataType: "string";
|
|
@@ -2988,7 +2988,7 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
2988
2988
|
}, {}, {
|
|
2989
2989
|
length: 256;
|
|
2990
2990
|
}>;
|
|
2991
|
-
contextVariableKey:
|
|
2991
|
+
contextVariableKey: drizzle_orm_pg_core1831.PgColumn<{
|
|
2992
2992
|
name: "context_variable_key";
|
|
2993
2993
|
tableName: "context_cache";
|
|
2994
2994
|
dataType: "string";
|
|
@@ -3007,13 +3007,13 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3007
3007
|
}, {}, {
|
|
3008
3008
|
length: 256;
|
|
3009
3009
|
}>;
|
|
3010
|
-
ref:
|
|
3010
|
+
ref: drizzle_orm_pg_core1831.PgColumn<{
|
|
3011
3011
|
name: "ref";
|
|
3012
3012
|
tableName: "context_cache";
|
|
3013
3013
|
dataType: "json";
|
|
3014
3014
|
columnType: "PgJsonb";
|
|
3015
3015
|
data: {
|
|
3016
|
-
type: "
|
|
3016
|
+
type: "tag" | "commit" | "branch";
|
|
3017
3017
|
name: string;
|
|
3018
3018
|
hash: string;
|
|
3019
3019
|
};
|
|
@@ -3029,12 +3029,12 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3029
3029
|
generated: undefined;
|
|
3030
3030
|
}, {}, {
|
|
3031
3031
|
$type: {
|
|
3032
|
-
type: "
|
|
3032
|
+
type: "tag" | "commit" | "branch";
|
|
3033
3033
|
name: string;
|
|
3034
3034
|
hash: string;
|
|
3035
3035
|
};
|
|
3036
3036
|
}>;
|
|
3037
|
-
value:
|
|
3037
|
+
value: drizzle_orm_pg_core1831.PgColumn<{
|
|
3038
3038
|
name: "value";
|
|
3039
3039
|
tableName: "context_cache";
|
|
3040
3040
|
dataType: "json";
|
|
@@ -3053,7 +3053,7 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3053
3053
|
}, {}, {
|
|
3054
3054
|
$type: unknown;
|
|
3055
3055
|
}>;
|
|
3056
|
-
requestHash:
|
|
3056
|
+
requestHash: drizzle_orm_pg_core1831.PgColumn<{
|
|
3057
3057
|
name: "request_hash";
|
|
3058
3058
|
tableName: "context_cache";
|
|
3059
3059
|
dataType: "string";
|
|
@@ -3072,7 +3072,7 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3072
3072
|
}, {}, {
|
|
3073
3073
|
length: 256;
|
|
3074
3074
|
}>;
|
|
3075
|
-
fetchedAt:
|
|
3075
|
+
fetchedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
3076
3076
|
name: "fetched_at";
|
|
3077
3077
|
tableName: "context_cache";
|
|
3078
3078
|
dataType: "string";
|
|
@@ -3089,7 +3089,7 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3089
3089
|
identity: undefined;
|
|
3090
3090
|
generated: undefined;
|
|
3091
3091
|
}, {}, {}>;
|
|
3092
|
-
fetchSource:
|
|
3092
|
+
fetchSource: drizzle_orm_pg_core1831.PgColumn<{
|
|
3093
3093
|
name: "fetch_source";
|
|
3094
3094
|
tableName: "context_cache";
|
|
3095
3095
|
dataType: "string";
|
|
@@ -3108,7 +3108,7 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3108
3108
|
}, {}, {
|
|
3109
3109
|
length: 256;
|
|
3110
3110
|
}>;
|
|
3111
|
-
projectId:
|
|
3111
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3112
3112
|
name: "project_id";
|
|
3113
3113
|
tableName: "context_cache";
|
|
3114
3114
|
dataType: "string";
|
|
@@ -3127,7 +3127,7 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3127
3127
|
}, {}, {
|
|
3128
3128
|
length: 256;
|
|
3129
3129
|
}>;
|
|
3130
|
-
tenantId:
|
|
3130
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3131
3131
|
name: "tenant_id";
|
|
3132
3132
|
tableName: "context_cache";
|
|
3133
3133
|
dataType: "string";
|
|
@@ -3146,7 +3146,7 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3146
3146
|
}, {}, {
|
|
3147
3147
|
length: 256;
|
|
3148
3148
|
}>;
|
|
3149
|
-
id:
|
|
3149
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
3150
3150
|
name: "id";
|
|
3151
3151
|
tableName: "context_cache";
|
|
3152
3152
|
dataType: "string";
|
|
@@ -3181,11 +3181,11 @@ declare const contextCache: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3181
3181
|
* datasetRunConfigId (optional: if created from a config),
|
|
3182
3182
|
* evaluationJobConfigId (optional: links to evaluation job created for this run), and timestamps
|
|
3183
3183
|
*/
|
|
3184
|
-
declare const datasetRun:
|
|
3184
|
+
declare const datasetRun: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
3185
3185
|
name: "dataset_run";
|
|
3186
3186
|
schema: undefined;
|
|
3187
3187
|
columns: {
|
|
3188
|
-
createdAt:
|
|
3188
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
3189
3189
|
name: "created_at";
|
|
3190
3190
|
tableName: "dataset_run";
|
|
3191
3191
|
dataType: "string";
|
|
@@ -3202,7 +3202,7 @@ declare const datasetRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3202
3202
|
identity: undefined;
|
|
3203
3203
|
generated: undefined;
|
|
3204
3204
|
}, {}, {}>;
|
|
3205
|
-
updatedAt:
|
|
3205
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
3206
3206
|
name: "updated_at";
|
|
3207
3207
|
tableName: "dataset_run";
|
|
3208
3208
|
dataType: "string";
|
|
@@ -3219,7 +3219,7 @@ declare const datasetRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3219
3219
|
identity: undefined;
|
|
3220
3220
|
generated: undefined;
|
|
3221
3221
|
}, {}, {}>;
|
|
3222
|
-
datasetId:
|
|
3222
|
+
datasetId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3223
3223
|
name: "dataset_id";
|
|
3224
3224
|
tableName: "dataset_run";
|
|
3225
3225
|
dataType: "string";
|
|
@@ -3236,7 +3236,7 @@ declare const datasetRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3236
3236
|
identity: undefined;
|
|
3237
3237
|
generated: undefined;
|
|
3238
3238
|
}, {}, {}>;
|
|
3239
|
-
datasetRunConfigId:
|
|
3239
|
+
datasetRunConfigId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3240
3240
|
name: "dataset_run_config_id";
|
|
3241
3241
|
tableName: "dataset_run";
|
|
3242
3242
|
dataType: "string";
|
|
@@ -3253,7 +3253,7 @@ declare const datasetRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3253
3253
|
identity: undefined;
|
|
3254
3254
|
generated: undefined;
|
|
3255
3255
|
}, {}, {}>;
|
|
3256
|
-
evaluationJobConfigId:
|
|
3256
|
+
evaluationJobConfigId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3257
3257
|
name: "evaluation_job_config_id";
|
|
3258
3258
|
tableName: "dataset_run";
|
|
3259
3259
|
dataType: "string";
|
|
@@ -3270,7 +3270,7 @@ declare const datasetRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3270
3270
|
identity: undefined;
|
|
3271
3271
|
generated: undefined;
|
|
3272
3272
|
}, {}, {}>;
|
|
3273
|
-
projectId:
|
|
3273
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3274
3274
|
name: "project_id";
|
|
3275
3275
|
tableName: "dataset_run";
|
|
3276
3276
|
dataType: "string";
|
|
@@ -3289,7 +3289,7 @@ declare const datasetRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3289
3289
|
}, {}, {
|
|
3290
3290
|
length: 256;
|
|
3291
3291
|
}>;
|
|
3292
|
-
tenantId:
|
|
3292
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3293
3293
|
name: "tenant_id";
|
|
3294
3294
|
tableName: "dataset_run";
|
|
3295
3295
|
dataType: "string";
|
|
@@ -3308,7 +3308,7 @@ declare const datasetRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3308
3308
|
}, {}, {
|
|
3309
3309
|
length: 256;
|
|
3310
3310
|
}>;
|
|
3311
|
-
id:
|
|
3311
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
3312
3312
|
name: "id";
|
|
3313
3313
|
tableName: "dataset_run";
|
|
3314
3314
|
dataType: "string";
|
|
@@ -3341,11 +3341,11 @@ declare const datasetRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3341
3341
|
* unique constraint on (datasetRunId, conversationId) ensures one conversation per datasetRun,
|
|
3342
3342
|
* and timestamps
|
|
3343
3343
|
*/
|
|
3344
|
-
declare const datasetRunConversationRelations:
|
|
3344
|
+
declare const datasetRunConversationRelations: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
3345
3345
|
name: "dataset_run_conversation_relations";
|
|
3346
3346
|
schema: undefined;
|
|
3347
3347
|
columns: {
|
|
3348
|
-
createdAt:
|
|
3348
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
3349
3349
|
name: "created_at";
|
|
3350
3350
|
tableName: "dataset_run_conversation_relations";
|
|
3351
3351
|
dataType: "string";
|
|
@@ -3362,7 +3362,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core433.PgTableWit
|
|
|
3362
3362
|
identity: undefined;
|
|
3363
3363
|
generated: undefined;
|
|
3364
3364
|
}, {}, {}>;
|
|
3365
|
-
updatedAt:
|
|
3365
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
3366
3366
|
name: "updated_at";
|
|
3367
3367
|
tableName: "dataset_run_conversation_relations";
|
|
3368
3368
|
dataType: "string";
|
|
@@ -3379,7 +3379,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core433.PgTableWit
|
|
|
3379
3379
|
identity: undefined;
|
|
3380
3380
|
generated: undefined;
|
|
3381
3381
|
}, {}, {}>;
|
|
3382
|
-
datasetRunId:
|
|
3382
|
+
datasetRunId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3383
3383
|
name: "dataset_run_id";
|
|
3384
3384
|
tableName: "dataset_run_conversation_relations";
|
|
3385
3385
|
dataType: "string";
|
|
@@ -3396,7 +3396,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core433.PgTableWit
|
|
|
3396
3396
|
identity: undefined;
|
|
3397
3397
|
generated: undefined;
|
|
3398
3398
|
}, {}, {}>;
|
|
3399
|
-
conversationId:
|
|
3399
|
+
conversationId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3400
3400
|
name: "conversation_id";
|
|
3401
3401
|
tableName: "dataset_run_conversation_relations";
|
|
3402
3402
|
dataType: "string";
|
|
@@ -3413,7 +3413,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core433.PgTableWit
|
|
|
3413
3413
|
identity: undefined;
|
|
3414
3414
|
generated: undefined;
|
|
3415
3415
|
}, {}, {}>;
|
|
3416
|
-
datasetItemId:
|
|
3416
|
+
datasetItemId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3417
3417
|
name: "dataset_item_id";
|
|
3418
3418
|
tableName: "dataset_run_conversation_relations";
|
|
3419
3419
|
dataType: "string";
|
|
@@ -3430,7 +3430,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core433.PgTableWit
|
|
|
3430
3430
|
identity: undefined;
|
|
3431
3431
|
generated: undefined;
|
|
3432
3432
|
}, {}, {}>;
|
|
3433
|
-
projectId:
|
|
3433
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3434
3434
|
name: "project_id";
|
|
3435
3435
|
tableName: "dataset_run_conversation_relations";
|
|
3436
3436
|
dataType: "string";
|
|
@@ -3449,7 +3449,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core433.PgTableWit
|
|
|
3449
3449
|
}, {}, {
|
|
3450
3450
|
length: 256;
|
|
3451
3451
|
}>;
|
|
3452
|
-
tenantId:
|
|
3452
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3453
3453
|
name: "tenant_id";
|
|
3454
3454
|
tableName: "dataset_run_conversation_relations";
|
|
3455
3455
|
dataType: "string";
|
|
@@ -3468,7 +3468,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core433.PgTableWit
|
|
|
3468
3468
|
}, {}, {
|
|
3469
3469
|
length: 256;
|
|
3470
3470
|
}>;
|
|
3471
|
-
id:
|
|
3471
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
3472
3472
|
name: "id";
|
|
3473
3473
|
tableName: "dataset_run_conversation_relations";
|
|
3474
3474
|
dataType: "string";
|
|
@@ -3501,11 +3501,11 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core433.PgTableWit
|
|
|
3501
3501
|
* evaluationRunConfigId (optional: if created from a run config),
|
|
3502
3502
|
* and timestamps
|
|
3503
3503
|
*/
|
|
3504
|
-
declare const evaluationRun:
|
|
3504
|
+
declare const evaluationRun: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
3505
3505
|
name: "evaluation_run";
|
|
3506
3506
|
schema: undefined;
|
|
3507
3507
|
columns: {
|
|
3508
|
-
createdAt:
|
|
3508
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
3509
3509
|
name: "created_at";
|
|
3510
3510
|
tableName: "evaluation_run";
|
|
3511
3511
|
dataType: "string";
|
|
@@ -3522,7 +3522,7 @@ declare const evaluationRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3522
3522
|
identity: undefined;
|
|
3523
3523
|
generated: undefined;
|
|
3524
3524
|
}, {}, {}>;
|
|
3525
|
-
updatedAt:
|
|
3525
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
3526
3526
|
name: "updated_at";
|
|
3527
3527
|
tableName: "evaluation_run";
|
|
3528
3528
|
dataType: "string";
|
|
@@ -3539,7 +3539,7 @@ declare const evaluationRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3539
3539
|
identity: undefined;
|
|
3540
3540
|
generated: undefined;
|
|
3541
3541
|
}, {}, {}>;
|
|
3542
|
-
evaluationJobConfigId:
|
|
3542
|
+
evaluationJobConfigId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3543
3543
|
name: "evaluation_job_config_id";
|
|
3544
3544
|
tableName: "evaluation_run";
|
|
3545
3545
|
dataType: "string";
|
|
@@ -3556,7 +3556,7 @@ declare const evaluationRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3556
3556
|
identity: undefined;
|
|
3557
3557
|
generated: undefined;
|
|
3558
3558
|
}, {}, {}>;
|
|
3559
|
-
evaluationRunConfigId:
|
|
3559
|
+
evaluationRunConfigId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3560
3560
|
name: "evaluation_run_config_id";
|
|
3561
3561
|
tableName: "evaluation_run";
|
|
3562
3562
|
dataType: "string";
|
|
@@ -3573,7 +3573,7 @@ declare const evaluationRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3573
3573
|
identity: undefined;
|
|
3574
3574
|
generated: undefined;
|
|
3575
3575
|
}, {}, {}>;
|
|
3576
|
-
projectId:
|
|
3576
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3577
3577
|
name: "project_id";
|
|
3578
3578
|
tableName: "evaluation_run";
|
|
3579
3579
|
dataType: "string";
|
|
@@ -3592,7 +3592,7 @@ declare const evaluationRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3592
3592
|
}, {}, {
|
|
3593
3593
|
length: 256;
|
|
3594
3594
|
}>;
|
|
3595
|
-
tenantId:
|
|
3595
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3596
3596
|
name: "tenant_id";
|
|
3597
3597
|
tableName: "evaluation_run";
|
|
3598
3598
|
dataType: "string";
|
|
@@ -3611,7 +3611,7 @@ declare const evaluationRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3611
3611
|
}, {}, {
|
|
3612
3612
|
length: 256;
|
|
3613
3613
|
}>;
|
|
3614
|
-
id:
|
|
3614
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
3615
3615
|
name: "id";
|
|
3616
3616
|
tableName: "evaluation_run";
|
|
3617
3617
|
dataType: "string";
|
|
@@ -3642,11 +3642,11 @@ declare const evaluationRun: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3642
3642
|
* evaluationRunId (optional, links to evaluationRun),
|
|
3643
3643
|
* output (evaluation result as MessageContent), and timestamps
|
|
3644
3644
|
*/
|
|
3645
|
-
declare const evaluationResult:
|
|
3645
|
+
declare const evaluationResult: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
3646
3646
|
name: "evaluation_result";
|
|
3647
3647
|
schema: undefined;
|
|
3648
3648
|
columns: {
|
|
3649
|
-
createdAt:
|
|
3649
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
3650
3650
|
name: "created_at";
|
|
3651
3651
|
tableName: "evaluation_result";
|
|
3652
3652
|
dataType: "string";
|
|
@@ -3663,7 +3663,7 @@ declare const evaluationResult: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3663
3663
|
identity: undefined;
|
|
3664
3664
|
generated: undefined;
|
|
3665
3665
|
}, {}, {}>;
|
|
3666
|
-
updatedAt:
|
|
3666
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
3667
3667
|
name: "updated_at";
|
|
3668
3668
|
tableName: "evaluation_result";
|
|
3669
3669
|
dataType: "string";
|
|
@@ -3680,7 +3680,7 @@ declare const evaluationResult: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3680
3680
|
identity: undefined;
|
|
3681
3681
|
generated: undefined;
|
|
3682
3682
|
}, {}, {}>;
|
|
3683
|
-
conversationId:
|
|
3683
|
+
conversationId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3684
3684
|
name: "conversation_id";
|
|
3685
3685
|
tableName: "evaluation_result";
|
|
3686
3686
|
dataType: "string";
|
|
@@ -3697,7 +3697,7 @@ declare const evaluationResult: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3697
3697
|
identity: undefined;
|
|
3698
3698
|
generated: undefined;
|
|
3699
3699
|
}, {}, {}>;
|
|
3700
|
-
evaluatorId:
|
|
3700
|
+
evaluatorId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3701
3701
|
name: "evaluator_id";
|
|
3702
3702
|
tableName: "evaluation_result";
|
|
3703
3703
|
dataType: "string";
|
|
@@ -3714,7 +3714,7 @@ declare const evaluationResult: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3714
3714
|
identity: undefined;
|
|
3715
3715
|
generated: undefined;
|
|
3716
3716
|
}, {}, {}>;
|
|
3717
|
-
evaluationRunId:
|
|
3717
|
+
evaluationRunId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3718
3718
|
name: "evaluation_run_id";
|
|
3719
3719
|
tableName: "evaluation_result";
|
|
3720
3720
|
dataType: "string";
|
|
@@ -3731,7 +3731,7 @@ declare const evaluationResult: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3731
3731
|
identity: undefined;
|
|
3732
3732
|
generated: undefined;
|
|
3733
3733
|
}, {}, {}>;
|
|
3734
|
-
output:
|
|
3734
|
+
output: drizzle_orm_pg_core1831.PgColumn<{
|
|
3735
3735
|
name: "output";
|
|
3736
3736
|
tableName: "evaluation_result";
|
|
3737
3737
|
dataType: "json";
|
|
@@ -3750,7 +3750,7 @@ declare const evaluationResult: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3750
3750
|
}, {}, {
|
|
3751
3751
|
$type: MessageContent;
|
|
3752
3752
|
}>;
|
|
3753
|
-
projectId:
|
|
3753
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3754
3754
|
name: "project_id";
|
|
3755
3755
|
tableName: "evaluation_result";
|
|
3756
3756
|
dataType: "string";
|
|
@@ -3769,7 +3769,7 @@ declare const evaluationResult: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3769
3769
|
}, {}, {
|
|
3770
3770
|
length: 256;
|
|
3771
3771
|
}>;
|
|
3772
|
-
tenantId:
|
|
3772
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3773
3773
|
name: "tenant_id";
|
|
3774
3774
|
tableName: "evaluation_result";
|
|
3775
3775
|
dataType: "string";
|
|
@@ -3788,7 +3788,7 @@ declare const evaluationResult: drizzle_orm_pg_core433.PgTableWithColumns<{
|
|
|
3788
3788
|
}, {}, {
|
|
3789
3789
|
length: 256;
|
|
3790
3790
|
}>;
|
|
3791
|
-
id:
|
|
3791
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
3792
3792
|
name: "id";
|
|
3793
3793
|
tableName: "evaluation_result";
|
|
3794
3794
|
dataType: "string";
|
|
@@ -3837,11 +3837,11 @@ declare const ledgerArtifactsRelations: drizzle_orm111.Relations<"ledger_artifac
|
|
|
3837
3837
|
* One tenant can have multiple installations (e.g., multiple orgs).
|
|
3838
3838
|
* The installation_id is the GitHub-assigned ID, unique across all GitHub.
|
|
3839
3839
|
*/
|
|
3840
|
-
declare const workAppGitHubInstallations:
|
|
3840
|
+
declare const workAppGitHubInstallations: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
3841
3841
|
name: "work_app_github_installations";
|
|
3842
3842
|
schema: undefined;
|
|
3843
3843
|
columns: {
|
|
3844
|
-
createdAt:
|
|
3844
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
3845
3845
|
name: "created_at";
|
|
3846
3846
|
tableName: "work_app_github_installations";
|
|
3847
3847
|
dataType: "string";
|
|
@@ -3858,7 +3858,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core433.PgTableWithColu
|
|
|
3858
3858
|
identity: undefined;
|
|
3859
3859
|
generated: undefined;
|
|
3860
3860
|
}, {}, {}>;
|
|
3861
|
-
updatedAt:
|
|
3861
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
3862
3862
|
name: "updated_at";
|
|
3863
3863
|
tableName: "work_app_github_installations";
|
|
3864
3864
|
dataType: "string";
|
|
@@ -3875,7 +3875,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core433.PgTableWithColu
|
|
|
3875
3875
|
identity: undefined;
|
|
3876
3876
|
generated: undefined;
|
|
3877
3877
|
}, {}, {}>;
|
|
3878
|
-
installationId:
|
|
3878
|
+
installationId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3879
3879
|
name: "installation_id";
|
|
3880
3880
|
tableName: "work_app_github_installations";
|
|
3881
3881
|
dataType: "string";
|
|
@@ -3892,7 +3892,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core433.PgTableWithColu
|
|
|
3892
3892
|
identity: undefined;
|
|
3893
3893
|
generated: undefined;
|
|
3894
3894
|
}, {}, {}>;
|
|
3895
|
-
accountLogin:
|
|
3895
|
+
accountLogin: drizzle_orm_pg_core1831.PgColumn<{
|
|
3896
3896
|
name: "account_login";
|
|
3897
3897
|
tableName: "work_app_github_installations";
|
|
3898
3898
|
dataType: "string";
|
|
@@ -3911,7 +3911,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core433.PgTableWithColu
|
|
|
3911
3911
|
}, {}, {
|
|
3912
3912
|
length: 256;
|
|
3913
3913
|
}>;
|
|
3914
|
-
accountId:
|
|
3914
|
+
accountId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3915
3915
|
name: "account_id";
|
|
3916
3916
|
tableName: "work_app_github_installations";
|
|
3917
3917
|
dataType: "string";
|
|
@@ -3928,12 +3928,12 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core433.PgTableWithColu
|
|
|
3928
3928
|
identity: undefined;
|
|
3929
3929
|
generated: undefined;
|
|
3930
3930
|
}, {}, {}>;
|
|
3931
|
-
accountType:
|
|
3931
|
+
accountType: drizzle_orm_pg_core1831.PgColumn<{
|
|
3932
3932
|
name: "account_type";
|
|
3933
3933
|
tableName: "work_app_github_installations";
|
|
3934
3934
|
dataType: "string";
|
|
3935
3935
|
columnType: "PgVarchar";
|
|
3936
|
-
data: "
|
|
3936
|
+
data: "User" | "Organization";
|
|
3937
3937
|
driverParam: string;
|
|
3938
3938
|
notNull: true;
|
|
3939
3939
|
hasDefault: false;
|
|
@@ -3946,9 +3946,9 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core433.PgTableWithColu
|
|
|
3946
3946
|
generated: undefined;
|
|
3947
3947
|
}, {}, {
|
|
3948
3948
|
length: 20;
|
|
3949
|
-
$type: "
|
|
3949
|
+
$type: "User" | "Organization";
|
|
3950
3950
|
}>;
|
|
3951
|
-
status:
|
|
3951
|
+
status: drizzle_orm_pg_core1831.PgColumn<{
|
|
3952
3952
|
name: "status";
|
|
3953
3953
|
tableName: "work_app_github_installations";
|
|
3954
3954
|
dataType: "string";
|
|
@@ -3968,7 +3968,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core433.PgTableWithColu
|
|
|
3968
3968
|
length: 20;
|
|
3969
3969
|
$type: "pending" | "active" | "suspended" | "disconnected";
|
|
3970
3970
|
}>;
|
|
3971
|
-
tenantId:
|
|
3971
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
3972
3972
|
name: "tenant_id";
|
|
3973
3973
|
tableName: "work_app_github_installations";
|
|
3974
3974
|
dataType: "string";
|
|
@@ -3987,7 +3987,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core433.PgTableWithColu
|
|
|
3987
3987
|
}, {}, {
|
|
3988
3988
|
length: 256;
|
|
3989
3989
|
}>;
|
|
3990
|
-
id:
|
|
3990
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
3991
3991
|
name: "id";
|
|
3992
3992
|
tableName: "work_app_github_installations";
|
|
3993
3993
|
dataType: "string";
|
|
@@ -4014,11 +4014,11 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core433.PgTableWithColu
|
|
|
4014
4014
|
* These are synced from GitHub when the app is installed or updated.
|
|
4015
4015
|
* The repository_id is the GitHub-assigned ID, unique across all GitHub.
|
|
4016
4016
|
*/
|
|
4017
|
-
declare const workAppGitHubRepositories:
|
|
4017
|
+
declare const workAppGitHubRepositories: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
4018
4018
|
name: "work_app_github_repositories";
|
|
4019
4019
|
schema: undefined;
|
|
4020
4020
|
columns: {
|
|
4021
|
-
createdAt:
|
|
4021
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
4022
4022
|
name: "created_at";
|
|
4023
4023
|
tableName: "work_app_github_repositories";
|
|
4024
4024
|
dataType: "string";
|
|
@@ -4035,7 +4035,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core433.PgTableWithColum
|
|
|
4035
4035
|
identity: undefined;
|
|
4036
4036
|
generated: undefined;
|
|
4037
4037
|
}, {}, {}>;
|
|
4038
|
-
updatedAt:
|
|
4038
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
4039
4039
|
name: "updated_at";
|
|
4040
4040
|
tableName: "work_app_github_repositories";
|
|
4041
4041
|
dataType: "string";
|
|
@@ -4052,7 +4052,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core433.PgTableWithColum
|
|
|
4052
4052
|
identity: undefined;
|
|
4053
4053
|
generated: undefined;
|
|
4054
4054
|
}, {}, {}>;
|
|
4055
|
-
id:
|
|
4055
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
4056
4056
|
name: "id";
|
|
4057
4057
|
tableName: "work_app_github_repositories";
|
|
4058
4058
|
dataType: "string";
|
|
@@ -4071,7 +4071,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core433.PgTableWithColum
|
|
|
4071
4071
|
}, {}, {
|
|
4072
4072
|
length: 256;
|
|
4073
4073
|
}>;
|
|
4074
|
-
installationDbId:
|
|
4074
|
+
installationDbId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4075
4075
|
name: "installation_db_id";
|
|
4076
4076
|
tableName: "work_app_github_repositories";
|
|
4077
4077
|
dataType: "string";
|
|
@@ -4090,7 +4090,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core433.PgTableWithColum
|
|
|
4090
4090
|
}, {}, {
|
|
4091
4091
|
length: 256;
|
|
4092
4092
|
}>;
|
|
4093
|
-
repositoryId:
|
|
4093
|
+
repositoryId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4094
4094
|
name: "repository_id";
|
|
4095
4095
|
tableName: "work_app_github_repositories";
|
|
4096
4096
|
dataType: "string";
|
|
@@ -4107,7 +4107,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core433.PgTableWithColum
|
|
|
4107
4107
|
identity: undefined;
|
|
4108
4108
|
generated: undefined;
|
|
4109
4109
|
}, {}, {}>;
|
|
4110
|
-
repositoryName:
|
|
4110
|
+
repositoryName: drizzle_orm_pg_core1831.PgColumn<{
|
|
4111
4111
|
name: "repository_name";
|
|
4112
4112
|
tableName: "work_app_github_repositories";
|
|
4113
4113
|
dataType: "string";
|
|
@@ -4126,7 +4126,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core433.PgTableWithColum
|
|
|
4126
4126
|
}, {}, {
|
|
4127
4127
|
length: 256;
|
|
4128
4128
|
}>;
|
|
4129
|
-
repositoryFullName:
|
|
4129
|
+
repositoryFullName: drizzle_orm_pg_core1831.PgColumn<{
|
|
4130
4130
|
name: "repository_full_name";
|
|
4131
4131
|
tableName: "work_app_github_repositories";
|
|
4132
4132
|
dataType: "string";
|
|
@@ -4145,7 +4145,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core433.PgTableWithColum
|
|
|
4145
4145
|
}, {}, {
|
|
4146
4146
|
length: 512;
|
|
4147
4147
|
}>;
|
|
4148
|
-
private:
|
|
4148
|
+
private: drizzle_orm_pg_core1831.PgColumn<{
|
|
4149
4149
|
name: "private";
|
|
4150
4150
|
tableName: "work_app_github_repositories";
|
|
4151
4151
|
dataType: "boolean";
|
|
@@ -4173,11 +4173,11 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core433.PgTableWithColum
|
|
|
4173
4173
|
* (cross-schema, no FK constraint for project). tenant_id is included because
|
|
4174
4174
|
* project IDs are only unique within a tenant.
|
|
4175
4175
|
*/
|
|
4176
|
-
declare const workAppGitHubProjectRepositoryAccess:
|
|
4176
|
+
declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
4177
4177
|
name: "work_app_github_project_repository_access";
|
|
4178
4178
|
schema: undefined;
|
|
4179
4179
|
columns: {
|
|
4180
|
-
createdAt:
|
|
4180
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
4181
4181
|
name: "created_at";
|
|
4182
4182
|
tableName: "work_app_github_project_repository_access";
|
|
4183
4183
|
dataType: "string";
|
|
@@ -4194,7 +4194,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4194
4194
|
identity: undefined;
|
|
4195
4195
|
generated: undefined;
|
|
4196
4196
|
}, {}, {}>;
|
|
4197
|
-
updatedAt:
|
|
4197
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
4198
4198
|
name: "updated_at";
|
|
4199
4199
|
tableName: "work_app_github_project_repository_access";
|
|
4200
4200
|
dataType: "string";
|
|
@@ -4211,7 +4211,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4211
4211
|
identity: undefined;
|
|
4212
4212
|
generated: undefined;
|
|
4213
4213
|
}, {}, {}>;
|
|
4214
|
-
repositoryDbId:
|
|
4214
|
+
repositoryDbId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4215
4215
|
name: "repository_db_id";
|
|
4216
4216
|
tableName: "work_app_github_project_repository_access";
|
|
4217
4217
|
dataType: "string";
|
|
@@ -4230,7 +4230,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4230
4230
|
}, {}, {
|
|
4231
4231
|
length: 256;
|
|
4232
4232
|
}>;
|
|
4233
|
-
projectId:
|
|
4233
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4234
4234
|
name: "project_id";
|
|
4235
4235
|
tableName: "work_app_github_project_repository_access";
|
|
4236
4236
|
dataType: "string";
|
|
@@ -4249,7 +4249,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4249
4249
|
}, {}, {
|
|
4250
4250
|
length: 256;
|
|
4251
4251
|
}>;
|
|
4252
|
-
tenantId:
|
|
4252
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4253
4253
|
name: "tenant_id";
|
|
4254
4254
|
tableName: "work_app_github_project_repository_access";
|
|
4255
4255
|
dataType: "string";
|
|
@@ -4268,7 +4268,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4268
4268
|
}, {}, {
|
|
4269
4269
|
length: 256;
|
|
4270
4270
|
}>;
|
|
4271
|
-
id:
|
|
4271
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
4272
4272
|
name: "id";
|
|
4273
4273
|
tableName: "work_app_github_project_repository_access";
|
|
4274
4274
|
dataType: "string";
|
|
@@ -4297,11 +4297,11 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4297
4297
|
* (cross-schema, no FK constraint). These are denormalized here so all GitHub access
|
|
4298
4298
|
* info can be queried from PostgreSQL alone.
|
|
4299
4299
|
*/
|
|
4300
|
-
declare const workAppGitHubMcpToolRepositoryAccess:
|
|
4300
|
+
declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
4301
4301
|
name: "work_app_github_mcp_tool_repository_access";
|
|
4302
4302
|
schema: undefined;
|
|
4303
4303
|
columns: {
|
|
4304
|
-
createdAt:
|
|
4304
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
4305
4305
|
name: "created_at";
|
|
4306
4306
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4307
4307
|
dataType: "string";
|
|
@@ -4318,7 +4318,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4318
4318
|
identity: undefined;
|
|
4319
4319
|
generated: undefined;
|
|
4320
4320
|
}, {}, {}>;
|
|
4321
|
-
updatedAt:
|
|
4321
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
4322
4322
|
name: "updated_at";
|
|
4323
4323
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4324
4324
|
dataType: "string";
|
|
@@ -4335,7 +4335,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4335
4335
|
identity: undefined;
|
|
4336
4336
|
generated: undefined;
|
|
4337
4337
|
}, {}, {}>;
|
|
4338
|
-
toolId:
|
|
4338
|
+
toolId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4339
4339
|
name: "tool_id";
|
|
4340
4340
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4341
4341
|
dataType: "string";
|
|
@@ -4354,7 +4354,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4354
4354
|
}, {}, {
|
|
4355
4355
|
length: 256;
|
|
4356
4356
|
}>;
|
|
4357
|
-
repositoryDbId:
|
|
4357
|
+
repositoryDbId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4358
4358
|
name: "repository_db_id";
|
|
4359
4359
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4360
4360
|
dataType: "string";
|
|
@@ -4373,7 +4373,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4373
4373
|
}, {}, {
|
|
4374
4374
|
length: 256;
|
|
4375
4375
|
}>;
|
|
4376
|
-
projectId:
|
|
4376
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4377
4377
|
name: "project_id";
|
|
4378
4378
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4379
4379
|
dataType: "string";
|
|
@@ -4392,7 +4392,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4392
4392
|
}, {}, {
|
|
4393
4393
|
length: 256;
|
|
4394
4394
|
}>;
|
|
4395
|
-
tenantId:
|
|
4395
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4396
4396
|
name: "tenant_id";
|
|
4397
4397
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4398
4398
|
dataType: "string";
|
|
@@ -4411,7 +4411,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4411
4411
|
}, {}, {
|
|
4412
4412
|
length: 256;
|
|
4413
4413
|
}>;
|
|
4414
|
-
id:
|
|
4414
|
+
id: drizzle_orm_pg_core1831.PgColumn<{
|
|
4415
4415
|
name: "id";
|
|
4416
4416
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4417
4417
|
dataType: "string";
|
|
@@ -4439,11 +4439,11 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core433.PgTab
|
|
|
4439
4439
|
* - 'selected': Project only has access to repositories listed in work_app_github_project_repository_access
|
|
4440
4440
|
* If no row exists for a project, defaults to 'selected' (fail-safe: no access unless explicitly granted).
|
|
4441
4441
|
*/
|
|
4442
|
-
declare const workAppGitHubProjectAccessMode:
|
|
4442
|
+
declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
4443
4443
|
name: "work_app_github_project_access_mode";
|
|
4444
4444
|
schema: undefined;
|
|
4445
4445
|
columns: {
|
|
4446
|
-
createdAt:
|
|
4446
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
4447
4447
|
name: "created_at";
|
|
4448
4448
|
tableName: "work_app_github_project_access_mode";
|
|
4449
4449
|
dataType: "string";
|
|
@@ -4460,7 +4460,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core433.PgTableWith
|
|
|
4460
4460
|
identity: undefined;
|
|
4461
4461
|
generated: undefined;
|
|
4462
4462
|
}, {}, {}>;
|
|
4463
|
-
updatedAt:
|
|
4463
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
4464
4464
|
name: "updated_at";
|
|
4465
4465
|
tableName: "work_app_github_project_access_mode";
|
|
4466
4466
|
dataType: "string";
|
|
@@ -4477,7 +4477,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core433.PgTableWith
|
|
|
4477
4477
|
identity: undefined;
|
|
4478
4478
|
generated: undefined;
|
|
4479
4479
|
}, {}, {}>;
|
|
4480
|
-
tenantId:
|
|
4480
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4481
4481
|
name: "tenant_id";
|
|
4482
4482
|
tableName: "work_app_github_project_access_mode";
|
|
4483
4483
|
dataType: "string";
|
|
@@ -4496,7 +4496,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core433.PgTableWith
|
|
|
4496
4496
|
}, {}, {
|
|
4497
4497
|
length: 256;
|
|
4498
4498
|
}>;
|
|
4499
|
-
projectId:
|
|
4499
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4500
4500
|
name: "project_id";
|
|
4501
4501
|
tableName: "work_app_github_project_access_mode";
|
|
4502
4502
|
dataType: "string";
|
|
@@ -4515,7 +4515,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core433.PgTableWith
|
|
|
4515
4515
|
}, {}, {
|
|
4516
4516
|
length: 256;
|
|
4517
4517
|
}>;
|
|
4518
|
-
mode:
|
|
4518
|
+
mode: drizzle_orm_pg_core1831.PgColumn<{
|
|
4519
4519
|
name: "mode";
|
|
4520
4520
|
tableName: "work_app_github_project_access_mode";
|
|
4521
4521
|
dataType: "string";
|
|
@@ -4544,11 +4544,11 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core433.PgTableWith
|
|
|
4544
4544
|
* - 'selected': Tool only has access to repositories listed in work_app_github_mcp_tool_repository_access
|
|
4545
4545
|
* If no row exists for a tool, defaults to 'selected' (fail-safe: no access unless explicitly granted).
|
|
4546
4546
|
*/
|
|
4547
|
-
declare const workAppGitHubMcpToolAccessMode:
|
|
4547
|
+
declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
4548
4548
|
name: "work_app_github_mcp_tool_access_mode";
|
|
4549
4549
|
schema: undefined;
|
|
4550
4550
|
columns: {
|
|
4551
|
-
createdAt:
|
|
4551
|
+
createdAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
4552
4552
|
name: "created_at";
|
|
4553
4553
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4554
4554
|
dataType: "string";
|
|
@@ -4565,7 +4565,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core433.PgTableWith
|
|
|
4565
4565
|
identity: undefined;
|
|
4566
4566
|
generated: undefined;
|
|
4567
4567
|
}, {}, {}>;
|
|
4568
|
-
updatedAt:
|
|
4568
|
+
updatedAt: drizzle_orm_pg_core1831.PgColumn<{
|
|
4569
4569
|
name: "updated_at";
|
|
4570
4570
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4571
4571
|
dataType: "string";
|
|
@@ -4582,7 +4582,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core433.PgTableWith
|
|
|
4582
4582
|
identity: undefined;
|
|
4583
4583
|
generated: undefined;
|
|
4584
4584
|
}, {}, {}>;
|
|
4585
|
-
toolId:
|
|
4585
|
+
toolId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4586
4586
|
name: "tool_id";
|
|
4587
4587
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4588
4588
|
dataType: "string";
|
|
@@ -4601,7 +4601,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core433.PgTableWith
|
|
|
4601
4601
|
}, {}, {
|
|
4602
4602
|
length: 256;
|
|
4603
4603
|
}>;
|
|
4604
|
-
tenantId:
|
|
4604
|
+
tenantId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4605
4605
|
name: "tenant_id";
|
|
4606
4606
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4607
4607
|
dataType: "string";
|
|
@@ -4620,7 +4620,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core433.PgTableWith
|
|
|
4620
4620
|
}, {}, {
|
|
4621
4621
|
length: 256;
|
|
4622
4622
|
}>;
|
|
4623
|
-
projectId:
|
|
4623
|
+
projectId: drizzle_orm_pg_core1831.PgColumn<{
|
|
4624
4624
|
name: "project_id";
|
|
4625
4625
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4626
4626
|
dataType: "string";
|
|
@@ -4639,7 +4639,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core433.PgTableWith
|
|
|
4639
4639
|
}, {}, {
|
|
4640
4640
|
length: 256;
|
|
4641
4641
|
}>;
|
|
4642
|
-
mode:
|
|
4642
|
+
mode: drizzle_orm_pg_core1831.PgColumn<{
|
|
4643
4643
|
name: "mode";
|
|
4644
4644
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4645
4645
|
dataType: "string";
|