@inkeep/agents-core 0.58.10 → 0.58.13
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-schema.d.ts +85 -85
- package/dist/auth/auth-validation-schemas.d.ts +152 -152
- package/dist/auth/auth.d.ts +9 -9
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/client-exports.d.ts +2 -2
- package/dist/client-exports.js +2 -2
- package/dist/data-access/manage/credentialReferences.d.ts +2 -2
- package/dist/data-access/manage/credentialReferences.js +46 -18
- package/dist/data-access/manage/tools.d.ts +4 -3
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +4 -4
- package/dist/data-access/runtime/conversations.d.ts +7 -7
- package/dist/data-access/runtime/messages.d.ts +12 -12
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/db/manage/manage-schema.d.ts +361 -361
- package/dist/db/runtime/runtime-schema.d.ts +304 -304
- package/dist/utils/error.d.ts +51 -51
- package/dist/utils/service-token-auth.d.ts +9 -0
- package/dist/utils/service-token-auth.js +4 -1
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/extend-schemas.d.ts +5 -1
- package/dist/validation/schemas.d.ts +1954 -2765
- package/dist/validation/schemas.js +34 -9
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { Part } from "../../types/a2a.js";
|
|
|
2
2
|
import { AppType, 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_core1933 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_core1933.PgTableWithColumns<{
|
|
19
19
|
name: "project_metadata";
|
|
20
20
|
schema: undefined;
|
|
21
21
|
columns: {
|
|
22
|
-
id:
|
|
22
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
23
23
|
name: "id";
|
|
24
24
|
tableName: "project_metadata";
|
|
25
25
|
dataType: "string";
|
|
@@ -38,7 +38,7 @@ declare const projectMetadata: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
38
38
|
}, {}, {
|
|
39
39
|
length: 256;
|
|
40
40
|
}>;
|
|
41
|
-
tenantId:
|
|
41
|
+
tenantId: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
57
57
|
}, {}, {
|
|
58
58
|
length: 256;
|
|
59
59
|
}>;
|
|
60
|
-
createdAt:
|
|
60
|
+
createdAt: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
74
74
|
identity: undefined;
|
|
75
75
|
generated: undefined;
|
|
76
76
|
}, {}, {}>;
|
|
77
|
-
createdBy:
|
|
77
|
+
createdBy: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
93
93
|
}, {}, {
|
|
94
94
|
length: 256;
|
|
95
95
|
}>;
|
|
96
|
-
mainBranchName:
|
|
96
|
+
mainBranchName: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
115
115
|
};
|
|
116
116
|
dialect: "pg";
|
|
117
117
|
}>;
|
|
118
|
-
declare const conversations:
|
|
118
|
+
declare const conversations: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
119
119
|
name: "conversations";
|
|
120
120
|
schema: undefined;
|
|
121
121
|
columns: {
|
|
122
|
-
createdAt:
|
|
122
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
123
123
|
name: "created_at";
|
|
124
124
|
tableName: "conversations";
|
|
125
125
|
dataType: "string";
|
|
@@ -136,7 +136,7 @@ declare const conversations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
136
136
|
identity: undefined;
|
|
137
137
|
generated: undefined;
|
|
138
138
|
}, {}, {}>;
|
|
139
|
-
updatedAt:
|
|
139
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
140
140
|
name: "updated_at";
|
|
141
141
|
tableName: "conversations";
|
|
142
142
|
dataType: "string";
|
|
@@ -153,7 +153,7 @@ declare const conversations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
153
153
|
identity: undefined;
|
|
154
154
|
generated: undefined;
|
|
155
155
|
}, {}, {}>;
|
|
156
|
-
userId:
|
|
156
|
+
userId: drizzle_orm_pg_core1933.PgColumn<{
|
|
157
157
|
name: "user_id";
|
|
158
158
|
tableName: "conversations";
|
|
159
159
|
dataType: "string";
|
|
@@ -172,7 +172,7 @@ declare const conversations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
172
172
|
}, {}, {
|
|
173
173
|
length: 256;
|
|
174
174
|
}>;
|
|
175
|
-
agentId:
|
|
175
|
+
agentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
176
176
|
name: "agent_id";
|
|
177
177
|
tableName: "conversations";
|
|
178
178
|
dataType: "string";
|
|
@@ -191,7 +191,7 @@ declare const conversations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
191
191
|
}, {}, {
|
|
192
192
|
length: 256;
|
|
193
193
|
}>;
|
|
194
|
-
activeSubAgentId:
|
|
194
|
+
activeSubAgentId: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
210
210
|
}, {}, {
|
|
211
211
|
length: 256;
|
|
212
212
|
}>;
|
|
213
|
-
ref:
|
|
213
|
+
ref: drizzle_orm_pg_core1933.PgColumn<{
|
|
214
214
|
name: "ref";
|
|
215
215
|
tableName: "conversations";
|
|
216
216
|
dataType: "json";
|
|
217
217
|
columnType: "PgJsonb";
|
|
218
218
|
data: {
|
|
219
|
-
type: "
|
|
219
|
+
type: "commit" | "tag" | "branch";
|
|
220
220
|
name: string;
|
|
221
221
|
hash: string;
|
|
222
222
|
};
|
|
@@ -232,12 +232,12 @@ declare const conversations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
232
232
|
generated: undefined;
|
|
233
233
|
}, {}, {
|
|
234
234
|
$type: {
|
|
235
|
-
type: "
|
|
235
|
+
type: "commit" | "tag" | "branch";
|
|
236
236
|
name: string;
|
|
237
237
|
hash: string;
|
|
238
238
|
};
|
|
239
239
|
}>;
|
|
240
|
-
title:
|
|
240
|
+
title: drizzle_orm_pg_core1933.PgColumn<{
|
|
241
241
|
name: "title";
|
|
242
242
|
tableName: "conversations";
|
|
243
243
|
dataType: "string";
|
|
@@ -254,7 +254,7 @@ declare const conversations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
254
254
|
identity: undefined;
|
|
255
255
|
generated: undefined;
|
|
256
256
|
}, {}, {}>;
|
|
257
|
-
lastContextResolution:
|
|
257
|
+
lastContextResolution: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
271
271
|
identity: undefined;
|
|
272
272
|
generated: undefined;
|
|
273
273
|
}, {}, {}>;
|
|
274
|
-
metadata:
|
|
274
|
+
metadata: drizzle_orm_pg_core1933.PgColumn<{
|
|
275
275
|
name: "metadata";
|
|
276
276
|
tableName: "conversations";
|
|
277
277
|
dataType: "json";
|
|
@@ -290,7 +290,7 @@ declare const conversations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
290
290
|
}, {}, {
|
|
291
291
|
$type: ConversationMetadata;
|
|
292
292
|
}>;
|
|
293
|
-
projectId:
|
|
293
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
294
294
|
name: "project_id";
|
|
295
295
|
tableName: "conversations";
|
|
296
296
|
dataType: "string";
|
|
@@ -309,7 +309,7 @@ declare const conversations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
309
309
|
}, {}, {
|
|
310
310
|
length: 256;
|
|
311
311
|
}>;
|
|
312
|
-
tenantId:
|
|
312
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
313
313
|
name: "tenant_id";
|
|
314
314
|
tableName: "conversations";
|
|
315
315
|
dataType: "string";
|
|
@@ -328,7 +328,7 @@ declare const conversations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
328
328
|
}, {}, {
|
|
329
329
|
length: 256;
|
|
330
330
|
}>;
|
|
331
|
-
id:
|
|
331
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
332
332
|
name: "id";
|
|
333
333
|
tableName: "conversations";
|
|
334
334
|
dataType: "string";
|
|
@@ -350,11 +350,11 @@ declare const conversations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
350
350
|
};
|
|
351
351
|
dialect: "pg";
|
|
352
352
|
}>;
|
|
353
|
-
declare const tasks:
|
|
353
|
+
declare const tasks: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
354
354
|
name: "tasks";
|
|
355
355
|
schema: undefined;
|
|
356
356
|
columns: {
|
|
357
|
-
createdAt:
|
|
357
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
358
358
|
name: "created_at";
|
|
359
359
|
tableName: "tasks";
|
|
360
360
|
dataType: "string";
|
|
@@ -371,7 +371,7 @@ declare const tasks: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
371
371
|
identity: undefined;
|
|
372
372
|
generated: undefined;
|
|
373
373
|
}, {}, {}>;
|
|
374
|
-
updatedAt:
|
|
374
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
375
375
|
name: "updated_at";
|
|
376
376
|
tableName: "tasks";
|
|
377
377
|
dataType: "string";
|
|
@@ -388,7 +388,7 @@ declare const tasks: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
388
388
|
identity: undefined;
|
|
389
389
|
generated: undefined;
|
|
390
390
|
}, {}, {}>;
|
|
391
|
-
contextId:
|
|
391
|
+
contextId: drizzle_orm_pg_core1933.PgColumn<{
|
|
392
392
|
name: "context_id";
|
|
393
393
|
tableName: "tasks";
|
|
394
394
|
dataType: "string";
|
|
@@ -407,13 +407,13 @@ declare const tasks: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
407
407
|
}, {}, {
|
|
408
408
|
length: 256;
|
|
409
409
|
}>;
|
|
410
|
-
ref:
|
|
410
|
+
ref: drizzle_orm_pg_core1933.PgColumn<{
|
|
411
411
|
name: "ref";
|
|
412
412
|
tableName: "tasks";
|
|
413
413
|
dataType: "json";
|
|
414
414
|
columnType: "PgJsonb";
|
|
415
415
|
data: {
|
|
416
|
-
type: "
|
|
416
|
+
type: "commit" | "tag" | "branch";
|
|
417
417
|
name: string;
|
|
418
418
|
hash: string;
|
|
419
419
|
};
|
|
@@ -429,12 +429,12 @@ declare const tasks: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
429
429
|
generated: undefined;
|
|
430
430
|
}, {}, {
|
|
431
431
|
$type: {
|
|
432
|
-
type: "
|
|
432
|
+
type: "commit" | "tag" | "branch";
|
|
433
433
|
name: string;
|
|
434
434
|
hash: string;
|
|
435
435
|
};
|
|
436
436
|
}>;
|
|
437
|
-
status:
|
|
437
|
+
status: drizzle_orm_pg_core1933.PgColumn<{
|
|
438
438
|
name: "status";
|
|
439
439
|
tableName: "tasks";
|
|
440
440
|
dataType: "string";
|
|
@@ -453,7 +453,7 @@ declare const tasks: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
453
453
|
}, {}, {
|
|
454
454
|
length: 256;
|
|
455
455
|
}>;
|
|
456
|
-
metadata:
|
|
456
|
+
metadata: drizzle_orm_pg_core1933.PgColumn<{
|
|
457
457
|
name: "metadata";
|
|
458
458
|
tableName: "tasks";
|
|
459
459
|
dataType: "json";
|
|
@@ -472,7 +472,7 @@ declare const tasks: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
472
472
|
}, {}, {
|
|
473
473
|
$type: TaskMetadataConfig;
|
|
474
474
|
}>;
|
|
475
|
-
subAgentId:
|
|
475
|
+
subAgentId: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
491
491
|
}, {}, {
|
|
492
492
|
length: 256;
|
|
493
493
|
}>;
|
|
494
|
-
agentId:
|
|
494
|
+
agentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
495
495
|
name: "agent_id";
|
|
496
496
|
tableName: "tasks";
|
|
497
497
|
dataType: "string";
|
|
@@ -510,7 +510,7 @@ declare const tasks: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
510
510
|
}, {}, {
|
|
511
511
|
length: 256;
|
|
512
512
|
}>;
|
|
513
|
-
projectId:
|
|
513
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
514
514
|
name: "project_id";
|
|
515
515
|
tableName: "tasks";
|
|
516
516
|
dataType: "string";
|
|
@@ -529,7 +529,7 @@ declare const tasks: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
529
529
|
}, {}, {
|
|
530
530
|
length: 256;
|
|
531
531
|
}>;
|
|
532
|
-
tenantId:
|
|
532
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
533
533
|
name: "tenant_id";
|
|
534
534
|
tableName: "tasks";
|
|
535
535
|
dataType: "string";
|
|
@@ -548,7 +548,7 @@ declare const tasks: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
548
548
|
}, {}, {
|
|
549
549
|
length: 256;
|
|
550
550
|
}>;
|
|
551
|
-
id:
|
|
551
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
552
552
|
name: "id";
|
|
553
553
|
tableName: "tasks";
|
|
554
554
|
dataType: "string";
|
|
@@ -570,11 +570,11 @@ declare const tasks: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
570
570
|
};
|
|
571
571
|
dialect: "pg";
|
|
572
572
|
}>;
|
|
573
|
-
declare const apiKeys:
|
|
573
|
+
declare const apiKeys: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
574
574
|
name: "api_keys";
|
|
575
575
|
schema: undefined;
|
|
576
576
|
columns: {
|
|
577
|
-
createdAt:
|
|
577
|
+
createdAt: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
591
591
|
identity: undefined;
|
|
592
592
|
generated: undefined;
|
|
593
593
|
}, {}, {}>;
|
|
594
|
-
updatedAt:
|
|
594
|
+
updatedAt: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
608
608
|
identity: undefined;
|
|
609
609
|
generated: undefined;
|
|
610
610
|
}, {}, {}>;
|
|
611
|
-
agentId:
|
|
611
|
+
agentId: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
627
627
|
}, {}, {
|
|
628
628
|
length: 256;
|
|
629
629
|
}>;
|
|
630
|
-
publicId:
|
|
630
|
+
publicId: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
646
646
|
}, {}, {
|
|
647
647
|
length: 256;
|
|
648
648
|
}>;
|
|
649
|
-
keyHash:
|
|
649
|
+
keyHash: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
665
665
|
}, {}, {
|
|
666
666
|
length: 256;
|
|
667
667
|
}>;
|
|
668
|
-
keyPrefix:
|
|
668
|
+
keyPrefix: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
684
684
|
}, {}, {
|
|
685
685
|
length: 256;
|
|
686
686
|
}>;
|
|
687
|
-
name:
|
|
687
|
+
name: drizzle_orm_pg_core1933.PgColumn<{
|
|
688
688
|
name: "name";
|
|
689
689
|
tableName: "api_keys";
|
|
690
690
|
dataType: "string";
|
|
@@ -703,7 +703,7 @@ declare const apiKeys: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
703
703
|
}, {}, {
|
|
704
704
|
length: 256;
|
|
705
705
|
}>;
|
|
706
|
-
lastUsedAt:
|
|
706
|
+
lastUsedAt: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
720
720
|
identity: undefined;
|
|
721
721
|
generated: undefined;
|
|
722
722
|
}, {}, {}>;
|
|
723
|
-
expiresAt:
|
|
723
|
+
expiresAt: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
737
737
|
identity: undefined;
|
|
738
738
|
generated: undefined;
|
|
739
739
|
}, {}, {}>;
|
|
740
|
-
projectId:
|
|
740
|
+
projectId: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
756
756
|
}, {}, {
|
|
757
757
|
length: 256;
|
|
758
758
|
}>;
|
|
759
|
-
tenantId:
|
|
759
|
+
tenantId: drizzle_orm_pg_core1933.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_core439.PgTableWithColumns<{
|
|
|
775
775
|
}, {}, {
|
|
776
776
|
length: 256;
|
|
777
777
|
}>;
|
|
778
|
-
id:
|
|
778
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
779
779
|
name: "id";
|
|
780
780
|
tableName: "api_keys";
|
|
781
781
|
dataType: "string";
|
|
@@ -797,11 +797,11 @@ declare const apiKeys: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
797
797
|
};
|
|
798
798
|
dialect: "pg";
|
|
799
799
|
}>;
|
|
800
|
-
declare const apps:
|
|
800
|
+
declare const apps: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
801
801
|
name: "apps";
|
|
802
802
|
schema: undefined;
|
|
803
803
|
columns: {
|
|
804
|
-
createdAt:
|
|
804
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
805
805
|
name: "created_at";
|
|
806
806
|
tableName: "apps";
|
|
807
807
|
dataType: "string";
|
|
@@ -818,7 +818,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
818
818
|
identity: undefined;
|
|
819
819
|
generated: undefined;
|
|
820
820
|
}, {}, {}>;
|
|
821
|
-
updatedAt:
|
|
821
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
822
822
|
name: "updated_at";
|
|
823
823
|
tableName: "apps";
|
|
824
824
|
dataType: "string";
|
|
@@ -835,7 +835,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
835
835
|
identity: undefined;
|
|
836
836
|
generated: undefined;
|
|
837
837
|
}, {}, {}>;
|
|
838
|
-
id:
|
|
838
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
839
839
|
name: "id";
|
|
840
840
|
tableName: "apps";
|
|
841
841
|
dataType: "string";
|
|
@@ -854,7 +854,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
854
854
|
}, {}, {
|
|
855
855
|
length: 256;
|
|
856
856
|
}>;
|
|
857
|
-
tenantId:
|
|
857
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
858
858
|
name: "tenant_id";
|
|
859
859
|
tableName: "apps";
|
|
860
860
|
dataType: "string";
|
|
@@ -873,7 +873,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
873
873
|
}, {}, {
|
|
874
874
|
length: 256;
|
|
875
875
|
}>;
|
|
876
|
-
projectId:
|
|
876
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
877
877
|
name: "project_id";
|
|
878
878
|
tableName: "apps";
|
|
879
879
|
dataType: "string";
|
|
@@ -892,7 +892,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
892
892
|
}, {}, {
|
|
893
893
|
length: 256;
|
|
894
894
|
}>;
|
|
895
|
-
name:
|
|
895
|
+
name: drizzle_orm_pg_core1933.PgColumn<{
|
|
896
896
|
name: "name";
|
|
897
897
|
tableName: "apps";
|
|
898
898
|
dataType: "string";
|
|
@@ -911,7 +911,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
911
911
|
}, {}, {
|
|
912
912
|
length: 256;
|
|
913
913
|
}>;
|
|
914
|
-
description:
|
|
914
|
+
description: drizzle_orm_pg_core1933.PgColumn<{
|
|
915
915
|
name: "description";
|
|
916
916
|
tableName: "apps";
|
|
917
917
|
dataType: "string";
|
|
@@ -928,7 +928,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
928
928
|
identity: undefined;
|
|
929
929
|
generated: undefined;
|
|
930
930
|
}, {}, {}>;
|
|
931
|
-
type:
|
|
931
|
+
type: drizzle_orm_pg_core1933.PgColumn<{
|
|
932
932
|
name: "type";
|
|
933
933
|
tableName: "apps";
|
|
934
934
|
dataType: "string";
|
|
@@ -948,7 +948,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
948
948
|
length: 64;
|
|
949
949
|
$type: AppType;
|
|
950
950
|
}>;
|
|
951
|
-
defaultProjectId:
|
|
951
|
+
defaultProjectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
952
952
|
name: "default_project_id";
|
|
953
953
|
tableName: "apps";
|
|
954
954
|
dataType: "string";
|
|
@@ -967,7 +967,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
967
967
|
}, {}, {
|
|
968
968
|
length: 256;
|
|
969
969
|
}>;
|
|
970
|
-
defaultAgentId:
|
|
970
|
+
defaultAgentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
971
971
|
name: "default_agent_id";
|
|
972
972
|
tableName: "apps";
|
|
973
973
|
dataType: "string";
|
|
@@ -986,7 +986,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
986
986
|
}, {}, {
|
|
987
987
|
length: 256;
|
|
988
988
|
}>;
|
|
989
|
-
enabled:
|
|
989
|
+
enabled: drizzle_orm_pg_core1933.PgColumn<{
|
|
990
990
|
name: "enabled";
|
|
991
991
|
tableName: "apps";
|
|
992
992
|
dataType: "boolean";
|
|
@@ -1003,7 +1003,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1003
1003
|
identity: undefined;
|
|
1004
1004
|
generated: undefined;
|
|
1005
1005
|
}, {}, {}>;
|
|
1006
|
-
config:
|
|
1006
|
+
config: drizzle_orm_pg_core1933.PgColumn<{
|
|
1007
1007
|
name: "config";
|
|
1008
1008
|
tableName: "apps";
|
|
1009
1009
|
dataType: "json";
|
|
@@ -1038,7 +1038,7 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1038
1038
|
api: Record<string, never>;
|
|
1039
1039
|
};
|
|
1040
1040
|
}>;
|
|
1041
|
-
lastUsedAt:
|
|
1041
|
+
lastUsedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
1042
1042
|
name: "last_used_at";
|
|
1043
1043
|
tableName: "apps";
|
|
1044
1044
|
dataType: "string";
|
|
@@ -1065,11 +1065,11 @@ declare const apps: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1065
1065
|
* Application code must enforce referential integrity for triggerId.
|
|
1066
1066
|
* Can optionally link to conversations when the trigger creates one.
|
|
1067
1067
|
*/
|
|
1068
|
-
declare const triggerInvocations:
|
|
1068
|
+
declare const triggerInvocations: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
1069
1069
|
name: "trigger_invocations";
|
|
1070
1070
|
schema: undefined;
|
|
1071
1071
|
columns: {
|
|
1072
|
-
triggerId:
|
|
1072
|
+
triggerId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1073
1073
|
name: "trigger_id";
|
|
1074
1074
|
tableName: "trigger_invocations";
|
|
1075
1075
|
dataType: "string";
|
|
@@ -1088,7 +1088,7 @@ declare const triggerInvocations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1088
1088
|
}, {}, {
|
|
1089
1089
|
length: 256;
|
|
1090
1090
|
}>;
|
|
1091
|
-
conversationId:
|
|
1091
|
+
conversationId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1092
1092
|
name: "conversation_id";
|
|
1093
1093
|
tableName: "trigger_invocations";
|
|
1094
1094
|
dataType: "string";
|
|
@@ -1107,7 +1107,7 @@ declare const triggerInvocations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1107
1107
|
}, {}, {
|
|
1108
1108
|
length: 256;
|
|
1109
1109
|
}>;
|
|
1110
|
-
status:
|
|
1110
|
+
status: drizzle_orm_pg_core1933.PgColumn<{
|
|
1111
1111
|
name: "status";
|
|
1112
1112
|
tableName: "trigger_invocations";
|
|
1113
1113
|
dataType: "string";
|
|
@@ -1126,7 +1126,7 @@ declare const triggerInvocations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1126
1126
|
}, {}, {
|
|
1127
1127
|
length: 20;
|
|
1128
1128
|
}>;
|
|
1129
|
-
requestPayload:
|
|
1129
|
+
requestPayload: drizzle_orm_pg_core1933.PgColumn<{
|
|
1130
1130
|
name: "request_payload";
|
|
1131
1131
|
tableName: "trigger_invocations";
|
|
1132
1132
|
dataType: "json";
|
|
@@ -1143,7 +1143,7 @@ declare const triggerInvocations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1143
1143
|
identity: undefined;
|
|
1144
1144
|
generated: undefined;
|
|
1145
1145
|
}, {}, {}>;
|
|
1146
|
-
transformedPayload:
|
|
1146
|
+
transformedPayload: drizzle_orm_pg_core1933.PgColumn<{
|
|
1147
1147
|
name: "transformed_payload";
|
|
1148
1148
|
tableName: "trigger_invocations";
|
|
1149
1149
|
dataType: "json";
|
|
@@ -1160,7 +1160,7 @@ declare const triggerInvocations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1160
1160
|
identity: undefined;
|
|
1161
1161
|
generated: undefined;
|
|
1162
1162
|
}, {}, {}>;
|
|
1163
|
-
errorMessage:
|
|
1163
|
+
errorMessage: drizzle_orm_pg_core1933.PgColumn<{
|
|
1164
1164
|
name: "error_message";
|
|
1165
1165
|
tableName: "trigger_invocations";
|
|
1166
1166
|
dataType: "string";
|
|
@@ -1177,7 +1177,7 @@ declare const triggerInvocations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1177
1177
|
identity: undefined;
|
|
1178
1178
|
generated: undefined;
|
|
1179
1179
|
}, {}, {}>;
|
|
1180
|
-
createdAt:
|
|
1180
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
1181
1181
|
name: "created_at";
|
|
1182
1182
|
tableName: "trigger_invocations";
|
|
1183
1183
|
dataType: "string";
|
|
@@ -1194,7 +1194,7 @@ declare const triggerInvocations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1194
1194
|
identity: undefined;
|
|
1195
1195
|
generated: undefined;
|
|
1196
1196
|
}, {}, {}>;
|
|
1197
|
-
agentId:
|
|
1197
|
+
agentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1198
1198
|
name: "agent_id";
|
|
1199
1199
|
tableName: "trigger_invocations";
|
|
1200
1200
|
dataType: "string";
|
|
@@ -1213,7 +1213,7 @@ declare const triggerInvocations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1213
1213
|
}, {}, {
|
|
1214
1214
|
length: 256;
|
|
1215
1215
|
}>;
|
|
1216
|
-
projectId:
|
|
1216
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1217
1217
|
name: "project_id";
|
|
1218
1218
|
tableName: "trigger_invocations";
|
|
1219
1219
|
dataType: "string";
|
|
@@ -1232,7 +1232,7 @@ declare const triggerInvocations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1232
1232
|
}, {}, {
|
|
1233
1233
|
length: 256;
|
|
1234
1234
|
}>;
|
|
1235
|
-
tenantId:
|
|
1235
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1236
1236
|
name: "tenant_id";
|
|
1237
1237
|
tableName: "trigger_invocations";
|
|
1238
1238
|
dataType: "string";
|
|
@@ -1251,7 +1251,7 @@ declare const triggerInvocations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1251
1251
|
}, {}, {
|
|
1252
1252
|
length: 256;
|
|
1253
1253
|
}>;
|
|
1254
|
-
id:
|
|
1254
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
1255
1255
|
name: "id";
|
|
1256
1256
|
tableName: "trigger_invocations";
|
|
1257
1257
|
dataType: "string";
|
|
@@ -1278,11 +1278,11 @@ declare const triggerInvocations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
1278
1278
|
* Enforces workspace -> tenant uniqueness and provides audit trail.
|
|
1279
1279
|
* Stores reference to Nango connection for token retrieval.
|
|
1280
1280
|
*/
|
|
1281
|
-
declare const workAppSlackWorkspaces:
|
|
1281
|
+
declare const workAppSlackWorkspaces: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
1282
1282
|
name: "work_app_slack_workspaces";
|
|
1283
1283
|
schema: undefined;
|
|
1284
1284
|
columns: {
|
|
1285
|
-
createdAt:
|
|
1285
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
1286
1286
|
name: "created_at";
|
|
1287
1287
|
tableName: "work_app_slack_workspaces";
|
|
1288
1288
|
dataType: "string";
|
|
@@ -1299,7 +1299,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1299
1299
|
identity: undefined;
|
|
1300
1300
|
generated: undefined;
|
|
1301
1301
|
}, {}, {}>;
|
|
1302
|
-
updatedAt:
|
|
1302
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
1303
1303
|
name: "updated_at";
|
|
1304
1304
|
tableName: "work_app_slack_workspaces";
|
|
1305
1305
|
dataType: "string";
|
|
@@ -1316,7 +1316,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1316
1316
|
identity: undefined;
|
|
1317
1317
|
generated: undefined;
|
|
1318
1318
|
}, {}, {}>;
|
|
1319
|
-
id:
|
|
1319
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
1320
1320
|
name: "id";
|
|
1321
1321
|
tableName: "work_app_slack_workspaces";
|
|
1322
1322
|
dataType: "string";
|
|
@@ -1335,7 +1335,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1335
1335
|
}, {}, {
|
|
1336
1336
|
length: 256;
|
|
1337
1337
|
}>;
|
|
1338
|
-
tenantId:
|
|
1338
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1339
1339
|
name: "tenant_id";
|
|
1340
1340
|
tableName: "work_app_slack_workspaces";
|
|
1341
1341
|
dataType: "string";
|
|
@@ -1354,7 +1354,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1354
1354
|
}, {}, {
|
|
1355
1355
|
length: 256;
|
|
1356
1356
|
}>;
|
|
1357
|
-
slackTeamId:
|
|
1357
|
+
slackTeamId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1358
1358
|
name: "slack_team_id";
|
|
1359
1359
|
tableName: "work_app_slack_workspaces";
|
|
1360
1360
|
dataType: "string";
|
|
@@ -1373,7 +1373,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1373
1373
|
}, {}, {
|
|
1374
1374
|
length: 256;
|
|
1375
1375
|
}>;
|
|
1376
|
-
slackEnterpriseId:
|
|
1376
|
+
slackEnterpriseId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1377
1377
|
name: "slack_enterprise_id";
|
|
1378
1378
|
tableName: "work_app_slack_workspaces";
|
|
1379
1379
|
dataType: "string";
|
|
@@ -1392,7 +1392,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1392
1392
|
}, {}, {
|
|
1393
1393
|
length: 256;
|
|
1394
1394
|
}>;
|
|
1395
|
-
slackAppId:
|
|
1395
|
+
slackAppId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1396
1396
|
name: "slack_app_id";
|
|
1397
1397
|
tableName: "work_app_slack_workspaces";
|
|
1398
1398
|
dataType: "string";
|
|
@@ -1411,7 +1411,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1411
1411
|
}, {}, {
|
|
1412
1412
|
length: 256;
|
|
1413
1413
|
}>;
|
|
1414
|
-
slackTeamName:
|
|
1414
|
+
slackTeamName: drizzle_orm_pg_core1933.PgColumn<{
|
|
1415
1415
|
name: "slack_team_name";
|
|
1416
1416
|
tableName: "work_app_slack_workspaces";
|
|
1417
1417
|
dataType: "string";
|
|
@@ -1430,7 +1430,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1430
1430
|
}, {}, {
|
|
1431
1431
|
length: 512;
|
|
1432
1432
|
}>;
|
|
1433
|
-
nangoProviderConfigKey:
|
|
1433
|
+
nangoProviderConfigKey: drizzle_orm_pg_core1933.PgColumn<{
|
|
1434
1434
|
name: "nango_provider_config_key";
|
|
1435
1435
|
tableName: "work_app_slack_workspaces";
|
|
1436
1436
|
dataType: "string";
|
|
@@ -1449,7 +1449,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1449
1449
|
}, {}, {
|
|
1450
1450
|
length: 256;
|
|
1451
1451
|
}>;
|
|
1452
|
-
nangoConnectionId:
|
|
1452
|
+
nangoConnectionId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1453
1453
|
name: "nango_connection_id";
|
|
1454
1454
|
tableName: "work_app_slack_workspaces";
|
|
1455
1455
|
dataType: "string";
|
|
@@ -1468,7 +1468,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1468
1468
|
}, {}, {
|
|
1469
1469
|
length: 256;
|
|
1470
1470
|
}>;
|
|
1471
|
-
status:
|
|
1471
|
+
status: drizzle_orm_pg_core1933.PgColumn<{
|
|
1472
1472
|
name: "status";
|
|
1473
1473
|
tableName: "work_app_slack_workspaces";
|
|
1474
1474
|
dataType: "string";
|
|
@@ -1487,7 +1487,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1487
1487
|
}, {}, {
|
|
1488
1488
|
length: 20;
|
|
1489
1489
|
}>;
|
|
1490
|
-
installedByUserId:
|
|
1490
|
+
installedByUserId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1491
1491
|
name: "installed_by_user_id";
|
|
1492
1492
|
tableName: "work_app_slack_workspaces";
|
|
1493
1493
|
dataType: "string";
|
|
@@ -1504,7 +1504,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1504
1504
|
identity: undefined;
|
|
1505
1505
|
generated: undefined;
|
|
1506
1506
|
}, {}, {}>;
|
|
1507
|
-
shouldAllowJoinFromWorkspace:
|
|
1507
|
+
shouldAllowJoinFromWorkspace: drizzle_orm_pg_core1933.PgColumn<{
|
|
1508
1508
|
name: "should_allow_join_from_workspace";
|
|
1509
1509
|
tableName: "work_app_slack_workspaces";
|
|
1510
1510
|
dataType: "boolean";
|
|
@@ -1521,7 +1521,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1521
1521
|
identity: undefined;
|
|
1522
1522
|
generated: undefined;
|
|
1523
1523
|
}, {}, {}>;
|
|
1524
|
-
defaultAgentId:
|
|
1524
|
+
defaultAgentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1525
1525
|
name: "default_agent_id";
|
|
1526
1526
|
tableName: "work_app_slack_workspaces";
|
|
1527
1527
|
dataType: "string";
|
|
@@ -1540,7 +1540,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1540
1540
|
}, {}, {
|
|
1541
1541
|
length: 256;
|
|
1542
1542
|
}>;
|
|
1543
|
-
defaultProjectId:
|
|
1543
|
+
defaultProjectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1544
1544
|
name: "default_project_id";
|
|
1545
1545
|
tableName: "work_app_slack_workspaces";
|
|
1546
1546
|
dataType: "string";
|
|
@@ -1559,7 +1559,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1559
1559
|
}, {}, {
|
|
1560
1560
|
length: 256;
|
|
1561
1561
|
}>;
|
|
1562
|
-
defaultGrantAccessToMembers:
|
|
1562
|
+
defaultGrantAccessToMembers: drizzle_orm_pg_core1933.PgColumn<{
|
|
1563
1563
|
name: "default_grant_access_to_members";
|
|
1564
1564
|
tableName: "work_app_slack_workspaces";
|
|
1565
1565
|
dataType: "boolean";
|
|
@@ -1584,11 +1584,11 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core439.PgTableWithColumns<
|
|
|
1584
1584
|
* Enables Slack users to trigger agents after linking their accounts.
|
|
1585
1585
|
* Unique per tenant + clientId + slackTeamId + slackUserId.
|
|
1586
1586
|
*/
|
|
1587
|
-
declare const workAppSlackUserMappings:
|
|
1587
|
+
declare const workAppSlackUserMappings: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
1588
1588
|
name: "work_app_slack_user_mappings";
|
|
1589
1589
|
schema: undefined;
|
|
1590
1590
|
columns: {
|
|
1591
|
-
createdAt:
|
|
1591
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
1592
1592
|
name: "created_at";
|
|
1593
1593
|
tableName: "work_app_slack_user_mappings";
|
|
1594
1594
|
dataType: "string";
|
|
@@ -1605,7 +1605,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1605
1605
|
identity: undefined;
|
|
1606
1606
|
generated: undefined;
|
|
1607
1607
|
}, {}, {}>;
|
|
1608
|
-
updatedAt:
|
|
1608
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
1609
1609
|
name: "updated_at";
|
|
1610
1610
|
tableName: "work_app_slack_user_mappings";
|
|
1611
1611
|
dataType: "string";
|
|
@@ -1622,7 +1622,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1622
1622
|
identity: undefined;
|
|
1623
1623
|
generated: undefined;
|
|
1624
1624
|
}, {}, {}>;
|
|
1625
|
-
id:
|
|
1625
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
1626
1626
|
name: "id";
|
|
1627
1627
|
tableName: "work_app_slack_user_mappings";
|
|
1628
1628
|
dataType: "string";
|
|
@@ -1641,7 +1641,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1641
1641
|
}, {}, {
|
|
1642
1642
|
length: 256;
|
|
1643
1643
|
}>;
|
|
1644
|
-
tenantId:
|
|
1644
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1645
1645
|
name: "tenant_id";
|
|
1646
1646
|
tableName: "work_app_slack_user_mappings";
|
|
1647
1647
|
dataType: "string";
|
|
@@ -1660,7 +1660,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1660
1660
|
}, {}, {
|
|
1661
1661
|
length: 256;
|
|
1662
1662
|
}>;
|
|
1663
|
-
clientId:
|
|
1663
|
+
clientId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1664
1664
|
name: "client_id";
|
|
1665
1665
|
tableName: "work_app_slack_user_mappings";
|
|
1666
1666
|
dataType: "string";
|
|
@@ -1679,7 +1679,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1679
1679
|
}, {}, {
|
|
1680
1680
|
length: 256;
|
|
1681
1681
|
}>;
|
|
1682
|
-
slackUserId:
|
|
1682
|
+
slackUserId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1683
1683
|
name: "slack_user_id";
|
|
1684
1684
|
tableName: "work_app_slack_user_mappings";
|
|
1685
1685
|
dataType: "string";
|
|
@@ -1698,7 +1698,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1698
1698
|
}, {}, {
|
|
1699
1699
|
length: 256;
|
|
1700
1700
|
}>;
|
|
1701
|
-
slackTeamId:
|
|
1701
|
+
slackTeamId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1702
1702
|
name: "slack_team_id";
|
|
1703
1703
|
tableName: "work_app_slack_user_mappings";
|
|
1704
1704
|
dataType: "string";
|
|
@@ -1717,7 +1717,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1717
1717
|
}, {}, {
|
|
1718
1718
|
length: 256;
|
|
1719
1719
|
}>;
|
|
1720
|
-
slackEnterpriseId:
|
|
1720
|
+
slackEnterpriseId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1721
1721
|
name: "slack_enterprise_id";
|
|
1722
1722
|
tableName: "work_app_slack_user_mappings";
|
|
1723
1723
|
dataType: "string";
|
|
@@ -1736,7 +1736,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1736
1736
|
}, {}, {
|
|
1737
1737
|
length: 256;
|
|
1738
1738
|
}>;
|
|
1739
|
-
inkeepUserId:
|
|
1739
|
+
inkeepUserId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1740
1740
|
name: "inkeep_user_id";
|
|
1741
1741
|
tableName: "work_app_slack_user_mappings";
|
|
1742
1742
|
dataType: "string";
|
|
@@ -1753,7 +1753,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1753
1753
|
identity: undefined;
|
|
1754
1754
|
generated: undefined;
|
|
1755
1755
|
}, {}, {}>;
|
|
1756
|
-
slackUsername:
|
|
1756
|
+
slackUsername: drizzle_orm_pg_core1933.PgColumn<{
|
|
1757
1757
|
name: "slack_username";
|
|
1758
1758
|
tableName: "work_app_slack_user_mappings";
|
|
1759
1759
|
dataType: "string";
|
|
@@ -1772,7 +1772,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1772
1772
|
}, {}, {
|
|
1773
1773
|
length: 256;
|
|
1774
1774
|
}>;
|
|
1775
|
-
slackEmail:
|
|
1775
|
+
slackEmail: drizzle_orm_pg_core1933.PgColumn<{
|
|
1776
1776
|
name: "slack_email";
|
|
1777
1777
|
tableName: "work_app_slack_user_mappings";
|
|
1778
1778
|
dataType: "string";
|
|
@@ -1791,7 +1791,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1791
1791
|
}, {}, {
|
|
1792
1792
|
length: 256;
|
|
1793
1793
|
}>;
|
|
1794
|
-
linkedAt:
|
|
1794
|
+
linkedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
1795
1795
|
name: "linked_at";
|
|
1796
1796
|
tableName: "work_app_slack_user_mappings";
|
|
1797
1797
|
dataType: "string";
|
|
@@ -1808,7 +1808,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1808
1808
|
identity: undefined;
|
|
1809
1809
|
generated: undefined;
|
|
1810
1810
|
}, {}, {}>;
|
|
1811
|
-
lastUsedAt:
|
|
1811
|
+
lastUsedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
1812
1812
|
name: "last_used_at";
|
|
1813
1813
|
tableName: "work_app_slack_user_mappings";
|
|
1814
1814
|
dataType: "string";
|
|
@@ -1833,11 +1833,11 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core439.PgTableWithColumn
|
|
|
1833
1833
|
* Allows admins to set channel-specific agent defaults that override workspace defaults.
|
|
1834
1834
|
* Unique per tenant + slackTeamId + slackChannelId.
|
|
1835
1835
|
*/
|
|
1836
|
-
declare const workAppSlackChannelAgentConfigs:
|
|
1836
|
+
declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
1837
1837
|
name: "work_app_slack_channel_agent_configs";
|
|
1838
1838
|
schema: undefined;
|
|
1839
1839
|
columns: {
|
|
1840
|
-
createdAt:
|
|
1840
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
1841
1841
|
name: "created_at";
|
|
1842
1842
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1843
1843
|
dataType: "string";
|
|
@@ -1854,7 +1854,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
1854
1854
|
identity: undefined;
|
|
1855
1855
|
generated: undefined;
|
|
1856
1856
|
}, {}, {}>;
|
|
1857
|
-
updatedAt:
|
|
1857
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
1858
1858
|
name: "updated_at";
|
|
1859
1859
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1860
1860
|
dataType: "string";
|
|
@@ -1871,7 +1871,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
1871
1871
|
identity: undefined;
|
|
1872
1872
|
generated: undefined;
|
|
1873
1873
|
}, {}, {}>;
|
|
1874
|
-
id:
|
|
1874
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
1875
1875
|
name: "id";
|
|
1876
1876
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1877
1877
|
dataType: "string";
|
|
@@ -1890,7 +1890,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
1890
1890
|
}, {}, {
|
|
1891
1891
|
length: 256;
|
|
1892
1892
|
}>;
|
|
1893
|
-
tenantId:
|
|
1893
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1894
1894
|
name: "tenant_id";
|
|
1895
1895
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1896
1896
|
dataType: "string";
|
|
@@ -1909,7 +1909,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
1909
1909
|
}, {}, {
|
|
1910
1910
|
length: 256;
|
|
1911
1911
|
}>;
|
|
1912
|
-
slackTeamId:
|
|
1912
|
+
slackTeamId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1913
1913
|
name: "slack_team_id";
|
|
1914
1914
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1915
1915
|
dataType: "string";
|
|
@@ -1928,7 +1928,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
1928
1928
|
}, {}, {
|
|
1929
1929
|
length: 256;
|
|
1930
1930
|
}>;
|
|
1931
|
-
slackChannelId:
|
|
1931
|
+
slackChannelId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1932
1932
|
name: "slack_channel_id";
|
|
1933
1933
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1934
1934
|
dataType: "string";
|
|
@@ -1947,7 +1947,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
1947
1947
|
}, {}, {
|
|
1948
1948
|
length: 256;
|
|
1949
1949
|
}>;
|
|
1950
|
-
slackChannelName:
|
|
1950
|
+
slackChannelName: drizzle_orm_pg_core1933.PgColumn<{
|
|
1951
1951
|
name: "slack_channel_name";
|
|
1952
1952
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1953
1953
|
dataType: "string";
|
|
@@ -1966,7 +1966,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
1966
1966
|
}, {}, {
|
|
1967
1967
|
length: 256;
|
|
1968
1968
|
}>;
|
|
1969
|
-
slackChannelType:
|
|
1969
|
+
slackChannelType: drizzle_orm_pg_core1933.PgColumn<{
|
|
1970
1970
|
name: "slack_channel_type";
|
|
1971
1971
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1972
1972
|
dataType: "string";
|
|
@@ -1985,7 +1985,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
1985
1985
|
}, {}, {
|
|
1986
1986
|
length: 50;
|
|
1987
1987
|
}>;
|
|
1988
|
-
projectId:
|
|
1988
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
1989
1989
|
name: "project_id";
|
|
1990
1990
|
tableName: "work_app_slack_channel_agent_configs";
|
|
1991
1991
|
dataType: "string";
|
|
@@ -2004,7 +2004,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
2004
2004
|
}, {}, {
|
|
2005
2005
|
length: 256;
|
|
2006
2006
|
}>;
|
|
2007
|
-
agentId:
|
|
2007
|
+
agentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2008
2008
|
name: "agent_id";
|
|
2009
2009
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2010
2010
|
dataType: "string";
|
|
@@ -2023,7 +2023,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
2023
2023
|
}, {}, {
|
|
2024
2024
|
length: 256;
|
|
2025
2025
|
}>;
|
|
2026
|
-
configuredByUserId:
|
|
2026
|
+
configuredByUserId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2027
2027
|
name: "configured_by_user_id";
|
|
2028
2028
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2029
2029
|
dataType: "string";
|
|
@@ -2040,7 +2040,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
2040
2040
|
identity: undefined;
|
|
2041
2041
|
generated: undefined;
|
|
2042
2042
|
}, {}, {}>;
|
|
2043
|
-
enabled:
|
|
2043
|
+
enabled: drizzle_orm_pg_core1933.PgColumn<{
|
|
2044
2044
|
name: "enabled";
|
|
2045
2045
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2046
2046
|
dataType: "boolean";
|
|
@@ -2057,7 +2057,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
2057
2057
|
identity: undefined;
|
|
2058
2058
|
generated: undefined;
|
|
2059
2059
|
}, {}, {}>;
|
|
2060
|
-
grantAccessToMembers:
|
|
2060
|
+
grantAccessToMembers: drizzle_orm_pg_core1933.PgColumn<{
|
|
2061
2061
|
name: "grant_access_to_members";
|
|
2062
2062
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2063
2063
|
dataType: "boolean";
|
|
@@ -2081,11 +2081,11 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core439.PgTableWit
|
|
|
2081
2081
|
* Scheduled trigger invocations - records each execution of a scheduled trigger.
|
|
2082
2082
|
* NOTE: No FK to scheduled_triggers table since it's in a different database (DoltGres).
|
|
2083
2083
|
*/
|
|
2084
|
-
declare const scheduledTriggerInvocations:
|
|
2084
|
+
declare const scheduledTriggerInvocations: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
2085
2085
|
name: "scheduled_trigger_invocations";
|
|
2086
2086
|
schema: undefined;
|
|
2087
2087
|
columns: {
|
|
2088
|
-
scheduledTriggerId:
|
|
2088
|
+
scheduledTriggerId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2089
2089
|
name: "scheduled_trigger_id";
|
|
2090
2090
|
tableName: "scheduled_trigger_invocations";
|
|
2091
2091
|
dataType: "string";
|
|
@@ -2104,12 +2104,12 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2104
2104
|
}, {}, {
|
|
2105
2105
|
length: 256;
|
|
2106
2106
|
}>;
|
|
2107
|
-
status:
|
|
2107
|
+
status: drizzle_orm_pg_core1933.PgColumn<{
|
|
2108
2108
|
name: "status";
|
|
2109
2109
|
tableName: "scheduled_trigger_invocations";
|
|
2110
2110
|
dataType: "string";
|
|
2111
2111
|
columnType: "PgVarchar";
|
|
2112
|
-
data: "pending" | "
|
|
2112
|
+
data: "pending" | "failed" | "running" | "completed" | "cancelled";
|
|
2113
2113
|
driverParam: string;
|
|
2114
2114
|
notNull: true;
|
|
2115
2115
|
hasDefault: false;
|
|
@@ -2122,9 +2122,9 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2122
2122
|
generated: undefined;
|
|
2123
2123
|
}, {}, {
|
|
2124
2124
|
length: 50;
|
|
2125
|
-
$type: "pending" | "
|
|
2125
|
+
$type: "pending" | "failed" | "running" | "completed" | "cancelled";
|
|
2126
2126
|
}>;
|
|
2127
|
-
scheduledFor:
|
|
2127
|
+
scheduledFor: drizzle_orm_pg_core1933.PgColumn<{
|
|
2128
2128
|
name: "scheduled_for";
|
|
2129
2129
|
tableName: "scheduled_trigger_invocations";
|
|
2130
2130
|
dataType: "string";
|
|
@@ -2141,7 +2141,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2141
2141
|
identity: undefined;
|
|
2142
2142
|
generated: undefined;
|
|
2143
2143
|
}, {}, {}>;
|
|
2144
|
-
startedAt:
|
|
2144
|
+
startedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
2145
2145
|
name: "started_at";
|
|
2146
2146
|
tableName: "scheduled_trigger_invocations";
|
|
2147
2147
|
dataType: "string";
|
|
@@ -2158,7 +2158,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2158
2158
|
identity: undefined;
|
|
2159
2159
|
generated: undefined;
|
|
2160
2160
|
}, {}, {}>;
|
|
2161
|
-
completedAt:
|
|
2161
|
+
completedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
2162
2162
|
name: "completed_at";
|
|
2163
2163
|
tableName: "scheduled_trigger_invocations";
|
|
2164
2164
|
dataType: "string";
|
|
@@ -2175,7 +2175,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2175
2175
|
identity: undefined;
|
|
2176
2176
|
generated: undefined;
|
|
2177
2177
|
}, {}, {}>;
|
|
2178
|
-
resolvedPayload:
|
|
2178
|
+
resolvedPayload: drizzle_orm_pg_core1933.PgColumn<{
|
|
2179
2179
|
name: "resolved_payload";
|
|
2180
2180
|
tableName: "scheduled_trigger_invocations";
|
|
2181
2181
|
dataType: "json";
|
|
@@ -2194,7 +2194,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2194
2194
|
}, {}, {
|
|
2195
2195
|
$type: Record<string, unknown> | null;
|
|
2196
2196
|
}>;
|
|
2197
|
-
conversationIds:
|
|
2197
|
+
conversationIds: drizzle_orm_pg_core1933.PgColumn<{
|
|
2198
2198
|
name: "conversation_ids";
|
|
2199
2199
|
tableName: "scheduled_trigger_invocations";
|
|
2200
2200
|
dataType: "json";
|
|
@@ -2213,7 +2213,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2213
2213
|
}, {}, {
|
|
2214
2214
|
$type: string[];
|
|
2215
2215
|
}>;
|
|
2216
|
-
attemptNumber:
|
|
2216
|
+
attemptNumber: drizzle_orm_pg_core1933.PgColumn<{
|
|
2217
2217
|
name: "attempt_number";
|
|
2218
2218
|
tableName: "scheduled_trigger_invocations";
|
|
2219
2219
|
dataType: "number";
|
|
@@ -2230,7 +2230,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2230
2230
|
identity: undefined;
|
|
2231
2231
|
generated: undefined;
|
|
2232
2232
|
}, {}, {}>;
|
|
2233
|
-
idempotencyKey:
|
|
2233
|
+
idempotencyKey: drizzle_orm_pg_core1933.PgColumn<{
|
|
2234
2234
|
name: "idempotency_key";
|
|
2235
2235
|
tableName: "scheduled_trigger_invocations";
|
|
2236
2236
|
dataType: "string";
|
|
@@ -2249,7 +2249,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2249
2249
|
}, {}, {
|
|
2250
2250
|
length: 256;
|
|
2251
2251
|
}>;
|
|
2252
|
-
createdAt:
|
|
2252
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
2253
2253
|
name: "created_at";
|
|
2254
2254
|
tableName: "scheduled_trigger_invocations";
|
|
2255
2255
|
dataType: "string";
|
|
@@ -2266,7 +2266,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2266
2266
|
identity: undefined;
|
|
2267
2267
|
generated: undefined;
|
|
2268
2268
|
}, {}, {}>;
|
|
2269
|
-
agentId:
|
|
2269
|
+
agentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2270
2270
|
name: "agent_id";
|
|
2271
2271
|
tableName: "scheduled_trigger_invocations";
|
|
2272
2272
|
dataType: "string";
|
|
@@ -2285,7 +2285,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2285
2285
|
}, {}, {
|
|
2286
2286
|
length: 256;
|
|
2287
2287
|
}>;
|
|
2288
|
-
projectId:
|
|
2288
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2289
2289
|
name: "project_id";
|
|
2290
2290
|
tableName: "scheduled_trigger_invocations";
|
|
2291
2291
|
dataType: "string";
|
|
@@ -2304,7 +2304,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2304
2304
|
}, {}, {
|
|
2305
2305
|
length: 256;
|
|
2306
2306
|
}>;
|
|
2307
|
-
tenantId:
|
|
2307
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2308
2308
|
name: "tenant_id";
|
|
2309
2309
|
tableName: "scheduled_trigger_invocations";
|
|
2310
2310
|
dataType: "string";
|
|
@@ -2323,7 +2323,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2323
2323
|
}, {}, {
|
|
2324
2324
|
length: 256;
|
|
2325
2325
|
}>;
|
|
2326
|
-
id:
|
|
2326
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
2327
2327
|
name: "id";
|
|
2328
2328
|
tableName: "scheduled_trigger_invocations";
|
|
2329
2329
|
dataType: "string";
|
|
@@ -2345,11 +2345,11 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core439.PgTableWithCol
|
|
|
2345
2345
|
};
|
|
2346
2346
|
dialect: "pg";
|
|
2347
2347
|
}>;
|
|
2348
|
-
declare const messages:
|
|
2348
|
+
declare const messages: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
2349
2349
|
name: "messages";
|
|
2350
2350
|
schema: undefined;
|
|
2351
2351
|
columns: {
|
|
2352
|
-
createdAt:
|
|
2352
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
2353
2353
|
name: "created_at";
|
|
2354
2354
|
tableName: "messages";
|
|
2355
2355
|
dataType: "string";
|
|
@@ -2366,7 +2366,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2366
2366
|
identity: undefined;
|
|
2367
2367
|
generated: undefined;
|
|
2368
2368
|
}, {}, {}>;
|
|
2369
|
-
updatedAt:
|
|
2369
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
2370
2370
|
name: "updated_at";
|
|
2371
2371
|
tableName: "messages";
|
|
2372
2372
|
dataType: "string";
|
|
@@ -2383,7 +2383,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2383
2383
|
identity: undefined;
|
|
2384
2384
|
generated: undefined;
|
|
2385
2385
|
}, {}, {}>;
|
|
2386
|
-
conversationId:
|
|
2386
|
+
conversationId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2387
2387
|
name: "conversation_id";
|
|
2388
2388
|
tableName: "messages";
|
|
2389
2389
|
dataType: "string";
|
|
@@ -2402,7 +2402,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2402
2402
|
}, {}, {
|
|
2403
2403
|
length: 256;
|
|
2404
2404
|
}>;
|
|
2405
|
-
role:
|
|
2405
|
+
role: drizzle_orm_pg_core1933.PgColumn<{
|
|
2406
2406
|
name: "role";
|
|
2407
2407
|
tableName: "messages";
|
|
2408
2408
|
dataType: "string";
|
|
@@ -2421,7 +2421,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2421
2421
|
}, {}, {
|
|
2422
2422
|
length: 256;
|
|
2423
2423
|
}>;
|
|
2424
|
-
fromSubAgentId:
|
|
2424
|
+
fromSubAgentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2425
2425
|
name: "from_sub_agent_id";
|
|
2426
2426
|
tableName: "messages";
|
|
2427
2427
|
dataType: "string";
|
|
@@ -2440,7 +2440,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2440
2440
|
}, {}, {
|
|
2441
2441
|
length: 256;
|
|
2442
2442
|
}>;
|
|
2443
|
-
toSubAgentId:
|
|
2443
|
+
toSubAgentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2444
2444
|
name: "to_sub_agent_id";
|
|
2445
2445
|
tableName: "messages";
|
|
2446
2446
|
dataType: "string";
|
|
@@ -2459,7 +2459,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2459
2459
|
}, {}, {
|
|
2460
2460
|
length: 256;
|
|
2461
2461
|
}>;
|
|
2462
|
-
fromExternalAgentId:
|
|
2462
|
+
fromExternalAgentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2463
2463
|
name: "from_external_sub_agent_id";
|
|
2464
2464
|
tableName: "messages";
|
|
2465
2465
|
dataType: "string";
|
|
@@ -2478,7 +2478,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2478
2478
|
}, {}, {
|
|
2479
2479
|
length: 256;
|
|
2480
2480
|
}>;
|
|
2481
|
-
toExternalAgentId:
|
|
2481
|
+
toExternalAgentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2482
2482
|
name: "to_external_sub_agent_id";
|
|
2483
2483
|
tableName: "messages";
|
|
2484
2484
|
dataType: "string";
|
|
@@ -2497,7 +2497,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2497
2497
|
}, {}, {
|
|
2498
2498
|
length: 256;
|
|
2499
2499
|
}>;
|
|
2500
|
-
fromTeamAgentId:
|
|
2500
|
+
fromTeamAgentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2501
2501
|
name: "from_team_agent_id";
|
|
2502
2502
|
tableName: "messages";
|
|
2503
2503
|
dataType: "string";
|
|
@@ -2516,7 +2516,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2516
2516
|
}, {}, {
|
|
2517
2517
|
length: 256;
|
|
2518
2518
|
}>;
|
|
2519
|
-
toTeamAgentId:
|
|
2519
|
+
toTeamAgentId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2520
2520
|
name: "to_team_agent_id";
|
|
2521
2521
|
tableName: "messages";
|
|
2522
2522
|
dataType: "string";
|
|
@@ -2535,7 +2535,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2535
2535
|
}, {}, {
|
|
2536
2536
|
length: 256;
|
|
2537
2537
|
}>;
|
|
2538
|
-
content:
|
|
2538
|
+
content: drizzle_orm_pg_core1933.PgColumn<{
|
|
2539
2539
|
name: "content";
|
|
2540
2540
|
tableName: "messages";
|
|
2541
2541
|
dataType: "json";
|
|
@@ -2554,7 +2554,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2554
2554
|
}, {}, {
|
|
2555
2555
|
$type: MessageContent;
|
|
2556
2556
|
}>;
|
|
2557
|
-
visibility:
|
|
2557
|
+
visibility: drizzle_orm_pg_core1933.PgColumn<{
|
|
2558
2558
|
name: "visibility";
|
|
2559
2559
|
tableName: "messages";
|
|
2560
2560
|
dataType: "string";
|
|
@@ -2573,7 +2573,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2573
2573
|
}, {}, {
|
|
2574
2574
|
length: 256;
|
|
2575
2575
|
}>;
|
|
2576
|
-
messageType:
|
|
2576
|
+
messageType: drizzle_orm_pg_core1933.PgColumn<{
|
|
2577
2577
|
name: "message_type";
|
|
2578
2578
|
tableName: "messages";
|
|
2579
2579
|
dataType: "string";
|
|
@@ -2592,7 +2592,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2592
2592
|
}, {}, {
|
|
2593
2593
|
length: 256;
|
|
2594
2594
|
}>;
|
|
2595
|
-
taskId:
|
|
2595
|
+
taskId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2596
2596
|
name: "task_id";
|
|
2597
2597
|
tableName: "messages";
|
|
2598
2598
|
dataType: "string";
|
|
@@ -2611,7 +2611,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2611
2611
|
}, {}, {
|
|
2612
2612
|
length: 256;
|
|
2613
2613
|
}>;
|
|
2614
|
-
parentMessageId:
|
|
2614
|
+
parentMessageId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2615
2615
|
name: "parent_message_id";
|
|
2616
2616
|
tableName: "messages";
|
|
2617
2617
|
dataType: "string";
|
|
@@ -2630,7 +2630,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2630
2630
|
}, {}, {
|
|
2631
2631
|
length: 256;
|
|
2632
2632
|
}>;
|
|
2633
|
-
a2aTaskId:
|
|
2633
|
+
a2aTaskId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2634
2634
|
name: "a2a_task_id";
|
|
2635
2635
|
tableName: "messages";
|
|
2636
2636
|
dataType: "string";
|
|
@@ -2649,7 +2649,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2649
2649
|
}, {}, {
|
|
2650
2650
|
length: 256;
|
|
2651
2651
|
}>;
|
|
2652
|
-
a2aSessionId:
|
|
2652
|
+
a2aSessionId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2653
2653
|
name: "a2a_session_id";
|
|
2654
2654
|
tableName: "messages";
|
|
2655
2655
|
dataType: "string";
|
|
@@ -2668,7 +2668,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2668
2668
|
}, {}, {
|
|
2669
2669
|
length: 256;
|
|
2670
2670
|
}>;
|
|
2671
|
-
metadata:
|
|
2671
|
+
metadata: drizzle_orm_pg_core1933.PgColumn<{
|
|
2672
2672
|
name: "metadata";
|
|
2673
2673
|
tableName: "messages";
|
|
2674
2674
|
dataType: "json";
|
|
@@ -2687,7 +2687,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2687
2687
|
}, {}, {
|
|
2688
2688
|
$type: MessageMetadata;
|
|
2689
2689
|
}>;
|
|
2690
|
-
projectId:
|
|
2690
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2691
2691
|
name: "project_id";
|
|
2692
2692
|
tableName: "messages";
|
|
2693
2693
|
dataType: "string";
|
|
@@ -2706,7 +2706,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2706
2706
|
}, {}, {
|
|
2707
2707
|
length: 256;
|
|
2708
2708
|
}>;
|
|
2709
|
-
tenantId:
|
|
2709
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2710
2710
|
name: "tenant_id";
|
|
2711
2711
|
tableName: "messages";
|
|
2712
2712
|
dataType: "string";
|
|
@@ -2725,7 +2725,7 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2725
2725
|
}, {}, {
|
|
2726
2726
|
length: 256;
|
|
2727
2727
|
}>;
|
|
2728
|
-
id:
|
|
2728
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
2729
2729
|
name: "id";
|
|
2730
2730
|
tableName: "messages";
|
|
2731
2731
|
dataType: "string";
|
|
@@ -2747,11 +2747,11 @@ declare const messages: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2747
2747
|
};
|
|
2748
2748
|
dialect: "pg";
|
|
2749
2749
|
}>;
|
|
2750
|
-
declare const taskRelations:
|
|
2750
|
+
declare const taskRelations: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
2751
2751
|
name: "task_relations";
|
|
2752
2752
|
schema: undefined;
|
|
2753
2753
|
columns: {
|
|
2754
|
-
createdAt:
|
|
2754
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
2755
2755
|
name: "created_at";
|
|
2756
2756
|
tableName: "task_relations";
|
|
2757
2757
|
dataType: "string";
|
|
@@ -2768,7 +2768,7 @@ declare const taskRelations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2768
2768
|
identity: undefined;
|
|
2769
2769
|
generated: undefined;
|
|
2770
2770
|
}, {}, {}>;
|
|
2771
|
-
updatedAt:
|
|
2771
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
2772
2772
|
name: "updated_at";
|
|
2773
2773
|
tableName: "task_relations";
|
|
2774
2774
|
dataType: "string";
|
|
@@ -2785,7 +2785,7 @@ declare const taskRelations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2785
2785
|
identity: undefined;
|
|
2786
2786
|
generated: undefined;
|
|
2787
2787
|
}, {}, {}>;
|
|
2788
|
-
parentTaskId:
|
|
2788
|
+
parentTaskId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2789
2789
|
name: "parent_task_id";
|
|
2790
2790
|
tableName: "task_relations";
|
|
2791
2791
|
dataType: "string";
|
|
@@ -2804,7 +2804,7 @@ declare const taskRelations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2804
2804
|
}, {}, {
|
|
2805
2805
|
length: 256;
|
|
2806
2806
|
}>;
|
|
2807
|
-
childTaskId:
|
|
2807
|
+
childTaskId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2808
2808
|
name: "child_task_id";
|
|
2809
2809
|
tableName: "task_relations";
|
|
2810
2810
|
dataType: "string";
|
|
@@ -2823,7 +2823,7 @@ declare const taskRelations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2823
2823
|
}, {}, {
|
|
2824
2824
|
length: 256;
|
|
2825
2825
|
}>;
|
|
2826
|
-
relationType:
|
|
2826
|
+
relationType: drizzle_orm_pg_core1933.PgColumn<{
|
|
2827
2827
|
name: "relation_type";
|
|
2828
2828
|
tableName: "task_relations";
|
|
2829
2829
|
dataType: "string";
|
|
@@ -2842,7 +2842,7 @@ declare const taskRelations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2842
2842
|
}, {}, {
|
|
2843
2843
|
length: 256;
|
|
2844
2844
|
}>;
|
|
2845
|
-
projectId:
|
|
2845
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2846
2846
|
name: "project_id";
|
|
2847
2847
|
tableName: "task_relations";
|
|
2848
2848
|
dataType: "string";
|
|
@@ -2861,7 +2861,7 @@ declare const taskRelations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2861
2861
|
}, {}, {
|
|
2862
2862
|
length: 256;
|
|
2863
2863
|
}>;
|
|
2864
|
-
tenantId:
|
|
2864
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2865
2865
|
name: "tenant_id";
|
|
2866
2866
|
tableName: "task_relations";
|
|
2867
2867
|
dataType: "string";
|
|
@@ -2880,7 +2880,7 @@ declare const taskRelations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2880
2880
|
}, {}, {
|
|
2881
2881
|
length: 256;
|
|
2882
2882
|
}>;
|
|
2883
|
-
id:
|
|
2883
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
2884
2884
|
name: "id";
|
|
2885
2885
|
tableName: "task_relations";
|
|
2886
2886
|
dataType: "string";
|
|
@@ -2902,11 +2902,11 @@ declare const taskRelations: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2902
2902
|
};
|
|
2903
2903
|
dialect: "pg";
|
|
2904
2904
|
}>;
|
|
2905
|
-
declare const ledgerArtifacts:
|
|
2905
|
+
declare const ledgerArtifacts: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
2906
2906
|
name: "ledger_artifacts";
|
|
2907
2907
|
schema: undefined;
|
|
2908
2908
|
columns: {
|
|
2909
|
-
createdAt:
|
|
2909
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
2910
2910
|
name: "created_at";
|
|
2911
2911
|
tableName: "ledger_artifacts";
|
|
2912
2912
|
dataType: "string";
|
|
@@ -2923,7 +2923,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2923
2923
|
identity: undefined;
|
|
2924
2924
|
generated: undefined;
|
|
2925
2925
|
}, {}, {}>;
|
|
2926
|
-
updatedAt:
|
|
2926
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
2927
2927
|
name: "updated_at";
|
|
2928
2928
|
tableName: "ledger_artifacts";
|
|
2929
2929
|
dataType: "string";
|
|
@@ -2940,7 +2940,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2940
2940
|
identity: undefined;
|
|
2941
2941
|
generated: undefined;
|
|
2942
2942
|
}, {}, {}>;
|
|
2943
|
-
taskId:
|
|
2943
|
+
taskId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2944
2944
|
name: "task_id";
|
|
2945
2945
|
tableName: "ledger_artifacts";
|
|
2946
2946
|
dataType: "string";
|
|
@@ -2959,7 +2959,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2959
2959
|
}, {}, {
|
|
2960
2960
|
length: 256;
|
|
2961
2961
|
}>;
|
|
2962
|
-
toolCallId:
|
|
2962
|
+
toolCallId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2963
2963
|
name: "tool_call_id";
|
|
2964
2964
|
tableName: "ledger_artifacts";
|
|
2965
2965
|
dataType: "string";
|
|
@@ -2978,7 +2978,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2978
2978
|
}, {}, {
|
|
2979
2979
|
length: 256;
|
|
2980
2980
|
}>;
|
|
2981
|
-
contextId:
|
|
2981
|
+
contextId: drizzle_orm_pg_core1933.PgColumn<{
|
|
2982
2982
|
name: "context_id";
|
|
2983
2983
|
tableName: "ledger_artifacts";
|
|
2984
2984
|
dataType: "string";
|
|
@@ -2997,7 +2997,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
2997
2997
|
}, {}, {
|
|
2998
2998
|
length: 256;
|
|
2999
2999
|
}>;
|
|
3000
|
-
type:
|
|
3000
|
+
type: drizzle_orm_pg_core1933.PgColumn<{
|
|
3001
3001
|
name: "type";
|
|
3002
3002
|
tableName: "ledger_artifacts";
|
|
3003
3003
|
dataType: "string";
|
|
@@ -3016,7 +3016,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3016
3016
|
}, {}, {
|
|
3017
3017
|
length: 256;
|
|
3018
3018
|
}>;
|
|
3019
|
-
name:
|
|
3019
|
+
name: drizzle_orm_pg_core1933.PgColumn<{
|
|
3020
3020
|
name: "name";
|
|
3021
3021
|
tableName: "ledger_artifacts";
|
|
3022
3022
|
dataType: "string";
|
|
@@ -3035,7 +3035,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3035
3035
|
}, {}, {
|
|
3036
3036
|
length: 256;
|
|
3037
3037
|
}>;
|
|
3038
|
-
description:
|
|
3038
|
+
description: drizzle_orm_pg_core1933.PgColumn<{
|
|
3039
3039
|
name: "description";
|
|
3040
3040
|
tableName: "ledger_artifacts";
|
|
3041
3041
|
dataType: "string";
|
|
@@ -3052,7 +3052,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3052
3052
|
identity: undefined;
|
|
3053
3053
|
generated: undefined;
|
|
3054
3054
|
}, {}, {}>;
|
|
3055
|
-
parts:
|
|
3055
|
+
parts: drizzle_orm_pg_core1933.PgColumn<{
|
|
3056
3056
|
name: "parts";
|
|
3057
3057
|
tableName: "ledger_artifacts";
|
|
3058
3058
|
dataType: "json";
|
|
@@ -3071,7 +3071,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3071
3071
|
}, {}, {
|
|
3072
3072
|
$type: Part[] | null;
|
|
3073
3073
|
}>;
|
|
3074
|
-
metadata:
|
|
3074
|
+
metadata: drizzle_orm_pg_core1933.PgColumn<{
|
|
3075
3075
|
name: "metadata";
|
|
3076
3076
|
tableName: "ledger_artifacts";
|
|
3077
3077
|
dataType: "json";
|
|
@@ -3090,7 +3090,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3090
3090
|
}, {}, {
|
|
3091
3091
|
$type: Record<string, unknown> | null;
|
|
3092
3092
|
}>;
|
|
3093
|
-
summary:
|
|
3093
|
+
summary: drizzle_orm_pg_core1933.PgColumn<{
|
|
3094
3094
|
name: "summary";
|
|
3095
3095
|
tableName: "ledger_artifacts";
|
|
3096
3096
|
dataType: "string";
|
|
@@ -3107,7 +3107,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3107
3107
|
identity: undefined;
|
|
3108
3108
|
generated: undefined;
|
|
3109
3109
|
}, {}, {}>;
|
|
3110
|
-
mime:
|
|
3110
|
+
mime: drizzle_orm_pg_core1933.PgColumn<{
|
|
3111
3111
|
name: "mime";
|
|
3112
3112
|
tableName: "ledger_artifacts";
|
|
3113
3113
|
dataType: "json";
|
|
@@ -3126,7 +3126,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3126
3126
|
}, {}, {
|
|
3127
3127
|
$type: string[] | null;
|
|
3128
3128
|
}>;
|
|
3129
|
-
visibility:
|
|
3129
|
+
visibility: drizzle_orm_pg_core1933.PgColumn<{
|
|
3130
3130
|
name: "visibility";
|
|
3131
3131
|
tableName: "ledger_artifacts";
|
|
3132
3132
|
dataType: "string";
|
|
@@ -3145,7 +3145,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3145
3145
|
}, {}, {
|
|
3146
3146
|
length: 256;
|
|
3147
3147
|
}>;
|
|
3148
|
-
allowedAgents:
|
|
3148
|
+
allowedAgents: drizzle_orm_pg_core1933.PgColumn<{
|
|
3149
3149
|
name: "allowed_agents";
|
|
3150
3150
|
tableName: "ledger_artifacts";
|
|
3151
3151
|
dataType: "json";
|
|
@@ -3164,7 +3164,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3164
3164
|
}, {}, {
|
|
3165
3165
|
$type: string[] | null;
|
|
3166
3166
|
}>;
|
|
3167
|
-
derivedFrom:
|
|
3167
|
+
derivedFrom: drizzle_orm_pg_core1933.PgColumn<{
|
|
3168
3168
|
name: "derived_from";
|
|
3169
3169
|
tableName: "ledger_artifacts";
|
|
3170
3170
|
dataType: "string";
|
|
@@ -3183,7 +3183,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3183
3183
|
}, {}, {
|
|
3184
3184
|
length: 256;
|
|
3185
3185
|
}>;
|
|
3186
|
-
projectId:
|
|
3186
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3187
3187
|
name: "project_id";
|
|
3188
3188
|
tableName: "ledger_artifacts";
|
|
3189
3189
|
dataType: "string";
|
|
@@ -3202,7 +3202,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3202
3202
|
}, {}, {
|
|
3203
3203
|
length: 256;
|
|
3204
3204
|
}>;
|
|
3205
|
-
tenantId:
|
|
3205
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3206
3206
|
name: "tenant_id";
|
|
3207
3207
|
tableName: "ledger_artifacts";
|
|
3208
3208
|
dataType: "string";
|
|
@@ -3221,7 +3221,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3221
3221
|
}, {}, {
|
|
3222
3222
|
length: 256;
|
|
3223
3223
|
}>;
|
|
3224
|
-
id:
|
|
3224
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
3225
3225
|
name: "id";
|
|
3226
3226
|
tableName: "ledger_artifacts";
|
|
3227
3227
|
dataType: "string";
|
|
@@ -3243,11 +3243,11 @@ declare const ledgerArtifacts: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3243
3243
|
};
|
|
3244
3244
|
dialect: "pg";
|
|
3245
3245
|
}>;
|
|
3246
|
-
declare const contextCache:
|
|
3246
|
+
declare const contextCache: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
3247
3247
|
name: "context_cache";
|
|
3248
3248
|
schema: undefined;
|
|
3249
3249
|
columns: {
|
|
3250
|
-
createdAt:
|
|
3250
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
3251
3251
|
name: "created_at";
|
|
3252
3252
|
tableName: "context_cache";
|
|
3253
3253
|
dataType: "string";
|
|
@@ -3264,7 +3264,7 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3264
3264
|
identity: undefined;
|
|
3265
3265
|
generated: undefined;
|
|
3266
3266
|
}, {}, {}>;
|
|
3267
|
-
updatedAt:
|
|
3267
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
3268
3268
|
name: "updated_at";
|
|
3269
3269
|
tableName: "context_cache";
|
|
3270
3270
|
dataType: "string";
|
|
@@ -3281,7 +3281,7 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3281
3281
|
identity: undefined;
|
|
3282
3282
|
generated: undefined;
|
|
3283
3283
|
}, {}, {}>;
|
|
3284
|
-
conversationId:
|
|
3284
|
+
conversationId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3285
3285
|
name: "conversation_id";
|
|
3286
3286
|
tableName: "context_cache";
|
|
3287
3287
|
dataType: "string";
|
|
@@ -3300,7 +3300,7 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3300
3300
|
}, {}, {
|
|
3301
3301
|
length: 256;
|
|
3302
3302
|
}>;
|
|
3303
|
-
contextConfigId:
|
|
3303
|
+
contextConfigId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3304
3304
|
name: "context_config_id";
|
|
3305
3305
|
tableName: "context_cache";
|
|
3306
3306
|
dataType: "string";
|
|
@@ -3319,7 +3319,7 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3319
3319
|
}, {}, {
|
|
3320
3320
|
length: 256;
|
|
3321
3321
|
}>;
|
|
3322
|
-
contextVariableKey:
|
|
3322
|
+
contextVariableKey: drizzle_orm_pg_core1933.PgColumn<{
|
|
3323
3323
|
name: "context_variable_key";
|
|
3324
3324
|
tableName: "context_cache";
|
|
3325
3325
|
dataType: "string";
|
|
@@ -3338,13 +3338,13 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3338
3338
|
}, {}, {
|
|
3339
3339
|
length: 256;
|
|
3340
3340
|
}>;
|
|
3341
|
-
ref:
|
|
3341
|
+
ref: drizzle_orm_pg_core1933.PgColumn<{
|
|
3342
3342
|
name: "ref";
|
|
3343
3343
|
tableName: "context_cache";
|
|
3344
3344
|
dataType: "json";
|
|
3345
3345
|
columnType: "PgJsonb";
|
|
3346
3346
|
data: {
|
|
3347
|
-
type: "
|
|
3347
|
+
type: "commit" | "tag" | "branch";
|
|
3348
3348
|
name: string;
|
|
3349
3349
|
hash: string;
|
|
3350
3350
|
};
|
|
@@ -3360,12 +3360,12 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3360
3360
|
generated: undefined;
|
|
3361
3361
|
}, {}, {
|
|
3362
3362
|
$type: {
|
|
3363
|
-
type: "
|
|
3363
|
+
type: "commit" | "tag" | "branch";
|
|
3364
3364
|
name: string;
|
|
3365
3365
|
hash: string;
|
|
3366
3366
|
};
|
|
3367
3367
|
}>;
|
|
3368
|
-
value:
|
|
3368
|
+
value: drizzle_orm_pg_core1933.PgColumn<{
|
|
3369
3369
|
name: "value";
|
|
3370
3370
|
tableName: "context_cache";
|
|
3371
3371
|
dataType: "json";
|
|
@@ -3384,7 +3384,7 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3384
3384
|
}, {}, {
|
|
3385
3385
|
$type: unknown;
|
|
3386
3386
|
}>;
|
|
3387
|
-
requestHash:
|
|
3387
|
+
requestHash: drizzle_orm_pg_core1933.PgColumn<{
|
|
3388
3388
|
name: "request_hash";
|
|
3389
3389
|
tableName: "context_cache";
|
|
3390
3390
|
dataType: "string";
|
|
@@ -3403,7 +3403,7 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3403
3403
|
}, {}, {
|
|
3404
3404
|
length: 256;
|
|
3405
3405
|
}>;
|
|
3406
|
-
fetchedAt:
|
|
3406
|
+
fetchedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
3407
3407
|
name: "fetched_at";
|
|
3408
3408
|
tableName: "context_cache";
|
|
3409
3409
|
dataType: "string";
|
|
@@ -3420,7 +3420,7 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3420
3420
|
identity: undefined;
|
|
3421
3421
|
generated: undefined;
|
|
3422
3422
|
}, {}, {}>;
|
|
3423
|
-
fetchSource:
|
|
3423
|
+
fetchSource: drizzle_orm_pg_core1933.PgColumn<{
|
|
3424
3424
|
name: "fetch_source";
|
|
3425
3425
|
tableName: "context_cache";
|
|
3426
3426
|
dataType: "string";
|
|
@@ -3439,7 +3439,7 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3439
3439
|
}, {}, {
|
|
3440
3440
|
length: 256;
|
|
3441
3441
|
}>;
|
|
3442
|
-
projectId:
|
|
3442
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3443
3443
|
name: "project_id";
|
|
3444
3444
|
tableName: "context_cache";
|
|
3445
3445
|
dataType: "string";
|
|
@@ -3458,7 +3458,7 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3458
3458
|
}, {}, {
|
|
3459
3459
|
length: 256;
|
|
3460
3460
|
}>;
|
|
3461
|
-
tenantId:
|
|
3461
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3462
3462
|
name: "tenant_id";
|
|
3463
3463
|
tableName: "context_cache";
|
|
3464
3464
|
dataType: "string";
|
|
@@ -3477,7 +3477,7 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3477
3477
|
}, {}, {
|
|
3478
3478
|
length: 256;
|
|
3479
3479
|
}>;
|
|
3480
|
-
id:
|
|
3480
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
3481
3481
|
name: "id";
|
|
3482
3482
|
tableName: "context_cache";
|
|
3483
3483
|
dataType: "string";
|
|
@@ -3512,11 +3512,11 @@ declare const contextCache: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3512
3512
|
* datasetRunConfigId (optional: if created from a config),
|
|
3513
3513
|
* evaluationJobConfigId (optional: links to evaluation job created for this run), and timestamps
|
|
3514
3514
|
*/
|
|
3515
|
-
declare const datasetRun:
|
|
3515
|
+
declare const datasetRun: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
3516
3516
|
name: "dataset_run";
|
|
3517
3517
|
schema: undefined;
|
|
3518
3518
|
columns: {
|
|
3519
|
-
createdAt:
|
|
3519
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
3520
3520
|
name: "created_at";
|
|
3521
3521
|
tableName: "dataset_run";
|
|
3522
3522
|
dataType: "string";
|
|
@@ -3533,7 +3533,7 @@ declare const datasetRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3533
3533
|
identity: undefined;
|
|
3534
3534
|
generated: undefined;
|
|
3535
3535
|
}, {}, {}>;
|
|
3536
|
-
updatedAt:
|
|
3536
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
3537
3537
|
name: "updated_at";
|
|
3538
3538
|
tableName: "dataset_run";
|
|
3539
3539
|
dataType: "string";
|
|
@@ -3550,7 +3550,7 @@ declare const datasetRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3550
3550
|
identity: undefined;
|
|
3551
3551
|
generated: undefined;
|
|
3552
3552
|
}, {}, {}>;
|
|
3553
|
-
datasetId:
|
|
3553
|
+
datasetId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3554
3554
|
name: "dataset_id";
|
|
3555
3555
|
tableName: "dataset_run";
|
|
3556
3556
|
dataType: "string";
|
|
@@ -3567,7 +3567,7 @@ declare const datasetRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3567
3567
|
identity: undefined;
|
|
3568
3568
|
generated: undefined;
|
|
3569
3569
|
}, {}, {}>;
|
|
3570
|
-
datasetRunConfigId:
|
|
3570
|
+
datasetRunConfigId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3571
3571
|
name: "dataset_run_config_id";
|
|
3572
3572
|
tableName: "dataset_run";
|
|
3573
3573
|
dataType: "string";
|
|
@@ -3584,7 +3584,7 @@ declare const datasetRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3584
3584
|
identity: undefined;
|
|
3585
3585
|
generated: undefined;
|
|
3586
3586
|
}, {}, {}>;
|
|
3587
|
-
evaluationJobConfigId:
|
|
3587
|
+
evaluationJobConfigId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3588
3588
|
name: "evaluation_job_config_id";
|
|
3589
3589
|
tableName: "dataset_run";
|
|
3590
3590
|
dataType: "string";
|
|
@@ -3601,7 +3601,7 @@ declare const datasetRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3601
3601
|
identity: undefined;
|
|
3602
3602
|
generated: undefined;
|
|
3603
3603
|
}, {}, {}>;
|
|
3604
|
-
projectId:
|
|
3604
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3605
3605
|
name: "project_id";
|
|
3606
3606
|
tableName: "dataset_run";
|
|
3607
3607
|
dataType: "string";
|
|
@@ -3620,7 +3620,7 @@ declare const datasetRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3620
3620
|
}, {}, {
|
|
3621
3621
|
length: 256;
|
|
3622
3622
|
}>;
|
|
3623
|
-
tenantId:
|
|
3623
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3624
3624
|
name: "tenant_id";
|
|
3625
3625
|
tableName: "dataset_run";
|
|
3626
3626
|
dataType: "string";
|
|
@@ -3639,7 +3639,7 @@ declare const datasetRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3639
3639
|
}, {}, {
|
|
3640
3640
|
length: 256;
|
|
3641
3641
|
}>;
|
|
3642
|
-
id:
|
|
3642
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
3643
3643
|
name: "id";
|
|
3644
3644
|
tableName: "dataset_run";
|
|
3645
3645
|
dataType: "string";
|
|
@@ -3672,11 +3672,11 @@ declare const datasetRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3672
3672
|
* unique constraint on (datasetRunId, conversationId) ensures one conversation per datasetRun,
|
|
3673
3673
|
* and timestamps
|
|
3674
3674
|
*/
|
|
3675
|
-
declare const datasetRunConversationRelations:
|
|
3675
|
+
declare const datasetRunConversationRelations: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
3676
3676
|
name: "dataset_run_conversation_relations";
|
|
3677
3677
|
schema: undefined;
|
|
3678
3678
|
columns: {
|
|
3679
|
-
createdAt:
|
|
3679
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
3680
3680
|
name: "created_at";
|
|
3681
3681
|
tableName: "dataset_run_conversation_relations";
|
|
3682
3682
|
dataType: "string";
|
|
@@ -3693,7 +3693,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core439.PgTableWit
|
|
|
3693
3693
|
identity: undefined;
|
|
3694
3694
|
generated: undefined;
|
|
3695
3695
|
}, {}, {}>;
|
|
3696
|
-
updatedAt:
|
|
3696
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
3697
3697
|
name: "updated_at";
|
|
3698
3698
|
tableName: "dataset_run_conversation_relations";
|
|
3699
3699
|
dataType: "string";
|
|
@@ -3710,7 +3710,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core439.PgTableWit
|
|
|
3710
3710
|
identity: undefined;
|
|
3711
3711
|
generated: undefined;
|
|
3712
3712
|
}, {}, {}>;
|
|
3713
|
-
datasetRunId:
|
|
3713
|
+
datasetRunId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3714
3714
|
name: "dataset_run_id";
|
|
3715
3715
|
tableName: "dataset_run_conversation_relations";
|
|
3716
3716
|
dataType: "string";
|
|
@@ -3727,7 +3727,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core439.PgTableWit
|
|
|
3727
3727
|
identity: undefined;
|
|
3728
3728
|
generated: undefined;
|
|
3729
3729
|
}, {}, {}>;
|
|
3730
|
-
conversationId:
|
|
3730
|
+
conversationId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3731
3731
|
name: "conversation_id";
|
|
3732
3732
|
tableName: "dataset_run_conversation_relations";
|
|
3733
3733
|
dataType: "string";
|
|
@@ -3744,7 +3744,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core439.PgTableWit
|
|
|
3744
3744
|
identity: undefined;
|
|
3745
3745
|
generated: undefined;
|
|
3746
3746
|
}, {}, {}>;
|
|
3747
|
-
datasetItemId:
|
|
3747
|
+
datasetItemId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3748
3748
|
name: "dataset_item_id";
|
|
3749
3749
|
tableName: "dataset_run_conversation_relations";
|
|
3750
3750
|
dataType: "string";
|
|
@@ -3761,7 +3761,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core439.PgTableWit
|
|
|
3761
3761
|
identity: undefined;
|
|
3762
3762
|
generated: undefined;
|
|
3763
3763
|
}, {}, {}>;
|
|
3764
|
-
projectId:
|
|
3764
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3765
3765
|
name: "project_id";
|
|
3766
3766
|
tableName: "dataset_run_conversation_relations";
|
|
3767
3767
|
dataType: "string";
|
|
@@ -3780,7 +3780,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core439.PgTableWit
|
|
|
3780
3780
|
}, {}, {
|
|
3781
3781
|
length: 256;
|
|
3782
3782
|
}>;
|
|
3783
|
-
tenantId:
|
|
3783
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3784
3784
|
name: "tenant_id";
|
|
3785
3785
|
tableName: "dataset_run_conversation_relations";
|
|
3786
3786
|
dataType: "string";
|
|
@@ -3799,7 +3799,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core439.PgTableWit
|
|
|
3799
3799
|
}, {}, {
|
|
3800
3800
|
length: 256;
|
|
3801
3801
|
}>;
|
|
3802
|
-
id:
|
|
3802
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
3803
3803
|
name: "id";
|
|
3804
3804
|
tableName: "dataset_run_conversation_relations";
|
|
3805
3805
|
dataType: "string";
|
|
@@ -3832,11 +3832,11 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core439.PgTableWit
|
|
|
3832
3832
|
* evaluationRunConfigId (optional: if created from a run config),
|
|
3833
3833
|
* and timestamps
|
|
3834
3834
|
*/
|
|
3835
|
-
declare const evaluationRun:
|
|
3835
|
+
declare const evaluationRun: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
3836
3836
|
name: "evaluation_run";
|
|
3837
3837
|
schema: undefined;
|
|
3838
3838
|
columns: {
|
|
3839
|
-
createdAt:
|
|
3839
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
3840
3840
|
name: "created_at";
|
|
3841
3841
|
tableName: "evaluation_run";
|
|
3842
3842
|
dataType: "string";
|
|
@@ -3853,7 +3853,7 @@ declare const evaluationRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3853
3853
|
identity: undefined;
|
|
3854
3854
|
generated: undefined;
|
|
3855
3855
|
}, {}, {}>;
|
|
3856
|
-
updatedAt:
|
|
3856
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
3857
3857
|
name: "updated_at";
|
|
3858
3858
|
tableName: "evaluation_run";
|
|
3859
3859
|
dataType: "string";
|
|
@@ -3870,7 +3870,7 @@ declare const evaluationRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3870
3870
|
identity: undefined;
|
|
3871
3871
|
generated: undefined;
|
|
3872
3872
|
}, {}, {}>;
|
|
3873
|
-
evaluationJobConfigId:
|
|
3873
|
+
evaluationJobConfigId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3874
3874
|
name: "evaluation_job_config_id";
|
|
3875
3875
|
tableName: "evaluation_run";
|
|
3876
3876
|
dataType: "string";
|
|
@@ -3887,7 +3887,7 @@ declare const evaluationRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3887
3887
|
identity: undefined;
|
|
3888
3888
|
generated: undefined;
|
|
3889
3889
|
}, {}, {}>;
|
|
3890
|
-
evaluationRunConfigId:
|
|
3890
|
+
evaluationRunConfigId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3891
3891
|
name: "evaluation_run_config_id";
|
|
3892
3892
|
tableName: "evaluation_run";
|
|
3893
3893
|
dataType: "string";
|
|
@@ -3904,7 +3904,7 @@ declare const evaluationRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3904
3904
|
identity: undefined;
|
|
3905
3905
|
generated: undefined;
|
|
3906
3906
|
}, {}, {}>;
|
|
3907
|
-
projectId:
|
|
3907
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3908
3908
|
name: "project_id";
|
|
3909
3909
|
tableName: "evaluation_run";
|
|
3910
3910
|
dataType: "string";
|
|
@@ -3923,7 +3923,7 @@ declare const evaluationRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3923
3923
|
}, {}, {
|
|
3924
3924
|
length: 256;
|
|
3925
3925
|
}>;
|
|
3926
|
-
tenantId:
|
|
3926
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
3927
3927
|
name: "tenant_id";
|
|
3928
3928
|
tableName: "evaluation_run";
|
|
3929
3929
|
dataType: "string";
|
|
@@ -3942,7 +3942,7 @@ declare const evaluationRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3942
3942
|
}, {}, {
|
|
3943
3943
|
length: 256;
|
|
3944
3944
|
}>;
|
|
3945
|
-
id:
|
|
3945
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
3946
3946
|
name: "id";
|
|
3947
3947
|
tableName: "evaluation_run";
|
|
3948
3948
|
dataType: "string";
|
|
@@ -3973,11 +3973,11 @@ declare const evaluationRun: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3973
3973
|
* evaluationRunId (optional, links to evaluationRun),
|
|
3974
3974
|
* output (evaluation result as MessageContent), and timestamps
|
|
3975
3975
|
*/
|
|
3976
|
-
declare const evaluationResult:
|
|
3976
|
+
declare const evaluationResult: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
3977
3977
|
name: "evaluation_result";
|
|
3978
3978
|
schema: undefined;
|
|
3979
3979
|
columns: {
|
|
3980
|
-
createdAt:
|
|
3980
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
3981
3981
|
name: "created_at";
|
|
3982
3982
|
tableName: "evaluation_result";
|
|
3983
3983
|
dataType: "string";
|
|
@@ -3994,7 +3994,7 @@ declare const evaluationResult: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
3994
3994
|
identity: undefined;
|
|
3995
3995
|
generated: undefined;
|
|
3996
3996
|
}, {}, {}>;
|
|
3997
|
-
updatedAt:
|
|
3997
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
3998
3998
|
name: "updated_at";
|
|
3999
3999
|
tableName: "evaluation_result";
|
|
4000
4000
|
dataType: "string";
|
|
@@ -4011,7 +4011,7 @@ declare const evaluationResult: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4011
4011
|
identity: undefined;
|
|
4012
4012
|
generated: undefined;
|
|
4013
4013
|
}, {}, {}>;
|
|
4014
|
-
conversationId:
|
|
4014
|
+
conversationId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4015
4015
|
name: "conversation_id";
|
|
4016
4016
|
tableName: "evaluation_result";
|
|
4017
4017
|
dataType: "string";
|
|
@@ -4028,7 +4028,7 @@ declare const evaluationResult: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4028
4028
|
identity: undefined;
|
|
4029
4029
|
generated: undefined;
|
|
4030
4030
|
}, {}, {}>;
|
|
4031
|
-
evaluatorId:
|
|
4031
|
+
evaluatorId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4032
4032
|
name: "evaluator_id";
|
|
4033
4033
|
tableName: "evaluation_result";
|
|
4034
4034
|
dataType: "string";
|
|
@@ -4045,7 +4045,7 @@ declare const evaluationResult: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4045
4045
|
identity: undefined;
|
|
4046
4046
|
generated: undefined;
|
|
4047
4047
|
}, {}, {}>;
|
|
4048
|
-
evaluationRunId:
|
|
4048
|
+
evaluationRunId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4049
4049
|
name: "evaluation_run_id";
|
|
4050
4050
|
tableName: "evaluation_result";
|
|
4051
4051
|
dataType: "string";
|
|
@@ -4062,7 +4062,7 @@ declare const evaluationResult: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4062
4062
|
identity: undefined;
|
|
4063
4063
|
generated: undefined;
|
|
4064
4064
|
}, {}, {}>;
|
|
4065
|
-
output:
|
|
4065
|
+
output: drizzle_orm_pg_core1933.PgColumn<{
|
|
4066
4066
|
name: "output";
|
|
4067
4067
|
tableName: "evaluation_result";
|
|
4068
4068
|
dataType: "json";
|
|
@@ -4081,7 +4081,7 @@ declare const evaluationResult: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4081
4081
|
}, {}, {
|
|
4082
4082
|
$type: MessageContent;
|
|
4083
4083
|
}>;
|
|
4084
|
-
projectId:
|
|
4084
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4085
4085
|
name: "project_id";
|
|
4086
4086
|
tableName: "evaluation_result";
|
|
4087
4087
|
dataType: "string";
|
|
@@ -4100,7 +4100,7 @@ declare const evaluationResult: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4100
4100
|
}, {}, {
|
|
4101
4101
|
length: 256;
|
|
4102
4102
|
}>;
|
|
4103
|
-
tenantId:
|
|
4103
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4104
4104
|
name: "tenant_id";
|
|
4105
4105
|
tableName: "evaluation_result";
|
|
4106
4106
|
dataType: "string";
|
|
@@ -4119,7 +4119,7 @@ declare const evaluationResult: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4119
4119
|
}, {}, {
|
|
4120
4120
|
length: 256;
|
|
4121
4121
|
}>;
|
|
4122
|
-
id:
|
|
4122
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
4123
4123
|
name: "id";
|
|
4124
4124
|
tableName: "evaluation_result";
|
|
4125
4125
|
dataType: "string";
|
|
@@ -4141,11 +4141,11 @@ declare const evaluationResult: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4141
4141
|
};
|
|
4142
4142
|
dialect: "pg";
|
|
4143
4143
|
}>;
|
|
4144
|
-
declare const userProfile:
|
|
4144
|
+
declare const userProfile: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
4145
4145
|
name: "user_profile";
|
|
4146
4146
|
schema: undefined;
|
|
4147
4147
|
columns: {
|
|
4148
|
-
createdAt:
|
|
4148
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4149
4149
|
name: "created_at";
|
|
4150
4150
|
tableName: "user_profile";
|
|
4151
4151
|
dataType: "string";
|
|
@@ -4162,7 +4162,7 @@ declare const userProfile: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4162
4162
|
identity: undefined;
|
|
4163
4163
|
generated: undefined;
|
|
4164
4164
|
}, {}, {}>;
|
|
4165
|
-
updatedAt:
|
|
4165
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4166
4166
|
name: "updated_at";
|
|
4167
4167
|
tableName: "user_profile";
|
|
4168
4168
|
dataType: "string";
|
|
@@ -4179,7 +4179,7 @@ declare const userProfile: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4179
4179
|
identity: undefined;
|
|
4180
4180
|
generated: undefined;
|
|
4181
4181
|
}, {}, {}>;
|
|
4182
|
-
id:
|
|
4182
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
4183
4183
|
name: "id";
|
|
4184
4184
|
tableName: "user_profile";
|
|
4185
4185
|
dataType: "string";
|
|
@@ -4196,7 +4196,7 @@ declare const userProfile: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4196
4196
|
identity: undefined;
|
|
4197
4197
|
generated: undefined;
|
|
4198
4198
|
}, {}, {}>;
|
|
4199
|
-
userId:
|
|
4199
|
+
userId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4200
4200
|
name: "user_id";
|
|
4201
4201
|
tableName: "user_profile";
|
|
4202
4202
|
dataType: "string";
|
|
@@ -4213,7 +4213,7 @@ declare const userProfile: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4213
4213
|
identity: undefined;
|
|
4214
4214
|
generated: undefined;
|
|
4215
4215
|
}, {}, {}>;
|
|
4216
|
-
timezone:
|
|
4216
|
+
timezone: drizzle_orm_pg_core1933.PgColumn<{
|
|
4217
4217
|
name: "timezone";
|
|
4218
4218
|
tableName: "user_profile";
|
|
4219
4219
|
dataType: "string";
|
|
@@ -4230,7 +4230,7 @@ declare const userProfile: drizzle_orm_pg_core439.PgTableWithColumns<{
|
|
|
4230
4230
|
identity: undefined;
|
|
4231
4231
|
generated: undefined;
|
|
4232
4232
|
}, {}, {}>;
|
|
4233
|
-
attributes:
|
|
4233
|
+
attributes: drizzle_orm_pg_core1933.PgColumn<{
|
|
4234
4234
|
name: "attributes";
|
|
4235
4235
|
tableName: "user_profile";
|
|
4236
4236
|
dataType: "json";
|
|
@@ -4282,11 +4282,11 @@ declare const ledgerArtifactsRelations: drizzle_orm111.Relations<"ledger_artifac
|
|
|
4282
4282
|
* One tenant can have multiple installations (e.g., multiple orgs).
|
|
4283
4283
|
* The installation_id is the GitHub-assigned ID, unique across all GitHub.
|
|
4284
4284
|
*/
|
|
4285
|
-
declare const workAppGitHubInstallations:
|
|
4285
|
+
declare const workAppGitHubInstallations: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
4286
4286
|
name: "work_app_github_installations";
|
|
4287
4287
|
schema: undefined;
|
|
4288
4288
|
columns: {
|
|
4289
|
-
createdAt:
|
|
4289
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4290
4290
|
name: "created_at";
|
|
4291
4291
|
tableName: "work_app_github_installations";
|
|
4292
4292
|
dataType: "string";
|
|
@@ -4303,7 +4303,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core439.PgTableWithColu
|
|
|
4303
4303
|
identity: undefined;
|
|
4304
4304
|
generated: undefined;
|
|
4305
4305
|
}, {}, {}>;
|
|
4306
|
-
updatedAt:
|
|
4306
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4307
4307
|
name: "updated_at";
|
|
4308
4308
|
tableName: "work_app_github_installations";
|
|
4309
4309
|
dataType: "string";
|
|
@@ -4320,7 +4320,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core439.PgTableWithColu
|
|
|
4320
4320
|
identity: undefined;
|
|
4321
4321
|
generated: undefined;
|
|
4322
4322
|
}, {}, {}>;
|
|
4323
|
-
installationId:
|
|
4323
|
+
installationId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4324
4324
|
name: "installation_id";
|
|
4325
4325
|
tableName: "work_app_github_installations";
|
|
4326
4326
|
dataType: "string";
|
|
@@ -4337,7 +4337,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core439.PgTableWithColu
|
|
|
4337
4337
|
identity: undefined;
|
|
4338
4338
|
generated: undefined;
|
|
4339
4339
|
}, {}, {}>;
|
|
4340
|
-
accountLogin:
|
|
4340
|
+
accountLogin: drizzle_orm_pg_core1933.PgColumn<{
|
|
4341
4341
|
name: "account_login";
|
|
4342
4342
|
tableName: "work_app_github_installations";
|
|
4343
4343
|
dataType: "string";
|
|
@@ -4356,7 +4356,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core439.PgTableWithColu
|
|
|
4356
4356
|
}, {}, {
|
|
4357
4357
|
length: 256;
|
|
4358
4358
|
}>;
|
|
4359
|
-
accountId:
|
|
4359
|
+
accountId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4360
4360
|
name: "account_id";
|
|
4361
4361
|
tableName: "work_app_github_installations";
|
|
4362
4362
|
dataType: "string";
|
|
@@ -4373,12 +4373,12 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core439.PgTableWithColu
|
|
|
4373
4373
|
identity: undefined;
|
|
4374
4374
|
generated: undefined;
|
|
4375
4375
|
}, {}, {}>;
|
|
4376
|
-
accountType:
|
|
4376
|
+
accountType: drizzle_orm_pg_core1933.PgColumn<{
|
|
4377
4377
|
name: "account_type";
|
|
4378
4378
|
tableName: "work_app_github_installations";
|
|
4379
4379
|
dataType: "string";
|
|
4380
4380
|
columnType: "PgVarchar";
|
|
4381
|
-
data: "
|
|
4381
|
+
data: "Organization" | "User";
|
|
4382
4382
|
driverParam: string;
|
|
4383
4383
|
notNull: true;
|
|
4384
4384
|
hasDefault: false;
|
|
@@ -4391,9 +4391,9 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core439.PgTableWithColu
|
|
|
4391
4391
|
generated: undefined;
|
|
4392
4392
|
}, {}, {
|
|
4393
4393
|
length: 20;
|
|
4394
|
-
$type: "
|
|
4394
|
+
$type: "Organization" | "User";
|
|
4395
4395
|
}>;
|
|
4396
|
-
status:
|
|
4396
|
+
status: drizzle_orm_pg_core1933.PgColumn<{
|
|
4397
4397
|
name: "status";
|
|
4398
4398
|
tableName: "work_app_github_installations";
|
|
4399
4399
|
dataType: "string";
|
|
@@ -4413,7 +4413,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core439.PgTableWithColu
|
|
|
4413
4413
|
length: 20;
|
|
4414
4414
|
$type: "pending" | "active" | "suspended" | "disconnected";
|
|
4415
4415
|
}>;
|
|
4416
|
-
tenantId:
|
|
4416
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4417
4417
|
name: "tenant_id";
|
|
4418
4418
|
tableName: "work_app_github_installations";
|
|
4419
4419
|
dataType: "string";
|
|
@@ -4432,7 +4432,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core439.PgTableWithColu
|
|
|
4432
4432
|
}, {}, {
|
|
4433
4433
|
length: 256;
|
|
4434
4434
|
}>;
|
|
4435
|
-
id:
|
|
4435
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
4436
4436
|
name: "id";
|
|
4437
4437
|
tableName: "work_app_github_installations";
|
|
4438
4438
|
dataType: "string";
|
|
@@ -4459,11 +4459,11 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core439.PgTableWithColu
|
|
|
4459
4459
|
* These are synced from GitHub when the app is installed or updated.
|
|
4460
4460
|
* The repository_id is the GitHub-assigned ID, unique across all GitHub.
|
|
4461
4461
|
*/
|
|
4462
|
-
declare const workAppGitHubRepositories:
|
|
4462
|
+
declare const workAppGitHubRepositories: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
4463
4463
|
name: "work_app_github_repositories";
|
|
4464
4464
|
schema: undefined;
|
|
4465
4465
|
columns: {
|
|
4466
|
-
createdAt:
|
|
4466
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4467
4467
|
name: "created_at";
|
|
4468
4468
|
tableName: "work_app_github_repositories";
|
|
4469
4469
|
dataType: "string";
|
|
@@ -4480,7 +4480,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core439.PgTableWithColum
|
|
|
4480
4480
|
identity: undefined;
|
|
4481
4481
|
generated: undefined;
|
|
4482
4482
|
}, {}, {}>;
|
|
4483
|
-
updatedAt:
|
|
4483
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4484
4484
|
name: "updated_at";
|
|
4485
4485
|
tableName: "work_app_github_repositories";
|
|
4486
4486
|
dataType: "string";
|
|
@@ -4497,7 +4497,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core439.PgTableWithColum
|
|
|
4497
4497
|
identity: undefined;
|
|
4498
4498
|
generated: undefined;
|
|
4499
4499
|
}, {}, {}>;
|
|
4500
|
-
id:
|
|
4500
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
4501
4501
|
name: "id";
|
|
4502
4502
|
tableName: "work_app_github_repositories";
|
|
4503
4503
|
dataType: "string";
|
|
@@ -4516,7 +4516,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core439.PgTableWithColum
|
|
|
4516
4516
|
}, {}, {
|
|
4517
4517
|
length: 256;
|
|
4518
4518
|
}>;
|
|
4519
|
-
installationDbId:
|
|
4519
|
+
installationDbId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4520
4520
|
name: "installation_db_id";
|
|
4521
4521
|
tableName: "work_app_github_repositories";
|
|
4522
4522
|
dataType: "string";
|
|
@@ -4535,7 +4535,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core439.PgTableWithColum
|
|
|
4535
4535
|
}, {}, {
|
|
4536
4536
|
length: 256;
|
|
4537
4537
|
}>;
|
|
4538
|
-
repositoryId:
|
|
4538
|
+
repositoryId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4539
4539
|
name: "repository_id";
|
|
4540
4540
|
tableName: "work_app_github_repositories";
|
|
4541
4541
|
dataType: "string";
|
|
@@ -4552,7 +4552,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core439.PgTableWithColum
|
|
|
4552
4552
|
identity: undefined;
|
|
4553
4553
|
generated: undefined;
|
|
4554
4554
|
}, {}, {}>;
|
|
4555
|
-
repositoryName:
|
|
4555
|
+
repositoryName: drizzle_orm_pg_core1933.PgColumn<{
|
|
4556
4556
|
name: "repository_name";
|
|
4557
4557
|
tableName: "work_app_github_repositories";
|
|
4558
4558
|
dataType: "string";
|
|
@@ -4571,7 +4571,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core439.PgTableWithColum
|
|
|
4571
4571
|
}, {}, {
|
|
4572
4572
|
length: 256;
|
|
4573
4573
|
}>;
|
|
4574
|
-
repositoryFullName:
|
|
4574
|
+
repositoryFullName: drizzle_orm_pg_core1933.PgColumn<{
|
|
4575
4575
|
name: "repository_full_name";
|
|
4576
4576
|
tableName: "work_app_github_repositories";
|
|
4577
4577
|
dataType: "string";
|
|
@@ -4590,7 +4590,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core439.PgTableWithColum
|
|
|
4590
4590
|
}, {}, {
|
|
4591
4591
|
length: 512;
|
|
4592
4592
|
}>;
|
|
4593
|
-
private:
|
|
4593
|
+
private: drizzle_orm_pg_core1933.PgColumn<{
|
|
4594
4594
|
name: "private";
|
|
4595
4595
|
tableName: "work_app_github_repositories";
|
|
4596
4596
|
dataType: "boolean";
|
|
@@ -4618,11 +4618,11 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core439.PgTableWithColum
|
|
|
4618
4618
|
* (cross-schema, no FK constraint for project). tenant_id is included because
|
|
4619
4619
|
* project IDs are only unique within a tenant.
|
|
4620
4620
|
*/
|
|
4621
|
-
declare const workAppGitHubProjectRepositoryAccess:
|
|
4621
|
+
declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
4622
4622
|
name: "work_app_github_project_repository_access";
|
|
4623
4623
|
schema: undefined;
|
|
4624
4624
|
columns: {
|
|
4625
|
-
createdAt:
|
|
4625
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4626
4626
|
name: "created_at";
|
|
4627
4627
|
tableName: "work_app_github_project_repository_access";
|
|
4628
4628
|
dataType: "string";
|
|
@@ -4639,7 +4639,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4639
4639
|
identity: undefined;
|
|
4640
4640
|
generated: undefined;
|
|
4641
4641
|
}, {}, {}>;
|
|
4642
|
-
updatedAt:
|
|
4642
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4643
4643
|
name: "updated_at";
|
|
4644
4644
|
tableName: "work_app_github_project_repository_access";
|
|
4645
4645
|
dataType: "string";
|
|
@@ -4656,7 +4656,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4656
4656
|
identity: undefined;
|
|
4657
4657
|
generated: undefined;
|
|
4658
4658
|
}, {}, {}>;
|
|
4659
|
-
repositoryDbId:
|
|
4659
|
+
repositoryDbId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4660
4660
|
name: "repository_db_id";
|
|
4661
4661
|
tableName: "work_app_github_project_repository_access";
|
|
4662
4662
|
dataType: "string";
|
|
@@ -4675,7 +4675,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4675
4675
|
}, {}, {
|
|
4676
4676
|
length: 256;
|
|
4677
4677
|
}>;
|
|
4678
|
-
projectId:
|
|
4678
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4679
4679
|
name: "project_id";
|
|
4680
4680
|
tableName: "work_app_github_project_repository_access";
|
|
4681
4681
|
dataType: "string";
|
|
@@ -4694,7 +4694,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4694
4694
|
}, {}, {
|
|
4695
4695
|
length: 256;
|
|
4696
4696
|
}>;
|
|
4697
|
-
tenantId:
|
|
4697
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4698
4698
|
name: "tenant_id";
|
|
4699
4699
|
tableName: "work_app_github_project_repository_access";
|
|
4700
4700
|
dataType: "string";
|
|
@@ -4713,7 +4713,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4713
4713
|
}, {}, {
|
|
4714
4714
|
length: 256;
|
|
4715
4715
|
}>;
|
|
4716
|
-
id:
|
|
4716
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
4717
4717
|
name: "id";
|
|
4718
4718
|
tableName: "work_app_github_project_repository_access";
|
|
4719
4719
|
dataType: "string";
|
|
@@ -4742,11 +4742,11 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4742
4742
|
* (cross-schema, no FK constraint). These are denormalized here so all GitHub access
|
|
4743
4743
|
* info can be queried from PostgreSQL alone.
|
|
4744
4744
|
*/
|
|
4745
|
-
declare const workAppGitHubMcpToolRepositoryAccess:
|
|
4745
|
+
declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
4746
4746
|
name: "work_app_github_mcp_tool_repository_access";
|
|
4747
4747
|
schema: undefined;
|
|
4748
4748
|
columns: {
|
|
4749
|
-
createdAt:
|
|
4749
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4750
4750
|
name: "created_at";
|
|
4751
4751
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4752
4752
|
dataType: "string";
|
|
@@ -4763,7 +4763,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4763
4763
|
identity: undefined;
|
|
4764
4764
|
generated: undefined;
|
|
4765
4765
|
}, {}, {}>;
|
|
4766
|
-
updatedAt:
|
|
4766
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4767
4767
|
name: "updated_at";
|
|
4768
4768
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4769
4769
|
dataType: "string";
|
|
@@ -4780,7 +4780,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4780
4780
|
identity: undefined;
|
|
4781
4781
|
generated: undefined;
|
|
4782
4782
|
}, {}, {}>;
|
|
4783
|
-
toolId:
|
|
4783
|
+
toolId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4784
4784
|
name: "tool_id";
|
|
4785
4785
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4786
4786
|
dataType: "string";
|
|
@@ -4799,7 +4799,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4799
4799
|
}, {}, {
|
|
4800
4800
|
length: 256;
|
|
4801
4801
|
}>;
|
|
4802
|
-
repositoryDbId:
|
|
4802
|
+
repositoryDbId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4803
4803
|
name: "repository_db_id";
|
|
4804
4804
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4805
4805
|
dataType: "string";
|
|
@@ -4818,7 +4818,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4818
4818
|
}, {}, {
|
|
4819
4819
|
length: 256;
|
|
4820
4820
|
}>;
|
|
4821
|
-
projectId:
|
|
4821
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4822
4822
|
name: "project_id";
|
|
4823
4823
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4824
4824
|
dataType: "string";
|
|
@@ -4837,7 +4837,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4837
4837
|
}, {}, {
|
|
4838
4838
|
length: 256;
|
|
4839
4839
|
}>;
|
|
4840
|
-
tenantId:
|
|
4840
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4841
4841
|
name: "tenant_id";
|
|
4842
4842
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4843
4843
|
dataType: "string";
|
|
@@ -4856,7 +4856,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4856
4856
|
}, {}, {
|
|
4857
4857
|
length: 256;
|
|
4858
4858
|
}>;
|
|
4859
|
-
id:
|
|
4859
|
+
id: drizzle_orm_pg_core1933.PgColumn<{
|
|
4860
4860
|
name: "id";
|
|
4861
4861
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
4862
4862
|
dataType: "string";
|
|
@@ -4884,11 +4884,11 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core439.PgTab
|
|
|
4884
4884
|
* - 'selected': Project only has access to repositories listed in work_app_github_project_repository_access
|
|
4885
4885
|
* If no row exists for a project, defaults to 'selected' (fail-safe: no access unless explicitly granted).
|
|
4886
4886
|
*/
|
|
4887
|
-
declare const workAppGitHubProjectAccessMode:
|
|
4887
|
+
declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
4888
4888
|
name: "work_app_github_project_access_mode";
|
|
4889
4889
|
schema: undefined;
|
|
4890
4890
|
columns: {
|
|
4891
|
-
createdAt:
|
|
4891
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4892
4892
|
name: "created_at";
|
|
4893
4893
|
tableName: "work_app_github_project_access_mode";
|
|
4894
4894
|
dataType: "string";
|
|
@@ -4905,7 +4905,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core439.PgTableWith
|
|
|
4905
4905
|
identity: undefined;
|
|
4906
4906
|
generated: undefined;
|
|
4907
4907
|
}, {}, {}>;
|
|
4908
|
-
updatedAt:
|
|
4908
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4909
4909
|
name: "updated_at";
|
|
4910
4910
|
tableName: "work_app_github_project_access_mode";
|
|
4911
4911
|
dataType: "string";
|
|
@@ -4922,7 +4922,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core439.PgTableWith
|
|
|
4922
4922
|
identity: undefined;
|
|
4923
4923
|
generated: undefined;
|
|
4924
4924
|
}, {}, {}>;
|
|
4925
|
-
tenantId:
|
|
4925
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4926
4926
|
name: "tenant_id";
|
|
4927
4927
|
tableName: "work_app_github_project_access_mode";
|
|
4928
4928
|
dataType: "string";
|
|
@@ -4941,7 +4941,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core439.PgTableWith
|
|
|
4941
4941
|
}, {}, {
|
|
4942
4942
|
length: 256;
|
|
4943
4943
|
}>;
|
|
4944
|
-
projectId:
|
|
4944
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
4945
4945
|
name: "project_id";
|
|
4946
4946
|
tableName: "work_app_github_project_access_mode";
|
|
4947
4947
|
dataType: "string";
|
|
@@ -4960,7 +4960,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core439.PgTableWith
|
|
|
4960
4960
|
}, {}, {
|
|
4961
4961
|
length: 256;
|
|
4962
4962
|
}>;
|
|
4963
|
-
mode:
|
|
4963
|
+
mode: drizzle_orm_pg_core1933.PgColumn<{
|
|
4964
4964
|
name: "mode";
|
|
4965
4965
|
tableName: "work_app_github_project_access_mode";
|
|
4966
4966
|
dataType: "string";
|
|
@@ -4989,11 +4989,11 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core439.PgTableWith
|
|
|
4989
4989
|
* - 'selected': Tool only has access to repositories listed in work_app_github_mcp_tool_repository_access
|
|
4990
4990
|
* If no row exists for a tool, defaults to 'selected' (fail-safe: no access unless explicitly granted).
|
|
4991
4991
|
*/
|
|
4992
|
-
declare const workAppGitHubMcpToolAccessMode:
|
|
4992
|
+
declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
4993
4993
|
name: "work_app_github_mcp_tool_access_mode";
|
|
4994
4994
|
schema: undefined;
|
|
4995
4995
|
columns: {
|
|
4996
|
-
createdAt:
|
|
4996
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
4997
4997
|
name: "created_at";
|
|
4998
4998
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
4999
4999
|
dataType: "string";
|
|
@@ -5010,7 +5010,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core439.PgTableWith
|
|
|
5010
5010
|
identity: undefined;
|
|
5011
5011
|
generated: undefined;
|
|
5012
5012
|
}, {}, {}>;
|
|
5013
|
-
updatedAt:
|
|
5013
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
5014
5014
|
name: "updated_at";
|
|
5015
5015
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
5016
5016
|
dataType: "string";
|
|
@@ -5027,7 +5027,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core439.PgTableWith
|
|
|
5027
5027
|
identity: undefined;
|
|
5028
5028
|
generated: undefined;
|
|
5029
5029
|
}, {}, {}>;
|
|
5030
|
-
toolId:
|
|
5030
|
+
toolId: drizzle_orm_pg_core1933.PgColumn<{
|
|
5031
5031
|
name: "tool_id";
|
|
5032
5032
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
5033
5033
|
dataType: "string";
|
|
@@ -5046,7 +5046,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core439.PgTableWith
|
|
|
5046
5046
|
}, {}, {
|
|
5047
5047
|
length: 256;
|
|
5048
5048
|
}>;
|
|
5049
|
-
tenantId:
|
|
5049
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
5050
5050
|
name: "tenant_id";
|
|
5051
5051
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
5052
5052
|
dataType: "string";
|
|
@@ -5065,7 +5065,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core439.PgTableWith
|
|
|
5065
5065
|
}, {}, {
|
|
5066
5066
|
length: 256;
|
|
5067
5067
|
}>;
|
|
5068
|
-
projectId:
|
|
5068
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
5069
5069
|
name: "project_id";
|
|
5070
5070
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
5071
5071
|
dataType: "string";
|
|
@@ -5084,7 +5084,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core439.PgTableWith
|
|
|
5084
5084
|
}, {}, {
|
|
5085
5085
|
length: 256;
|
|
5086
5086
|
}>;
|
|
5087
|
-
mode:
|
|
5087
|
+
mode: drizzle_orm_pg_core1933.PgColumn<{
|
|
5088
5088
|
name: "mode";
|
|
5089
5089
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
5090
5090
|
dataType: "string";
|
|
@@ -5121,11 +5121,11 @@ declare const workAppGitHubProjectRepositoryAccessRelations: drizzle_orm111.Rela
|
|
|
5121
5121
|
declare const workAppGitHubMcpToolRepositoryAccessRelations: drizzle_orm111.Relations<"work_app_github_mcp_tool_repository_access", {
|
|
5122
5122
|
repository: drizzle_orm111.One<"work_app_github_repositories", true>;
|
|
5123
5123
|
}>;
|
|
5124
|
-
declare const workAppSlackMcpToolAccessConfig:
|
|
5124
|
+
declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core1933.PgTableWithColumns<{
|
|
5125
5125
|
name: "work_app_slack_mcp_tool_access_config";
|
|
5126
5126
|
schema: undefined;
|
|
5127
5127
|
columns: {
|
|
5128
|
-
createdAt:
|
|
5128
|
+
createdAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
5129
5129
|
name: "created_at";
|
|
5130
5130
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5131
5131
|
dataType: "string";
|
|
@@ -5142,7 +5142,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core439.PgTableWit
|
|
|
5142
5142
|
identity: undefined;
|
|
5143
5143
|
generated: undefined;
|
|
5144
5144
|
}, {}, {}>;
|
|
5145
|
-
updatedAt:
|
|
5145
|
+
updatedAt: drizzle_orm_pg_core1933.PgColumn<{
|
|
5146
5146
|
name: "updated_at";
|
|
5147
5147
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5148
5148
|
dataType: "string";
|
|
@@ -5159,7 +5159,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core439.PgTableWit
|
|
|
5159
5159
|
identity: undefined;
|
|
5160
5160
|
generated: undefined;
|
|
5161
5161
|
}, {}, {}>;
|
|
5162
|
-
toolId:
|
|
5162
|
+
toolId: drizzle_orm_pg_core1933.PgColumn<{
|
|
5163
5163
|
name: "tool_id";
|
|
5164
5164
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5165
5165
|
dataType: "string";
|
|
@@ -5178,7 +5178,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core439.PgTableWit
|
|
|
5178
5178
|
}, {}, {
|
|
5179
5179
|
length: 256;
|
|
5180
5180
|
}>;
|
|
5181
|
-
tenantId:
|
|
5181
|
+
tenantId: drizzle_orm_pg_core1933.PgColumn<{
|
|
5182
5182
|
name: "tenant_id";
|
|
5183
5183
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5184
5184
|
dataType: "string";
|
|
@@ -5197,7 +5197,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core439.PgTableWit
|
|
|
5197
5197
|
}, {}, {
|
|
5198
5198
|
length: 256;
|
|
5199
5199
|
}>;
|
|
5200
|
-
projectId:
|
|
5200
|
+
projectId: drizzle_orm_pg_core1933.PgColumn<{
|
|
5201
5201
|
name: "project_id";
|
|
5202
5202
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5203
5203
|
dataType: "string";
|
|
@@ -5216,7 +5216,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core439.PgTableWit
|
|
|
5216
5216
|
}, {}, {
|
|
5217
5217
|
length: 256;
|
|
5218
5218
|
}>;
|
|
5219
|
-
channelAccessMode:
|
|
5219
|
+
channelAccessMode: drizzle_orm_pg_core1933.PgColumn<{
|
|
5220
5220
|
name: "channel_access_mode";
|
|
5221
5221
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5222
5222
|
dataType: "string";
|
|
@@ -5236,7 +5236,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core439.PgTableWit
|
|
|
5236
5236
|
length: 20;
|
|
5237
5237
|
$type: "all" | "selected";
|
|
5238
5238
|
}>;
|
|
5239
|
-
dmEnabled:
|
|
5239
|
+
dmEnabled: drizzle_orm_pg_core1933.PgColumn<{
|
|
5240
5240
|
name: "dm_enabled";
|
|
5241
5241
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5242
5242
|
dataType: "boolean";
|
|
@@ -5253,7 +5253,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core439.PgTableWit
|
|
|
5253
5253
|
identity: undefined;
|
|
5254
5254
|
generated: undefined;
|
|
5255
5255
|
}, {}, {}>;
|
|
5256
|
-
channelIds:
|
|
5256
|
+
channelIds: drizzle_orm_pg_core1933.PgColumn<{
|
|
5257
5257
|
name: "channel_ids";
|
|
5258
5258
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5259
5259
|
dataType: "json";
|